mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-22 18:06:35 +00:00
* fix: display the inter-step latency type in step metrics table * chore: send latency type with n+1th step + make latency type optional * fix: fetch and format get funnel steps overview metrics * chore: remove dev env check * fix: overall fixes * fix: don't cache validate query + trigger validate on changing error and where clause as well * fix: display the latency type in step overview metrics table + p99_latency to latency * chore: revert dev env check removal (remove after BE changes are merged) * fix: adjust create API response * chore: useLocalStorage custom hook * feat: improve the run funnel flow - for the initial fetch of funnel results, require the user to run the funnel - subsequently change the run funnel button to a refresh button - display loading state while any of the funnel results APIs are being fetched * fix: fix the issue of add step details breaking * fix: refetch funnel details on rename success * fix: redirect 'learn more' to trace funnels docs * fix: handle potential undefined step in latency type calculation * fix: properly handle incomplete steps state * fix: fix the edge case of stale validation state on transitioning from invalid steps to valid steps * fix: remove the side effect from render and move to useEffect
35 lines
1.4 KiB
TypeScript
35 lines
1.4 KiB
TypeScript
export enum LOCALSTORAGE {
|
|
METRICS_TIME_IN_DURATION = 'metricsTimeDurations',
|
|
IS_LOGGED_IN = 'IS_LOGGED_IN',
|
|
AUTH_TOKEN = 'AUTH_TOKEN',
|
|
REFRESH_AUTH_TOKEN = 'REFRESH_AUTH_TOKEN',
|
|
THEME = 'THEME',
|
|
LOGS_VIEW_MODE = 'LOGS_VIEW_MODE',
|
|
LOGS_LINES_PER_ROW = 'LOGS_LINES_PER_ROW',
|
|
LOGS_LIST_OPTIONS = 'LOGS_LIST_OPTIONS',
|
|
TRACES_LIST_OPTIONS = 'TRACES_LIST_OPTIONS',
|
|
GRAPH_VISIBILITY_STATES = 'GRAPH_VISIBILITY_STATES',
|
|
TRACES_LIST_COLUMNS = 'TRACES_LIST_COLUMNS',
|
|
LOGS_LIST_COLUMNS = 'LOGS_LIST_COLUMNS',
|
|
LOGGED_IN_USER_NAME = 'LOGGED_IN_USER_NAME',
|
|
LOGGED_IN_USER_EMAIL = 'LOGGED_IN_USER_EMAIL',
|
|
CHAT_SUPPORT = 'CHAT_SUPPORT',
|
|
IS_IDENTIFIED_USER = 'IS_IDENTIFIED_USER',
|
|
DASHBOARD_VARIABLES = 'DASHBOARD_VARIABLES',
|
|
SHOW_EXPLORER_TOOLBAR = 'SHOW_EXPLORER_TOOLBAR',
|
|
PINNED_ATTRIBUTES = 'PINNED_ATTRIBUTES',
|
|
THEME_ANALYTICS_V1 = 'THEME_ANALYTICS_V1',
|
|
LAST_USED_SAVED_VIEWS = 'LAST_USED_SAVED_VIEWS',
|
|
SHOW_LOGS_QUICK_FILTERS = 'SHOW_LOGS_QUICK_FILTERS',
|
|
USER_ID = 'USER_ID',
|
|
PREFERRED_TIMEZONE = 'PREFERRED_TIMEZONE',
|
|
UNAUTHENTICATED_ROUTE_HIT = 'UNAUTHENTICATED_ROUTE_HIT',
|
|
CELERY_OVERVIEW_COLUMNS = 'CELERY_OVERVIEW_COLUMNS',
|
|
DONT_SHOW_SLOW_API_WARNING = 'DONT_SHOW_SLOW_API_WARNING',
|
|
METRICS_LIST_OPTIONS = 'METRICS_LIST_OPTIONS',
|
|
SHOW_EXCEPTIONS_QUICK_FILTERS = 'SHOW_EXCEPTIONS_QUICK_FILTERS',
|
|
BANNER_DISMISSED = 'BANNER_DISMISSED',
|
|
QUICK_FILTERS_SETTINGS_ANNOUNCEMENT = 'QUICK_FILTERS_SETTINGS_ANNOUNCEMENT',
|
|
UNEXECUTED_FUNNELS = 'UNEXECUTED_FUNNELS',
|
|
}
|