2025-01-31 18:56:37 +00:00
|
|
|
#-------------------------------------------
|
|
|
|
|
# @CCOSTAN
|
|
|
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
Standardizing on Headers for all YAML files.
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations.
- Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages.
- Added relevant links and issue references where applicable to enhance user guidance and support.
2025-11-29 13:17:00 -05:00
|
|
|
# Glances - ProxMox/server stats via Glances integration.
|
2025-01-31 18:56:37 +00:00
|
|
|
#-------------------------------------------
|
Standardizing on Headers for all YAML files.
- Updated comments in various YAML configuration files to provide clearer descriptions of functionalities and integrations.
- Improved documentation for alarm, alexa_media_player, backups, blink, cbyge, climate, finance, fridge, garadget, glances, hass_agent_homepc, holiday, ios, landscape_lighting, lightning, logger, medicine, nfc_tags, noonhome, office_motion, phynplus, powerwall, printer, processmonitor, proxmox, rachio, rheem_econet, roku, sleepiq, space, speedtest, stats, superbowl, vacuum, wireless, and youtube packages.
- Added relevant links and issue references where applicable to enhance user guidance and support.
2025-11-29 13:17:00 -05:00
|
|
|
######################################################################
|
|
|
|
|
## CPU, memory, and disk sensors from Glances API.
|
|
|
|
|
######################################################################
|
2025-01-31 18:56:37 +00:00
|
|
|
sensor:
|
|
|
|
|
- platform: template
|
|
|
|
|
sensors:
|
|
|
|
|
proxmox_garage_avg_temp:
|
|
|
|
|
friendly_name: "Proxmox Garage Average Temperature"
|
|
|
|
|
unit_of_measurement: "°F"
|
|
|
|
|
value_template: >-
|
|
|
|
|
{{ (
|
|
|
|
|
(states('sensor.proxmox1_package_id_0_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox1_pch_skylake_1_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox1_core_0_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox1_core_1_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox1_core_2_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox1_core_3_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox1_acpitz_1_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox1_acpitz_2_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_package_id_0_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_pch_skylake_1_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_core_0_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_core_1_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_core_2_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_core_3_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_acpitz_1_temperature') | float(0) +
|
|
|
|
|
states('sensor.proxmox2_acpitz_2_temperature') | float(0)
|
|
|
|
|
) / 16 ) | round(1) }}
|
|
|
|
|
|
|
|
|
|
automation:
|
|
|
|
|
- alias: "Garage Proxmox High Temperature Warning"
|
|
|
|
|
id: proxmox-garage-high-temp-warning-automation
|
|
|
|
|
trigger:
|
|
|
|
|
- platform: numeric_state
|
|
|
|
|
entity_id: sensor.proxmox_garage_avg_temp
|
|
|
|
|
above: 145 # Adjust threshold as needed
|
|
|
|
|
action:
|
|
|
|
|
- service: script.notify_engine
|
|
|
|
|
data:
|
|
|
|
|
title: "🔥 Proxmox Garage Alert!"
|
2025-02-10 16:44:44 +00:00
|
|
|
value1: "The average temperature of your Proxmox servers is above 145°F!"
|
2025-01-31 18:56:37 +00:00
|
|
|
who: 'carlo'
|
|
|
|
|
group: 'information'
|