2018-01-01 19:00:45 -05: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
|
|
|
# Process Monitor - Track HA-related services and processes.
|
2018-01-01 19:00:45 -05: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
|
|
|
######################################################################
|
|
|
|
|
## Process status sensors and notifications.
|
|
|
|
|
######################################################################
|
2018-01-01 21:10:53 -05:00
|
|
|
# homeassistant:
|
|
|
|
|
# customize:
|
|
|
|
|
# sensor.process_mosquitto:
|
|
|
|
|
# friendly_name: 'Mosquitto'
|
2018-01-22 13:39:14 -05:00
|
|
|
#
|
2024-01-04 16:03:02 +00:00
|
|
|
# Uses SYSTEMMONITOR integration
|
2018-01-01 19:00:45 -05:00
|
|
|
#-------------------------------------------
|
2024-01-04 16:03:02 +00:00
|
|
|
|
2018-08-14 13:27:15 -04:00
|
|
|
|
2018-01-01 19:00:45 -05:00
|
|
|
#-------------------------------------------
|
|
|
|
|
##############################################################################
|
|
|
|
|
### Automations - Detect when things are not right. Like any Good Watchdog.
|
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
|
|
automation:
|
|
|
|
|
|
|
|
|
|
- alias: "Self Heal Disk Use Alarm"
|
2020-07-20 19:33:03 +01:00
|
|
|
id: b16f2155-4688-4c0f-9cf8-b382e294a029
|
2018-01-01 19:00:45 -05:00
|
|
|
trigger:
|
|
|
|
|
- platform: numeric_state
|
2019-02-23 14:27:23 -05:00
|
|
|
entity_id: sensor.disk_use_percent
|
2018-01-01 19:00:45 -05:00
|
|
|
above: 80
|
|
|
|
|
action:
|
|
|
|
|
- service: script.notify_engine
|
2020-09-26 10:52:45 -04:00
|
|
|
data:
|
2018-01-01 19:00:45 -05:00
|
|
|
value1: 'Hard Drive Monitor:'
|
2019-02-23 14:27:23 -05:00
|
|
|
value2: "Your harddrive is running out of Space! /dev/root:{{ states.sensor.disk_use_percent.state }}%!"
|
2018-01-01 19:00:45 -05:00
|
|
|
value3: 'Attempting to clean'
|
|
|
|
|
who: 'carlo'
|
|
|
|
|
- service: tts.clear_cache
|
|
|
|
|
|
|
|
|
|
- alias: "Disk Use Alarm"
|
2020-07-20 19:33:03 +01:00
|
|
|
id: 1ce3cb43-0e27-4c53-acdd-d672396f3559
|
2018-01-01 19:00:45 -05:00
|
|
|
trigger:
|
|
|
|
|
- platform: numeric_state
|
2019-02-23 14:27:23 -05:00
|
|
|
entity_id: sensor.disk_use_percent
|
2018-01-01 19:00:45 -05:00
|
|
|
above: 90
|
|
|
|
|
action:
|
|
|
|
|
- service: script.notify_engine
|
2020-09-26 10:52:45 -04:00
|
|
|
data:
|
2018-01-01 19:00:45 -05:00
|
|
|
value1: 'Hard Drive Monitor:'
|
2019-02-23 14:27:23 -05:00
|
|
|
value2: "Your harddrive is running out of Space! /dev/root:{{ states.sensor.disk_use_percent.state }}%!"
|
2018-01-01 19:00:45 -05:00
|
|
|
who: 'carlo'
|