Domain Entity Counter app for AppDaemon.
Adds sensors that count the number of entities inside a domain.
Download the count_entities
directory from inside the apps
directory here to your local apps
directory, then add the configuration to enable the hacs
module.
# Creates a sensor for all domains.
count_entities:
module: count_entities
class: CountEntities
# Creates a sensor for all domains except the excluded list
count_entities:
module: count_entities
class: CountEntities
exclude:
- sun
- input_select
- input_text
- input_number
- image_processing
- persistent_notification
- weather
- remote
log_level: INFO
key | optional | type | default | description |
---|---|---|---|---|
module |
False | string | count_entities | The module name of the app. |
class |
False | string | CountEntities | The name of the Class. |
exclude |
True | list | A list of domain names to exclude. You cannot combine this with include. | |
include |
True | list | A list of domain names to include. You cannot combine this with exclude. | |
log_level |
True | 'INFO' | 'DEBUG' |
'INFO' |
Switches log level. |