Skip to content

Petro31/ad_monitor_events

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Home Assistant Event Monitor

hacs_badge
Buy Me A Coffee

Event Monitor app for AppDaemon.

Displays specified events inside the appdaemon logs.

Installation

Download the event_monitor directory from inside the apps directory here to your local apps directory, then add the configuration to enable the hacs module.

Example App configuration

Basic

# Monitors all events in INFO log level
events:
  module: event_monitor
  class: EventMonitor
  level: 'INFO'

Advanced

# Monitors all switch call_services
events:
  module: event_monitor
  class: EventMonitor
  level: 'INFO'
  events:
  - event: call_service
    data:
      domain: 'switch'

App Configuration

key optional type default description
module False string event_monitor The module name of the app.
class False string EventMonitor The name of the Class.
level True 'INFO' | 'DEBUG' 'INFO' Switches log level.
events True list Empty (all events) A list of event names or event objects.

Event Object Configuration

key optional type default description
event False string The event name.
data True map Basic event data. Currently does not accept sublists or sub dictionaries.