The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/core/log_events.ts

18 lines
905 B

export enum PanelLogEvents {
FIELD_CONFIG_OVERRIDES_CHANGED_EVENT = 'field config overrides changed',
NEW_PANEL_OPTION_EVENT = 'new panel option',
PANEL_OPTION_CHANGED_EVENT = 'panel option changed',
NEW_DEFAULT_FIELD_CONFIG_EVENT = 'new default field config',
DEFAULT_FIELD_CONFIG_CHANGED_EVENT = 'default field config changed',
NEW_CUSTOM_FIELD_CONFIG_EVENT = 'new custom field config',
CUSTOM_FIELD_CONFIG_CHANGED_EVENT = 'custom field config changed',
MEASURE_PANEL_LOAD_TIME_EVENT = 'measure panel load time',
THRESHOLDS_COUNT_CHANGED_EVENT = 'thresholds count changed',
THRESHOLDS_MODE_CHANGED_EVENT = 'thresholds mode changed',
MAPPINGS_COUNT_CHANGED_EVENT = 'mappings count changed',
LINKS_COUNT_CHANGED_EVENT = 'links count changed',
PANEL_ERROR = 'panel error',
}
export const FIELD_CONFIG_OVERRIDES_KEY = 'overrides';
export const FIELD_CONFIG_CUSTOM_KEY = 'custom';