-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMenu.tsx
More file actions
57 lines (56 loc) · 1.01 KB
/
Menu.tsx
File metadata and controls
57 lines (56 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
export const monitoringItemsConfig = [
{
label: "Overview",
link: "/monitoring/overview",
},
{
label: "UCI-API",
link: "/monitoring/uci-api",
},
{
label: "Inbound",
link: "/monitoring/inbound",
},
{
label: "Orchestrator",
link: "/monitoring/orchestrator",
},
{
label: "Transformer",
link: "/monitoring/transformer",
},
{
label: "Broadcast-Transformer",
link: "/monitoring/broadcast-transformer",
},
{
label: "Outbound",
link: "/monitoring/outbound",
}
];
export const logsItemsConfig = [
{
label: "UCI-API",
link: "/monitoring/logs/uci-api",
},
{
label: "Inbound",
link: "/monitoring/logs/inbound",
},
{
label: "Orchestrator",
link: "/monitoring/logs/orchestrator",
},
{
label: "Transformer",
link: "/monitoring/logs/transformer",
},
{
label: "Broadcast-Transformer",
link: "/monitoring/logs/broadcast-transformer",
},
{
label: "Outbound",
link: "/monitoring/logs/outbound",
}
];