mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* chore: update logs pipelines title and routes * chore: add nav for logs pipelines * feat: debounced pipelines sarch on change, navigation text changes * fix: get lint passing * fix: update snapshots for tests --------- Co-authored-by: Yunus A M <myounis.ar@live.com>
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
const ROUTES = {
|
|
SIGN_UP: '/signup',
|
|
LOGIN: '/login',
|
|
SERVICE_METRICS: '/services/:servicename',
|
|
SERVICE_MAP: '/service-map',
|
|
TRACE: '/trace',
|
|
TRACE_DETAIL: '/trace/:id',
|
|
TRACES_EXPLORER: '/traces-explorer',
|
|
SETTINGS: '/settings',
|
|
GET_STARTED: '/get-started',
|
|
USAGE_EXPLORER: '/usage-explorer',
|
|
APPLICATION: '/services',
|
|
ALL_DASHBOARD: '/dashboard',
|
|
DASHBOARD: '/dashboard/:dashboardId',
|
|
DASHBOARD_WIDGET: '/dashboard/:dashboardId/:widgetId',
|
|
EDIT_ALERTS: '/alerts/edit',
|
|
LIST_ALL_ALERT: '/alerts',
|
|
ALERTS_NEW: '/alerts/new',
|
|
ALL_CHANNELS: '/settings/channels',
|
|
CHANNELS_NEW: '/settings/channels/new',
|
|
CHANNELS_EDIT: '/settings/channels/:id',
|
|
ALL_ERROR: '/exceptions',
|
|
ERROR_DETAIL: '/error-detail',
|
|
VERSION: '/status',
|
|
MY_SETTINGS: '/my-settings',
|
|
ORG_SETTINGS: '/settings/org-settings',
|
|
INGESTION_SETTINGS: '/settings/ingestion-settings',
|
|
SOMETHING_WENT_WRONG: '/something-went-wrong',
|
|
UN_AUTHORIZED: '/un-authorized',
|
|
NOT_FOUND: '/not-found',
|
|
LOGS: '/logs',
|
|
LOGS_EXPLORER: '/logs-explorer',
|
|
LIVE_LOGS: '/logs-explorer/live',
|
|
LOGS_PIPELINES: '/pipelines',
|
|
HOME_PAGE: '/',
|
|
PASSWORD_RESET: '/password-reset',
|
|
LIST_LICENSES: '/licenses',
|
|
LOGS_INDEX_FIELDS: '/logs-explorer/index-fields',
|
|
TRACE_EXPLORER: '/trace-explorer',
|
|
BILLING: '/billing',
|
|
SUPPORT: '/support',
|
|
WORKSPACE_LOCKED: '/workspace-locked',
|
|
};
|
|
|
|
export default ROUTES;
|