mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
* WIP * remove bug * XY Chart logs * wip * wip * wip * wip * wip * Revert experimental logs * wip dataviz options monitor * add logging functionality on panel save * remove unused file * readd start load time * remove afterFrame lib. remove assertions where possible * add tests * PR modifications * fix betterer * rename logEvent to logPanelEvent * add feature flag * split monitor into measurement and logging parts * rename component * log panel options on error capture also. Log overrides only then * refactor logs * log panel option changes only on error in panel edit mode * refactor function
19 lines
905 B
TypeScript
19 lines
905 B
TypeScript
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';
|