2021-08-23 11:38:25 +05:30
|
|
|
import Loadable from "./components/Loadable";
|
2021-04-24 03:51:31 +05:30
|
|
|
|
2021-08-23 11:38:25 +05:30
|
|
|
export const ServiceMetricsPage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "ServiceMetricsPage" */ "modules/Metrics/ServiceMetricsDef"
|
|
|
|
|
),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|
2021-08-23 11:38:25 +05:30
|
|
|
|
|
|
|
|
export const ServiceMapPage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "ServiceMapPage" */ "modules/Servicemap/ServiceMap"
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export const TraceDetailPage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "TraceDetailPage" */ "modules/Traces/TraceDetail"
|
|
|
|
|
),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|
2021-08-23 11:38:25 +05:30
|
|
|
|
|
|
|
|
export const TraceGraphPage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "TraceGraphPage" */ "modules/Traces/TraceGraphDef"
|
|
|
|
|
),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|
2021-08-23 11:38:25 +05:30
|
|
|
|
|
|
|
|
export const UsageExplorerPage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "UsageExplorerPage" */ "modules/Usage/UsageExplorerDef"
|
|
|
|
|
),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|
2021-08-23 11:38:25 +05:30
|
|
|
|
|
|
|
|
export const ServicesTablePage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "ServicesTablePage" */ "modules/Metrics/ServicesTableDef"
|
|
|
|
|
),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|
2021-08-23 11:38:25 +05:30
|
|
|
|
|
|
|
|
export const SignupPage = Loadable(
|
|
|
|
|
() => import(/* webpackChunkName: "SignupPage" */ "modules/Auth/Signup"),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|
2021-08-23 11:38:25 +05:30
|
|
|
|
|
|
|
|
export const SettingsPage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "SettingsPage" */ "modules/Settings/settingsPage"
|
|
|
|
|
),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|
|
|
|
|
|
2021-08-23 11:38:25 +05:30
|
|
|
export const InstrumentationPage = Loadable(
|
|
|
|
|
() =>
|
|
|
|
|
import(
|
|
|
|
|
/* webpackChunkName: "InstrumentationPage" */ "modules/add-instrumentation/instrumentationPage"
|
|
|
|
|
),
|
2021-04-24 03:51:31 +05:30
|
|
|
);
|