We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8961e16 + 227a6a7 commit 76bbf22Copy full SHA for 76bbf22
redisinsight/ui/src/components/main-router/constants/redisStackRoutes.ts
@@ -3,6 +3,7 @@ import {
3
BrowserPage, InstancePage,
4
} from 'uiSrc/pages'
5
import WorkbenchPage from 'uiSrc/pages/workbench'
6
+import SlowLogPage from 'uiSrc/pages/slowLog'
7
import EditConnection from 'uiSrc/pages/redisStack/components/edit-connection'
8
import COMMON_ROUTES from './commonRoutes'
9
@@ -19,6 +20,12 @@ const INSTANCE_ROUTES: IRoute[] = [
19
20
path: Pages.workbench(':instanceId'),
21
component: WorkbenchPage,
22
},
23
+ {
24
+ pageName: PageNames.slowLog,
25
+ protected: true,
26
+ path: Pages.slowLog(':instanceId'),
27
+ component: SlowLogPage,
28
+ },
29
]
30
31
const ROUTES: IRoute[] = [
0 commit comments