17 lines
490 B
JavaScript
17 lines
490 B
JavaScript
export const dateFormatMask = 'mmm dd HH:MM:ss.l';
|
|
|
|
export const TOKEN_TYPE_POD_NAME = 'TOKEN_TYPE_POD_NAME';
|
|
|
|
export const tracking = {
|
|
USED_SEARCH_BAR: 'used_search_bar',
|
|
POD_LOG_CHANGED: 'pod_log_changed',
|
|
TIME_RANGE_SET: 'time_range_set',
|
|
ENVIRONMENT_SELECTED: 'environment_selected',
|
|
REFRESH_POD_LOGS: 'refresh_pod_logs',
|
|
MANAGED_APP_SELECTED: 'managed_app_selected',
|
|
};
|
|
|
|
export const logExplorerOptions = {
|
|
environments: 'environments',
|
|
managedApps: 'managedApps',
|
|
};
|