mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* Signoz Cloud - Onboarding Flow - Getting Started page * Signoz Cloud - Onboarding Flow - Java lang setup flow * Signoz Cloud - Onboarding Flow - Wireup other lang docs for APM and create empty base component for other modules * Signoz Cloud - Onboarding Flow - remove try signoz cloud button, Update code background * Signoz Cloud - Onboarding Flow - Wire up all docs and modules * Signoz Cloud - Onboarding Flow - Integrate Intercom and other minor fixes * Signoz Cloud - Onboarding Flow - Logs Management - Update Connection Status component * Signoz Cloud - Onboarding Flow - Logs Management - Update light mode styles * Signoz Cloud - Onboarding Flow - Logs Management - Update Logs * Signoz Cloud - Update yarn.lock * Signoz Cloud - Delete Progress Steps component * Signoz Cloud - Poll for connection status, created common Header component * Signoz Cloud - Add polling to check connection status, update components to use common Header component * Signoz Cloud - Render onboarding only if feature flag is enabled * Signoz Cloud - Configure Logs Management Steps * Signoz Cloud - Update intercom snippet and set max width for onboarding flow container to 1440px * Signoz Cloud - Use andD card component for displaying modules * chore: first clean up * Signoz Cloud - Use ONBOARDING and CHAT_SUPPORT FF * Signoz Cloud - Update version check logic and fix minor css issues * fix: feature flag is updated * chore: docusaurus is removed * chore: docusaurus is removed * feat: signoz cloud - fix typecheck errors * feat: signoz cloud - enable chat support based on FF * feat: signoz cloud - fix type errors * feat: signoz cloud - fix type errors * feat: signoz cloud - update webpack config rules --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com>
50 lines
2.3 KiB
TypeScript
50 lines
2.3 KiB
TypeScript
import { QueryParams } from 'constants/query';
|
|
import ROUTES from 'constants/routes';
|
|
import { themeColors } from 'constants/theme';
|
|
|
|
export const styles = { background: '#1f1f1f' };
|
|
|
|
export const subMenuStyles = {
|
|
background: '#1f1f1f',
|
|
margin: '0rem',
|
|
width: '100%',
|
|
color: themeColors.gainsboro,
|
|
};
|
|
|
|
export const routeConfig: Record<string, QueryParams[]> = {
|
|
[ROUTES.SERVICE_METRICS]: [QueryParams.resourceAttributes],
|
|
[ROUTES.SERVICE_MAP]: [QueryParams.resourceAttributes],
|
|
[ROUTES.ALL_ERROR]: [QueryParams.resourceAttributes],
|
|
[ROUTES.ALERTS_NEW]: [QueryParams.resourceAttributes],
|
|
[ROUTES.ALL_CHANNELS]: [QueryParams.resourceAttributes],
|
|
[ROUTES.ALL_DASHBOARD]: [QueryParams.resourceAttributes],
|
|
[ROUTES.APPLICATION]: [QueryParams.resourceAttributes],
|
|
[ROUTES.CHANNELS_EDIT]: [QueryParams.resourceAttributes],
|
|
[ROUTES.CHANNELS_NEW]: [QueryParams.resourceAttributes],
|
|
[ROUTES.DASHBOARD]: [QueryParams.resourceAttributes],
|
|
[ROUTES.DASHBOARD_WIDGET]: [QueryParams.resourceAttributes],
|
|
[ROUTES.EDIT_ALERTS]: [QueryParams.resourceAttributes],
|
|
[ROUTES.ERROR_DETAIL]: [QueryParams.resourceAttributes],
|
|
[ROUTES.HOME_PAGE]: [QueryParams.resourceAttributes],
|
|
[ROUTES.GET_STARTED]: [QueryParams.resourceAttributes],
|
|
[ROUTES.LIST_ALL_ALERT]: [QueryParams.resourceAttributes],
|
|
[ROUTES.LIST_LICENSES]: [QueryParams.resourceAttributes],
|
|
[ROUTES.LOGIN]: [QueryParams.resourceAttributes],
|
|
[ROUTES.LOGS]: [QueryParams.resourceAttributes],
|
|
[ROUTES.MY_SETTINGS]: [QueryParams.resourceAttributes],
|
|
[ROUTES.NOT_FOUND]: [QueryParams.resourceAttributes],
|
|
[ROUTES.ORG_SETTINGS]: [QueryParams.resourceAttributes],
|
|
[ROUTES.PASSWORD_RESET]: [QueryParams.resourceAttributes],
|
|
[ROUTES.SETTINGS]: [QueryParams.resourceAttributes],
|
|
[ROUTES.SIGN_UP]: [QueryParams.resourceAttributes],
|
|
[ROUTES.SOMETHING_WENT_WRONG]: [QueryParams.resourceAttributes],
|
|
[ROUTES.TRACES_EXPLORER]: [QueryParams.resourceAttributes],
|
|
[ROUTES.TRACE]: [QueryParams.resourceAttributes],
|
|
[ROUTES.TRACE_DETAIL]: [QueryParams.resourceAttributes],
|
|
[ROUTES.UN_AUTHORIZED]: [QueryParams.resourceAttributes],
|
|
[ROUTES.USAGE_EXPLORER]: [QueryParams.resourceAttributes],
|
|
[ROUTES.VERSION]: [QueryParams.resourceAttributes],
|
|
[ROUTES.TRACE_EXPLORER]: [QueryParams.resourceAttributes],
|
|
[ROUTES.PIPELINES]: [QueryParams.resourceAttributes],
|
|
};
|