12 lines
614 B
Python
12 lines
614 B
Python
# Class for holding REDIS keys
|
|
class RedisInstances:
|
|
# Dashboard, Incidents by time widget
|
|
WIDGET_INCS_BY_TIME_DAY = 'widget_incs_by_time_day'
|
|
WIDGET_INCS_BY_TIME_WEEK = 'widget_incs_by_time_week'
|
|
WIDGET_INCS_BY_TIME_MONTH = 'widget_incs_by_time_month'
|
|
WIDGET_INCS_BY_TIME_YEAR = 'widget_incs_by_time_year'
|
|
# Dashboard, Events by time widget
|
|
WIDGET_EVENTS_BY_TIME_DAY = 'widget_events_by_time_day'
|
|
WIDGET_EVENTS_BY_TIME_WEEK = 'widget_events_by_time_week'
|
|
WIDGET_EVENTS_BY_TIME_MONTH = 'widget_events_by_time_month'
|
|
WIDGET_EVENTS_BY_TIME_YEAR = 'widget_events_by_time_year'
|