mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-12-02 02:51:56 +00:00
- 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.
52 lines
1.8 KiB
YAML
Executable File
52 lines
1.8 KiB
YAML
Executable File
#-------------------------------------------
|
|
# @CCOSTAN
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
# Process Monitor - Track HA-related services and processes.
|
|
#-------------------------------------------
|
|
######################################################################
|
|
## Process status sensors and notifications.
|
|
######################################################################
|
|
# homeassistant:
|
|
# customize:
|
|
# sensor.process_mosquitto:
|
|
# friendly_name: 'Mosquitto'
|
|
#
|
|
# Uses SYSTEMMONITOR integration
|
|
#-------------------------------------------
|
|
|
|
|
|
#-------------------------------------------
|
|
##############################################################################
|
|
### Automations - Detect when things are not right. Like any Good Watchdog.
|
|
##############################################################################
|
|
|
|
automation:
|
|
|
|
- alias: "Self Heal Disk Use Alarm"
|
|
id: b16f2155-4688-4c0f-9cf8-b382e294a029
|
|
trigger:
|
|
- platform: numeric_state
|
|
entity_id: sensor.disk_use_percent
|
|
above: 80
|
|
action:
|
|
- service: script.notify_engine
|
|
data:
|
|
value1: 'Hard Drive Monitor:'
|
|
value2: "Your harddrive is running out of Space! /dev/root:{{ states.sensor.disk_use_percent.state }}%!"
|
|
value3: 'Attempting to clean'
|
|
who: 'carlo'
|
|
- service: tts.clear_cache
|
|
|
|
- alias: "Disk Use Alarm"
|
|
id: 1ce3cb43-0e27-4c53-acdd-d672396f3559
|
|
trigger:
|
|
- platform: numeric_state
|
|
entity_id: sensor.disk_use_percent
|
|
above: 90
|
|
action:
|
|
- service: script.notify_engine
|
|
data:
|
|
value1: 'Hard Drive Monitor:'
|
|
value2: "Your harddrive is running out of Space! /dev/root:{{ states.sensor.disk_use_percent.state }}%!"
|
|
who: 'carlo'
|