10 lines
263 B
Python
10 lines
263 B
Python
|
"""History integration constants."""
|
||
|
|
||
|
DOMAIN = "history"
|
||
|
HISTORY_FILTERS = "history_filters"
|
||
|
HISTORY_ENTITIES_FILTER = "history_entities_filter"
|
||
|
HISTORY_USE_INCLUDE_ORDER = "history_use_include_order"
|
||
|
EVENT_COALESCE_TIME = 0.35
|
||
|
|
||
|
MAX_PENDING_HISTORY_STATES = 2048
|