@oneuptime/common 11.5.13 → 11.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Models/AnalyticsModels/AnalyticsBaseModel/AnalyticsBaseModel.ts +41 -24
- package/Models/AnalyticsModels/MetricBaselineHourly.ts +2 -0
- package/Models/AnalyticsModels/MetricItemAggMV1m.ts +5 -2
- package/Models/AnalyticsModels/MetricItemAggMV1mByContainer.ts +5 -2
- package/Models/AnalyticsModels/MetricItemAggMV1mByHostV2.ts +5 -2
- package/Models/AnalyticsModels/MetricItemAggMV1mByK8sCluster.ts +5 -2
- package/Models/AnalyticsModels/MetricItemAggMV1mByService.ts +5 -2
- package/Models/DatabaseModels/EnterpriseLicense.ts +21 -0
- package/Models/DatabaseModels/EnterpriseLicenseInstance.ts +25 -0
- package/Models/DatabaseModels/GlobalConfig.ts +76 -0
- package/Server/API/EnterpriseLicenseAPI.ts +57 -0
- package/Server/API/GlobalConfigAPI.ts +62 -1
- package/Server/EnvironmentConfig.ts +22 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1784659816363-AddInstanceVersionAndLatestReleaseColumns.ts +38 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/1784705487674-AddEnterpriseLicenseEvaluationColumns.ts +25 -0
- package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +4 -0
- package/Server/Services/AnalyticsDatabaseService.ts +61 -46
- package/Server/Services/DatabaseService.ts +66 -1
- package/Server/Services/WorkflowService.ts +100 -39
- package/Server/Types/Workflow/Components/Schedule.ts +57 -32
- package/Server/Utils/AnalyticsDatabase/InsertDedupContext.ts +59 -0
- package/Server/Utils/AnalyticsDatabase/StatementGenerator.ts +41 -4
- package/Server/Utils/Express.ts +13 -0
- package/Server/Utils/Telemetry/TelemetryFanInWriter.ts +799 -0
- package/Server/Utils/Telemetry/TelemetryWriterClient.ts +263 -0
- package/Server/Utils/Telemetry/TelemetryWriterServer.ts +240 -0
- package/Server/Utils/Telemetry/TelemetryWriterShedMetrics.ts +93 -0
- package/Tests/Models/AnalyticsModels/AnalyticsBaseModel.test.ts +122 -0
- package/Tests/Server/Services/DatabaseServiceSanitizeUpdateData.test.ts +232 -0
- package/Tests/Server/Services/UpdateOneByIdKeepsRowId.test.ts +107 -0
- package/Tests/Server/Services/WorkflowService.test.ts +308 -0
- package/Tests/Server/Utils/AnalyticsDatabase/ClusterAwareSchema.test.ts +164 -3
- package/Tests/Server/Utils/AnalyticsDatabase/StatementGenerator.test.ts +99 -0
- package/Tests/Server/Utils/Attribution.test.ts +203 -0
- package/Tests/Server/Utils/Marketing/ConversionUploadProvider.test.ts +183 -0
- package/Tests/Server/Utils/Marketing/GoogleAds.test.ts +340 -0
- package/Tests/Server/Utils/Monitor/Criteria/ExceptionMonitorCriteria.test.ts +87 -0
- package/Tests/Server/Utils/Monitor/Criteria/LogMonitorCriteria.test.ts +165 -0
- package/Tests/Server/Utils/Monitor/Criteria/TraceMonitorCriteria.test.ts +86 -0
- package/Tests/Server/Utils/Telemetry/TelemetryFanInWriter.test.ts +1565 -0
- package/Tests/Server/Utils/Telemetry/TelemetryWriterClient.test.ts +313 -0
- package/Tests/Server/Utils/Telemetry/TelemetryWriterServer.test.ts +270 -0
- package/Tests/Server/Utils/Telemetry/TelemetryWriterShedMetrics.test.ts +127 -0
- package/Tests/Types/AI/CodeFixTaskType.test.ts +3 -0
- package/Tests/Types/HashCode.test.ts +41 -0
- package/Tests/Types/Log/LogQueryParser.test.ts +186 -0
- package/Tests/Types/Monitor/MonitorCriteriaMetricVariables.test.ts +228 -0
- package/Tests/Types/Monitor/MonitorStepDefaultTelemetryConfig.test.ts +169 -0
- package/Tests/Types/Monitor/MonitorStepExceptionMonitor.test.ts +289 -0
- package/Tests/Types/Monitor/MonitorStepLogMonitor.test.ts +231 -0
- package/Tests/Types/Monitor/MonitorStepMetricViewConfigUtil.test.ts +245 -0
- package/Tests/Types/Monitor/MonitorStepNetworkDeviceMonitor.test.ts +155 -0
- package/Tests/Types/Monitor/MonitorStepTelemetrySerialization.test.ts +141 -0
- package/Tests/Types/Monitor/MonitorStepTraceMonitor.test.ts +137 -0
- package/Tests/Types/Workspace/NotificationRules/NotificationRuleCondition.test.ts +311 -0
- package/Tests/UI/Utils/Breadcrumb/BreadcrumbTrailResolver.test.ts +461 -0
- package/Tests/UI/Utils/Breadcrumb/fixtures/RealBreadcrumbTrails.ts +2852 -0
- package/Tests/UI/Utils/Breadcrumb/fixtures/RealRoutePatterns.ts +758 -0
- package/Tests/UI/Utils/NotificationMethodUtil.test.ts +564 -0
- package/Tests/Utils/Array.test.ts +156 -0
- package/Tests/Utils/CronTab.test.ts +199 -0
- package/Tests/Utils/Dashboard/VariableInterpolation.test.ts +197 -0
- package/Tests/Utils/ModelImportExport.test.ts +101 -0
- package/Tests/Utils/Number.test.ts +179 -0
- package/Tests/Utils/ValueFormatter.test.ts +305 -0
- package/Tests/Utils/VersionUtil.test.ts +348 -0
- package/Tests/jest.setup.ts +1 -0
- package/Types/AnalyticsDatabase/TableColumn.ts +23 -0
- package/Types/EnterpriseLicense/EnterpriseLicenseInstanceSummary.ts +6 -0
- package/Types/Monitor/MonitorStep.ts +24 -4
- package/Types/Monitor/MonitorStepMetricViewConfigUtil.ts +105 -0
- package/UI/Components/EditionLabel/EditionLabel.tsx +445 -12
- package/UI/Components/Workflow/ArgumentsForm.tsx +68 -30
- package/UI/Components/Workflow/CronScheduleField.tsx +411 -0
- package/UI/Utils/Breadcrumb/BreadcrumbTrailResolver.ts +176 -0
- package/UI/Utils/NotificationMethodUtil.ts +310 -0
- package/Utils/CronTab.ts +823 -0
- package/Utils/ModelImportExport.ts +21 -6
- package/Utils/VersionUtil.ts +260 -0
- package/build/dist/Models/AnalyticsModels/AnalyticsBaseModel/AnalyticsBaseModel.js +25 -20
- package/build/dist/Models/AnalyticsModels/AnalyticsBaseModel/AnalyticsBaseModel.js.map +1 -1
- package/build/dist/Models/AnalyticsModels/MetricBaselineHourly.js +2 -0
- package/build/dist/Models/AnalyticsModels/MetricBaselineHourly.js.map +1 -1
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1m.js +5 -2
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1m.js.map +1 -1
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByContainer.js +5 -2
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByContainer.js.map +1 -1
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByHostV2.js +5 -2
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByHostV2.js.map +1 -1
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByK8sCluster.js +5 -2
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByK8sCluster.js.map +1 -1
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByService.js +5 -2
- package/build/dist/Models/AnalyticsModels/MetricItemAggMV1mByService.js.map +1 -1
- package/build/dist/Models/DatabaseModels/EnterpriseLicense.js +22 -0
- package/build/dist/Models/DatabaseModels/EnterpriseLicense.js.map +1 -1
- package/build/dist/Models/DatabaseModels/EnterpriseLicenseInstance.js +26 -0
- package/build/dist/Models/DatabaseModels/EnterpriseLicenseInstance.js.map +1 -1
- package/build/dist/Models/DatabaseModels/GlobalConfig.js +81 -0
- package/build/dist/Models/DatabaseModels/GlobalConfig.js.map +1 -1
- package/build/dist/Server/API/EnterpriseLicenseAPI.js +47 -0
- package/build/dist/Server/API/EnterpriseLicenseAPI.js.map +1 -1
- package/build/dist/Server/API/GlobalConfigAPI.js +52 -1
- package/build/dist/Server/API/GlobalConfigAPI.js.map +1 -1
- package/build/dist/Server/EnvironmentConfig.js +17 -0
- package/build/dist/Server/EnvironmentConfig.js.map +1 -1
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1784659816363-AddInstanceVersionAndLatestReleaseColumns.js +18 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1784659816363-AddInstanceVersionAndLatestReleaseColumns.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1784705487674-AddEnterpriseLicenseEvaluationColumns.js +14 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1784705487674-AddEnterpriseLicenseEvaluationColumns.js.map +1 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +4 -0
- package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
- package/build/dist/Server/Services/AnalyticsDatabaseService.js +53 -17
- package/build/dist/Server/Services/AnalyticsDatabaseService.js.map +1 -1
- package/build/dist/Server/Services/DatabaseService.js +53 -1
- package/build/dist/Server/Services/DatabaseService.js.map +1 -1
- package/build/dist/Server/Services/WorkflowService.js +80 -30
- package/build/dist/Server/Services/WorkflowService.js.map +1 -1
- package/build/dist/Server/Types/Workflow/Components/Schedule.js +44 -19
- package/build/dist/Server/Types/Workflow/Components/Schedule.js.map +1 -1
- package/build/dist/Server/Utils/AnalyticsDatabase/InsertDedupContext.js +24 -0
- package/build/dist/Server/Utils/AnalyticsDatabase/InsertDedupContext.js.map +1 -0
- package/build/dist/Server/Utils/AnalyticsDatabase/StatementGenerator.js +29 -4
- package/build/dist/Server/Utils/AnalyticsDatabase/StatementGenerator.js.map +1 -1
- package/build/dist/Server/Utils/Express.js +12 -0
- package/build/dist/Server/Utils/Express.js.map +1 -1
- package/build/dist/Server/Utils/Telemetry/TelemetryFanInWriter.js +496 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryFanInWriter.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryWriterClient.js +165 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryWriterClient.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryWriterServer.js +136 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryWriterServer.js.map +1 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryWriterShedMetrics.js +76 -0
- package/build/dist/Server/Utils/Telemetry/TelemetryWriterShedMetrics.js.map +1 -0
- package/build/dist/Types/AnalyticsDatabase/TableColumn.js +7 -0
- package/build/dist/Types/AnalyticsDatabase/TableColumn.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorStep.js +20 -4
- package/build/dist/Types/Monitor/MonitorStep.js.map +1 -1
- package/build/dist/Types/Monitor/MonitorStepMetricViewConfigUtil.js +73 -0
- package/build/dist/Types/Monitor/MonitorStepMetricViewConfigUtil.js.map +1 -0
- package/build/dist/UI/Components/EditionLabel/EditionLabel.js +261 -13
- package/build/dist/UI/Components/EditionLabel/EditionLabel.js.map +1 -1
- package/build/dist/UI/Components/Workflow/ArgumentsForm.js +30 -6
- package/build/dist/UI/Components/Workflow/ArgumentsForm.js.map +1 -1
- package/build/dist/UI/Components/Workflow/CronScheduleField.js +209 -0
- package/build/dist/UI/Components/Workflow/CronScheduleField.js.map +1 -0
- package/build/dist/UI/Utils/Breadcrumb/BreadcrumbTrailResolver.js +129 -0
- package/build/dist/UI/Utils/Breadcrumb/BreadcrumbTrailResolver.js.map +1 -0
- package/build/dist/UI/Utils/NotificationMethodUtil.js +189 -0
- package/build/dist/UI/Utils/NotificationMethodUtil.js.map +1 -0
- package/build/dist/Utils/CronTab.js +609 -0
- package/build/dist/Utils/CronTab.js.map +1 -0
- package/build/dist/Utils/ModelImportExport.js +20 -6
- package/build/dist/Utils/ModelImportExport.js.map +1 -1
- package/build/dist/Utils/VersionUtil.js +193 -0
- package/build/dist/Utils/VersionUtil.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,2852 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* SNAPSHOT FIXTURE — generated from the Dashboard app's RouteMap and breadcrumb
|
|
3
|
+
* definitions (every getUserSettings/getMonitor/... breadcrumb trail). Used by
|
|
4
|
+
* BreadcrumbTrailResolver.test.ts to verify the resolver against the real-world
|
|
5
|
+
* route table. Regenerate if the route table changes meaningfully; the
|
|
6
|
+
* resolver's own unit tests do not depend on this snapshot.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
export interface BreadcrumbTrailFixture {
|
|
10
|
+
getter: string;
|
|
11
|
+
pagePattern: string;
|
|
12
|
+
titles: Array<string>;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const realBreadcrumbTrails: Array<BreadcrumbTrailFixture> = [
|
|
16
|
+
{
|
|
17
|
+
getter: "getAIAgentTasksBreadcrumbs",
|
|
18
|
+
pagePattern: "/dashboard/:projectId/ai/agents",
|
|
19
|
+
titles: ["Project", "AI Tasks"],
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
getter: "getAIAgentTasksBreadcrumbs",
|
|
23
|
+
pagePattern: "/dashboard/:projectId/ai/agents/:id",
|
|
24
|
+
titles: ["Project", "AI Tasks", "View Task"],
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
getter: "getAIAgentTasksBreadcrumbs",
|
|
28
|
+
pagePattern: "/dashboard/:projectId/ai/agents/:id/delete",
|
|
29
|
+
titles: ["Project", "AI Tasks", "View Task", "Delete Task"],
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
getter: "getAIAgentTasksBreadcrumbs",
|
|
33
|
+
pagePattern: "/dashboard/:projectId/ai/agents/:id/logs",
|
|
34
|
+
titles: ["Project", "AI Tasks", "View Task", "Logs"],
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
getter: "getAIAgentTasksBreadcrumbs",
|
|
38
|
+
pagePattern: "/dashboard/:projectId/ai/agents/:id/pull-requests",
|
|
39
|
+
titles: ["Project", "AI Tasks", "View Task", "Pull Requests"],
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
getter: "getAIInsightsBreadcrumbs",
|
|
43
|
+
pagePattern: "/dashboard/:projectId/ai/insights",
|
|
44
|
+
titles: ["Project", "Insights"],
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
getter: "getAIInsightsBreadcrumbs",
|
|
48
|
+
pagePattern: "/dashboard/:projectId/ai/insights/:id",
|
|
49
|
+
titles: ["Project", "Insights", "View Insight"],
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
getter: "getAIInsightsBreadcrumbs",
|
|
53
|
+
pagePattern: "/dashboard/:projectId/ai/insights/settings",
|
|
54
|
+
titles: ["Project", "Insights", "Settings"],
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
getter: "getAlertsBreadcrumbs",
|
|
58
|
+
pagePattern: "/dashboard/:projectId/alerts",
|
|
59
|
+
titles: ["Project", "Alerts"],
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
getter: "getAlertsBreadcrumbs",
|
|
63
|
+
pagePattern: "/dashboard/:projectId/alerts/:id",
|
|
64
|
+
titles: ["Project", "Alerts", "View Alert"],
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
getter: "getAlertsBreadcrumbs",
|
|
68
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/custom-fields",
|
|
69
|
+
titles: ["Project", "Alerts", "View Alert", "Custom Fields"],
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
getter: "getAlertsBreadcrumbs",
|
|
73
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/delete",
|
|
74
|
+
titles: ["Project", "Alerts", "View Alert", "Delete Alert"],
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
getter: "getAlertsBreadcrumbs",
|
|
78
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/description",
|
|
79
|
+
titles: ["Project", "Alerts", "Description"],
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
getter: "getAlertsBreadcrumbs",
|
|
83
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/internal-notes",
|
|
84
|
+
titles: ["Project", "Alerts", "View Alert", "Private Notes"],
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
getter: "getAlertsBreadcrumbs",
|
|
88
|
+
pagePattern:
|
|
89
|
+
"/dashboard/:projectId/alerts/:id/on-call-policy-execution-logs",
|
|
90
|
+
titles: ["Project", "Alerts", "View Alert", "On Call Executions"],
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
getter: "getAlertsBreadcrumbs",
|
|
94
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/owners",
|
|
95
|
+
titles: ["Project", "Alerts", "View Alert", "Owners"],
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
getter: "getAlertsBreadcrumbs",
|
|
99
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/remediation",
|
|
100
|
+
titles: ["Project", "Alerts", "View Alert", "Remediation"],
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
getter: "getAlertsBreadcrumbs",
|
|
104
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/root-cause",
|
|
105
|
+
titles: ["Project", "Alerts", "View Alert", "Root Cause"],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
getter: "getAlertsBreadcrumbs",
|
|
109
|
+
pagePattern: "/dashboard/:projectId/alerts/:id/state-timeline",
|
|
110
|
+
titles: ["Project", "Alerts", "View Alert", "State Timeline"],
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
getter: "getAlertsBreadcrumbs",
|
|
114
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes",
|
|
115
|
+
titles: ["Project", "Alerts", "Episodes"],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
getter: "getAlertsBreadcrumbs",
|
|
119
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id",
|
|
120
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode"],
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
getter: "getAlertsBreadcrumbs",
|
|
124
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id/alerts",
|
|
125
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode", "Alerts"],
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
getter: "getAlertsBreadcrumbs",
|
|
129
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id/delete",
|
|
130
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode", "Delete Episode"],
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
getter: "getAlertsBreadcrumbs",
|
|
134
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id/description",
|
|
135
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode", "Description"],
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
getter: "getAlertsBreadcrumbs",
|
|
139
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id/internal-notes",
|
|
140
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode", "Private Notes"],
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
getter: "getAlertsBreadcrumbs",
|
|
144
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id/owners",
|
|
145
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode", "Owners"],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
getter: "getAlertsBreadcrumbs",
|
|
149
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id/root-cause",
|
|
150
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode", "Root Cause"],
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
getter: "getAlertsBreadcrumbs",
|
|
154
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/:id/state-timeline",
|
|
155
|
+
titles: ["Project", "Alerts", "Episodes", "View Episode", "State Timeline"],
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
getter: "getAlertsBreadcrumbs",
|
|
159
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/documentation",
|
|
160
|
+
titles: ["Project", "Alerts", "Episodes", "Documentation"],
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
getter: "getAlertsBreadcrumbs",
|
|
164
|
+
pagePattern: "/dashboard/:projectId/alerts/episodes/unresolved",
|
|
165
|
+
titles: ["Project", "Alerts", "Active Episodes"],
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
getter: "getAlertsBreadcrumbs",
|
|
169
|
+
pagePattern: "/dashboard/:projectId/alerts/settings/custom-fields",
|
|
170
|
+
titles: ["Project", "Alerts", "Settings", "Custom Fields"],
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
getter: "getAlertsBreadcrumbs",
|
|
174
|
+
pagePattern: "/dashboard/:projectId/alerts/settings/grouping-rules",
|
|
175
|
+
titles: ["Project", "Alerts", "Settings", "Grouping Rules"],
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
getter: "getAlertsBreadcrumbs",
|
|
179
|
+
pagePattern: "/dashboard/:projectId/alerts/settings/note-templates",
|
|
180
|
+
titles: ["Project", "Alerts", "Settings", "Note Templates"],
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
getter: "getAlertsBreadcrumbs",
|
|
184
|
+
pagePattern: "/dashboard/:projectId/alerts/settings/note-templates/:id",
|
|
185
|
+
titles: [
|
|
186
|
+
"Project",
|
|
187
|
+
"Alerts",
|
|
188
|
+
"Settings",
|
|
189
|
+
"Note Templates",
|
|
190
|
+
"View Template",
|
|
191
|
+
],
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
getter: "getAlertsBreadcrumbs",
|
|
195
|
+
pagePattern: "/dashboard/:projectId/alerts/settings/severity",
|
|
196
|
+
titles: ["Project", "Alerts", "Settings", "Alert Severity"],
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
getter: "getAlertsBreadcrumbs",
|
|
200
|
+
pagePattern: "/dashboard/:projectId/alerts/settings/state",
|
|
201
|
+
titles: ["Project", "Alerts", "Settings", "Alert State"],
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
getter: "getAlertsBreadcrumbs",
|
|
205
|
+
pagePattern: "/dashboard/:projectId/alerts/unresolved",
|
|
206
|
+
titles: ["Project", "Alerts", "Active Alerts"],
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
getter: "getAlertsBreadcrumbs",
|
|
210
|
+
pagePattern:
|
|
211
|
+
"/dashboard/:projectId/alerts/workspace-connection-microsoft-teams",
|
|
212
|
+
titles: ["Project", "Alerts", "Microsoft Teams Connection"],
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
getter: "getAlertsBreadcrumbs",
|
|
216
|
+
pagePattern: "/dashboard/:projectId/alerts/workspace-connection-slack",
|
|
217
|
+
titles: ["Project", "Alerts", "Slack Connection"],
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
getter: "getCephBreadcrumbs",
|
|
221
|
+
pagePattern: "/dashboard/:projectId/ceph",
|
|
222
|
+
titles: ["Project", "Ceph", "Clusters"],
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
getter: "getCephBreadcrumbs",
|
|
226
|
+
pagePattern: "/dashboard/:projectId/ceph/:id",
|
|
227
|
+
titles: ["Project", "Ceph", "View Cluster"],
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
getter: "getCephBreadcrumbs",
|
|
231
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/alerts",
|
|
232
|
+
titles: ["Project", "Ceph", "View Cluster", "Alerts"],
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
getter: "getCephBreadcrumbs",
|
|
236
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/audit-logs",
|
|
237
|
+
titles: ["Project", "Ceph", "View Cluster", "Audit Logs"],
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
getter: "getCephBreadcrumbs",
|
|
241
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/cluster-log",
|
|
242
|
+
titles: ["Project", "Ceph", "View Cluster", "Cluster Log"],
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
getter: "getCephBreadcrumbs",
|
|
246
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/daemons",
|
|
247
|
+
titles: ["Project", "Ceph", "View Cluster", "Daemons"],
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
getter: "getCephBreadcrumbs",
|
|
251
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/delete",
|
|
252
|
+
titles: ["Project", "Ceph", "View Cluster", "Delete Cluster"],
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
getter: "getCephBreadcrumbs",
|
|
256
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/documentation",
|
|
257
|
+
titles: ["Project", "Ceph", "View Cluster", "Documentation"],
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
getter: "getCephBreadcrumbs",
|
|
261
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/incidents",
|
|
262
|
+
titles: ["Project", "Ceph", "View Cluster", "Incidents"],
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
getter: "getCephBreadcrumbs",
|
|
266
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/insights",
|
|
267
|
+
titles: ["Project", "Ceph", "View Cluster", "Insights"],
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
getter: "getCephBreadcrumbs",
|
|
271
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/logs",
|
|
272
|
+
titles: ["Project", "Ceph", "View Cluster", "Logs"],
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
getter: "getCephBreadcrumbs",
|
|
276
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/metrics",
|
|
277
|
+
titles: ["Project", "Ceph", "View Cluster", "Metrics"],
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
getter: "getCephBreadcrumbs",
|
|
281
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/osds",
|
|
282
|
+
titles: ["Project", "Ceph", "View Cluster", "OSDs"],
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
getter: "getCephBreadcrumbs",
|
|
286
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/osds/:subModelId",
|
|
287
|
+
titles: ["Project", "Ceph", "View Cluster", "OSDs", "OSD Detail"],
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
getter: "getCephBreadcrumbs",
|
|
291
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/owners",
|
|
292
|
+
titles: ["Project", "Ceph", "View Cluster", "Owners"],
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
getter: "getCephBreadcrumbs",
|
|
296
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/pools",
|
|
297
|
+
titles: ["Project", "Ceph", "View Cluster", "Pools"],
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
getter: "getCephBreadcrumbs",
|
|
301
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/pools/:subModelId",
|
|
302
|
+
titles: ["Project", "Ceph", "View Cluster", "Pools", "Pool Detail"],
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
getter: "getCephBreadcrumbs",
|
|
306
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/scheduled-maintenance",
|
|
307
|
+
titles: ["Project", "Ceph", "View Cluster", "Scheduled Maintenance"],
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
getter: "getCephBreadcrumbs",
|
|
311
|
+
pagePattern: "/dashboard/:projectId/ceph/:id/settings",
|
|
312
|
+
titles: ["Project", "Ceph", "View Cluster", "Settings"],
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
getter: "getCephBreadcrumbs",
|
|
316
|
+
pagePattern: "/dashboard/:projectId/ceph/documentation",
|
|
317
|
+
titles: ["Project", "Ceph", "Documentation"],
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
getter: "getCephBreadcrumbs",
|
|
321
|
+
pagePattern: "/dashboard/:projectId/ceph/settings/label-rules",
|
|
322
|
+
titles: ["Project", "Ceph", "Settings", "Label Rules"],
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
getter: "getCephBreadcrumbs",
|
|
326
|
+
pagePattern: "/dashboard/:projectId/ceph/settings/owner-rules",
|
|
327
|
+
titles: ["Project", "Ceph", "Settings", "Owner Rules"],
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
getter: "getCloudBreadcrumbs",
|
|
331
|
+
pagePattern: "/dashboard/:projectId/cloud",
|
|
332
|
+
titles: ["Project", "Cloud"],
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
getter: "getCloudBreadcrumbs",
|
|
336
|
+
pagePattern: "/dashboard/:projectId/cloud/:id",
|
|
337
|
+
titles: ["Project", "Cloud", "View Resource"],
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
getter: "getCloudBreadcrumbs",
|
|
341
|
+
pagePattern: "/dashboard/:projectId/cloud/:id/delete",
|
|
342
|
+
titles: ["Project", "Cloud", "View Resource", "Delete Resource"],
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
getter: "getCloudBreadcrumbs",
|
|
346
|
+
pagePattern: "/dashboard/:projectId/cloud/:id/documentation",
|
|
347
|
+
titles: ["Project", "Cloud", "View Resource", "Documentation"],
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
getter: "getCloudBreadcrumbs",
|
|
351
|
+
pagePattern: "/dashboard/:projectId/cloud/:id/logs",
|
|
352
|
+
titles: ["Project", "Cloud", "View Resource", "Logs"],
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
getter: "getCloudBreadcrumbs",
|
|
356
|
+
pagePattern: "/dashboard/:projectId/cloud/:id/metrics",
|
|
357
|
+
titles: ["Project", "Cloud", "View Resource", "Metrics"],
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
getter: "getCloudBreadcrumbs",
|
|
361
|
+
pagePattern: "/dashboard/:projectId/cloud/:id/traces",
|
|
362
|
+
titles: ["Project", "Cloud", "View Resource", "Traces"],
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
getter: "getCodeRepositoryBreadcrumbs",
|
|
366
|
+
pagePattern: "/dashboard/:projectId/code-repository",
|
|
367
|
+
titles: ["Project", "Code Repositories"],
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
getter: "getCodeRepositoryBreadcrumbs",
|
|
371
|
+
pagePattern: "/dashboard/:projectId/code-repository/:id",
|
|
372
|
+
titles: ["Project", "Code Repositories", "View Repository"],
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
getter: "getCodeRepositoryBreadcrumbs",
|
|
376
|
+
pagePattern: "/dashboard/:projectId/code-repository/:id/delete",
|
|
377
|
+
titles: [
|
|
378
|
+
"Project",
|
|
379
|
+
"Code Repositories",
|
|
380
|
+
"View Repository",
|
|
381
|
+
"Delete Repository",
|
|
382
|
+
],
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
getter: "getCodeRepositoryBreadcrumbs",
|
|
386
|
+
pagePattern: "/dashboard/:projectId/code-repository/:id/settings",
|
|
387
|
+
titles: ["Project", "Code Repositories", "View Repository", "Settings"],
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
getter: "getDashboardBreadcrumbs",
|
|
391
|
+
pagePattern: "/dashboard/:projectId/dashboards",
|
|
392
|
+
titles: ["Project", "Dashboards"],
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
getter: "getDashboardBreadcrumbs",
|
|
396
|
+
pagePattern: "/dashboard/:projectId/dashboards/:id",
|
|
397
|
+
titles: ["Project", "Dashboards", "View Dashboard"],
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
getter: "getDashboardBreadcrumbs",
|
|
401
|
+
pagePattern: "/dashboard/:projectId/dashboards/:id/branding",
|
|
402
|
+
titles: ["Project", "Dashboards", "View Dashboard", "Branding"],
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
getter: "getDashboardBreadcrumbs",
|
|
406
|
+
pagePattern: "/dashboard/:projectId/dashboards/:id/delete",
|
|
407
|
+
titles: ["Project", "Dashboards", "View Dashboard", "Delete Dashboard"],
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
getter: "getDashboardBreadcrumbs",
|
|
411
|
+
pagePattern: "/dashboard/:projectId/dashboards/:id/overview",
|
|
412
|
+
titles: ["Project", "Dashboards", "View Dashboard", "Overview"],
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
getter: "getDashboardBreadcrumbs",
|
|
416
|
+
pagePattern: "/dashboard/:projectId/dashboards/:id/owners",
|
|
417
|
+
titles: ["Project", "Dashboards", "View Dashboard", "Owners"],
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
getter: "getDashboardBreadcrumbs",
|
|
421
|
+
pagePattern: "/dashboard/:projectId/dashboards/:id/settings",
|
|
422
|
+
titles: ["Project", "Dashboards", "View Dashboard", "Settings"],
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
getter: "getDashboardBreadcrumbs",
|
|
426
|
+
pagePattern: "/dashboard/:projectId/dashboards/settings/label-rules",
|
|
427
|
+
titles: ["Project", "Dashboards", "Settings", "Label Rules"],
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
getter: "getDashboardBreadcrumbs",
|
|
431
|
+
pagePattern: "/dashboard/:projectId/dashboards/settings/owner-rules",
|
|
432
|
+
titles: ["Project", "Dashboards", "Settings", "Owner Rules"],
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
getter: "getDockerBreadcrumbs",
|
|
436
|
+
pagePattern: "/dashboard/:projectId/docker",
|
|
437
|
+
titles: ["Project", "Docker", "Hosts"],
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
441
|
+
pagePattern: "/dashboard/:projectId/docker-swarm",
|
|
442
|
+
titles: ["Project", "DockerSwarm", "Clusters"],
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
446
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id",
|
|
447
|
+
titles: ["Project", "DockerSwarm", "View Cluster"],
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
451
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/alerts",
|
|
452
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Alerts"],
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
456
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/audit-logs",
|
|
457
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Audit Logs"],
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
461
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/configs",
|
|
462
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Configs"],
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
466
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/delete",
|
|
467
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Delete Cluster"],
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
471
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/documentation",
|
|
472
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Documentation"],
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
476
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/incidents",
|
|
477
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Incidents"],
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
481
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/insights",
|
|
482
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Insights"],
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
486
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/logs",
|
|
487
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Logs"],
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
491
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/metrics",
|
|
492
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Metrics"],
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
496
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/networks",
|
|
497
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Networks"],
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
501
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/nodes",
|
|
502
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Nodes"],
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
506
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/nodes/:subModelId",
|
|
507
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Nodes", "Node Detail"],
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
511
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/owners",
|
|
512
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Owners"],
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
516
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/scheduled-maintenance",
|
|
517
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Scheduled Maintenance"],
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
521
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/secrets",
|
|
522
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Secrets"],
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
526
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/services",
|
|
527
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Services"],
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
531
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/services/:subModelId",
|
|
532
|
+
titles: [
|
|
533
|
+
"Project",
|
|
534
|
+
"Docker Swarm",
|
|
535
|
+
"View Cluster",
|
|
536
|
+
"Services",
|
|
537
|
+
"Service Detail",
|
|
538
|
+
],
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
542
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/settings",
|
|
543
|
+
titles: ["Project", "DockerSwarm", "View Cluster", "Settings"],
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
547
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/stacks",
|
|
548
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Stacks"],
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
552
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/tasks",
|
|
553
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Tasks"],
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
557
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/tasks/:subModelId",
|
|
558
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Tasks", "Task Detail"],
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
562
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/:id/volumes",
|
|
563
|
+
titles: ["Project", "Docker Swarm", "View Cluster", "Volumes"],
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
567
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/documentation",
|
|
568
|
+
titles: ["Project", "DockerSwarm", "Documentation"],
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
572
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/settings/label-rules",
|
|
573
|
+
titles: ["Project", "DockerSwarm", "Settings", "Label Rules"],
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
getter: "getDockerSwarmBreadcrumbs",
|
|
577
|
+
pagePattern: "/dashboard/:projectId/docker-swarm/settings/owner-rules",
|
|
578
|
+
titles: ["Project", "DockerSwarm", "Settings", "Owner Rules"],
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
getter: "getDockerBreadcrumbs",
|
|
582
|
+
pagePattern: "/dashboard/:projectId/docker/:id",
|
|
583
|
+
titles: ["Project", "Docker", "View Host"],
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
getter: "getDockerBreadcrumbs",
|
|
587
|
+
pagePattern: "/dashboard/:projectId/docker/:id/alerts",
|
|
588
|
+
titles: ["Project", "Docker", "View Host", "Alerts"],
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
getter: "getDockerBreadcrumbs",
|
|
592
|
+
pagePattern: "/dashboard/:projectId/docker/:id/containers",
|
|
593
|
+
titles: ["Project", "Docker", "View Host", "Containers"],
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
getter: "getDockerBreadcrumbs",
|
|
597
|
+
pagePattern: "/dashboard/:projectId/docker/:id/delete",
|
|
598
|
+
titles: ["Project", "Docker", "View Host", "Delete Host"],
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
getter: "getDockerBreadcrumbs",
|
|
602
|
+
pagePattern: "/dashboard/:projectId/docker/:id/documentation",
|
|
603
|
+
titles: ["Project", "Docker", "View Host", "Documentation"],
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
getter: "getDockerBreadcrumbs",
|
|
607
|
+
pagePattern: "/dashboard/:projectId/docker/:id/incidents",
|
|
608
|
+
titles: ["Project", "Docker", "View Host", "Incidents"],
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
getter: "getDockerBreadcrumbs",
|
|
612
|
+
pagePattern: "/dashboard/:projectId/docker/:id/logs",
|
|
613
|
+
titles: ["Project", "Docker", "View Host", "Logs"],
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
getter: "getDockerBreadcrumbs",
|
|
617
|
+
pagePattern: "/dashboard/:projectId/docker/:id/settings",
|
|
618
|
+
titles: ["Project", "Docker", "View Host", "Settings"],
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
getter: "getDockerBreadcrumbs",
|
|
622
|
+
pagePattern: "/dashboard/:projectId/docker/documentation",
|
|
623
|
+
titles: ["Project", "Docker", "Documentation"],
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
getter: "getExceptionsBreadcrumbs",
|
|
627
|
+
pagePattern: "/dashboard/:projectId/exceptions/:id",
|
|
628
|
+
titles: ["Project", "Exceptions", "Exception Details"],
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
getter: "getExceptionsBreadcrumbs",
|
|
632
|
+
pagePattern: "/dashboard/:projectId/exceptions/archived",
|
|
633
|
+
titles: ["Project", "Exceptions", "Archived"],
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
getter: "getExceptionsBreadcrumbs",
|
|
637
|
+
pagePattern: "/dashboard/:projectId/exceptions/documentation",
|
|
638
|
+
titles: ["Project", "Exceptions", "Setup Guide"],
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
getter: "getExceptionsBreadcrumbs",
|
|
642
|
+
pagePattern: "/dashboard/:projectId/exceptions/overview",
|
|
643
|
+
titles: ["Project", "Exceptions", "Overview"],
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
getter: "getExceptionsBreadcrumbs",
|
|
647
|
+
pagePattern: "/dashboard/:projectId/exceptions/resolved",
|
|
648
|
+
titles: ["Project", "Exceptions", "Resolved"],
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
getter: "getExceptionsBreadcrumbs",
|
|
652
|
+
pagePattern: "/dashboard/:projectId/exceptions/unresolved",
|
|
653
|
+
titles: ["Project", "Exceptions", "Unresolved"],
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
getter: "getHostBreadcrumbs",
|
|
657
|
+
pagePattern: "/dashboard/:projectId/host",
|
|
658
|
+
titles: ["Project", "Hosts"],
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
getter: "getHostBreadcrumbs",
|
|
662
|
+
pagePattern: "/dashboard/:projectId/host/:id",
|
|
663
|
+
titles: ["Project", "Hosts", "View Host"],
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
getter: "getHostBreadcrumbs",
|
|
667
|
+
pagePattern: "/dashboard/:projectId/host/:id/alerts",
|
|
668
|
+
titles: ["Project", "Hosts", "View Host", "Alerts"],
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
getter: "getHostBreadcrumbs",
|
|
672
|
+
pagePattern: "/dashboard/:projectId/host/:id/delete",
|
|
673
|
+
titles: ["Project", "Hosts", "View Host", "Delete Host"],
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
getter: "getHostBreadcrumbs",
|
|
677
|
+
pagePattern: "/dashboard/:projectId/host/:id/documentation",
|
|
678
|
+
titles: ["Project", "Hosts", "View Host", "Documentation"],
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
getter: "getHostBreadcrumbs",
|
|
682
|
+
pagePattern: "/dashboard/:projectId/host/:id/incidents",
|
|
683
|
+
titles: ["Project", "Hosts", "View Host", "Incidents"],
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
getter: "getHostBreadcrumbs",
|
|
687
|
+
pagePattern: "/dashboard/:projectId/host/:id/logs",
|
|
688
|
+
titles: ["Project", "Hosts", "View Host", "Logs"],
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
getter: "getHostBreadcrumbs",
|
|
692
|
+
pagePattern: "/dashboard/:projectId/host/:id/metrics",
|
|
693
|
+
titles: ["Project", "Hosts", "View Host", "Metrics"],
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
getter: "getHostBreadcrumbs",
|
|
697
|
+
pagePattern: "/dashboard/:projectId/host/:id/owners",
|
|
698
|
+
titles: ["Project", "Hosts", "View Host", "Owners"],
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
getter: "getHostBreadcrumbs",
|
|
702
|
+
pagePattern: "/dashboard/:projectId/host/:id/processes",
|
|
703
|
+
titles: ["Project", "Hosts", "View Host", "Processes"],
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
getter: "getHostBreadcrumbs",
|
|
707
|
+
pagePattern: "/dashboard/:projectId/host/:id/processes/:subModelId",
|
|
708
|
+
titles: ["Project", "Hosts", "View Host", "Processes", "View Process"],
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
getter: "getHostBreadcrumbs",
|
|
712
|
+
pagePattern: "/dashboard/:projectId/host/:id/services",
|
|
713
|
+
titles: ["Project", "Hosts", "View Host", "Services"],
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
getter: "getHostBreadcrumbs",
|
|
717
|
+
pagePattern: "/dashboard/:projectId/host/:id/services/:subModelId",
|
|
718
|
+
titles: ["Project", "Hosts", "View Host", "Services", "View Service"],
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
getter: "getHostBreadcrumbs",
|
|
722
|
+
pagePattern: "/dashboard/:projectId/host/:id/settings",
|
|
723
|
+
titles: ["Project", "Hosts", "View Host", "Settings"],
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
getter: "getHostBreadcrumbs",
|
|
727
|
+
pagePattern: "/dashboard/:projectId/host/documentation",
|
|
728
|
+
titles: ["Project", "Hosts", "Documentation"],
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
getter: "getIncidentsBreadcrumbs",
|
|
732
|
+
pagePattern: "/dashboard/:projectId/incidents",
|
|
733
|
+
titles: ["Project", "Incidents"],
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
getter: "getIncidentsBreadcrumbs",
|
|
737
|
+
pagePattern: "/dashboard/:projectId/incidents/:id",
|
|
738
|
+
titles: ["Project", "Incidents", "View Incident"],
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
getter: "getIncidentsBreadcrumbs",
|
|
742
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/custom-fields",
|
|
743
|
+
titles: ["Project", "Incidents", "View Incident", "Custom Fields"],
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
getter: "getIncidentsBreadcrumbs",
|
|
747
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/delete",
|
|
748
|
+
titles: ["Project", "Incidents", "View Incident", "Delete Incident"],
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
getter: "getIncidentsBreadcrumbs",
|
|
752
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/description",
|
|
753
|
+
titles: ["Project", "Incidents", "View Incident", "Description"],
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
getter: "getIncidentsBreadcrumbs",
|
|
757
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/internal-notes",
|
|
758
|
+
titles: ["Project", "Incidents", "View Incident", "Private Notes"],
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
getter: "getIncidentsBreadcrumbs",
|
|
762
|
+
pagePattern:
|
|
763
|
+
"/dashboard/:projectId/incidents/:id/on-call-policy-execution-logs",
|
|
764
|
+
titles: ["Project", "Incidents", "View Incident", "On Call Executions"],
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
getter: "getIncidentsBreadcrumbs",
|
|
768
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/owners",
|
|
769
|
+
titles: ["Project", "Incidents", "View Incident", "Owners"],
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
getter: "getIncidentsBreadcrumbs",
|
|
773
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/postmortem",
|
|
774
|
+
titles: ["Project", "Incidents", "View Incident", "Postmortem"],
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
getter: "getIncidentsBreadcrumbs",
|
|
778
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/public-notes",
|
|
779
|
+
titles: ["Project", "Incidents", "View Incident", "Public Notes"],
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
getter: "getIncidentsBreadcrumbs",
|
|
783
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/remediation",
|
|
784
|
+
titles: ["Project", "Incidents", "View Incident", "Remediation"],
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
getter: "getIncidentsBreadcrumbs",
|
|
788
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/root-cause",
|
|
789
|
+
titles: ["Project", "Incidents", "View Incident", "Root Cause"],
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
getter: "getIncidentsBreadcrumbs",
|
|
793
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/settings",
|
|
794
|
+
titles: ["Project", "Incidents", "View Incident", "Settings"],
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
getter: "getIncidentsBreadcrumbs",
|
|
798
|
+
pagePattern: "/dashboard/:projectId/incidents/:id/state-timeline",
|
|
799
|
+
titles: ["Project", "Incidents", "View Incident", "State Timeline"],
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
getter: "getIncidentsBreadcrumbs",
|
|
803
|
+
pagePattern: "/dashboard/:projectId/incidents/create",
|
|
804
|
+
titles: ["Project", "Incidents", "Declare New Incident"],
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
getter: "getIncidentsBreadcrumbs",
|
|
808
|
+
pagePattern: "/dashboard/:projectId/incidents/settings/custom-fields",
|
|
809
|
+
titles: ["Project", "Incidents", "Settings", "Custom Fields"],
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
getter: "getIncidentsBreadcrumbs",
|
|
813
|
+
pagePattern: "/dashboard/:projectId/incidents/settings/note-templates",
|
|
814
|
+
titles: ["Project", "Incidents", "Settings", "Note Templates"],
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
getter: "getIncidentsBreadcrumbs",
|
|
818
|
+
pagePattern: "/dashboard/:projectId/incidents/settings/note-templates/:id",
|
|
819
|
+
titles: [
|
|
820
|
+
"Project",
|
|
821
|
+
"Incidents",
|
|
822
|
+
"Settings",
|
|
823
|
+
"Note Templates",
|
|
824
|
+
"View Template",
|
|
825
|
+
],
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
getter: "getIncidentsBreadcrumbs",
|
|
829
|
+
pagePattern:
|
|
830
|
+
"/dashboard/:projectId/incidents/settings/postmortem-templates",
|
|
831
|
+
titles: ["Project", "Incidents", "Settings", "Postmortem Templates"],
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
getter: "getIncidentsBreadcrumbs",
|
|
835
|
+
pagePattern:
|
|
836
|
+
"/dashboard/:projectId/incidents/settings/postmortem-templates/:id",
|
|
837
|
+
titles: [
|
|
838
|
+
"Project",
|
|
839
|
+
"Incidents",
|
|
840
|
+
"Settings",
|
|
841
|
+
"Postmortem Templates",
|
|
842
|
+
"View Template",
|
|
843
|
+
],
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
getter: "getIncidentsBreadcrumbs",
|
|
847
|
+
pagePattern: "/dashboard/:projectId/incidents/settings/severity",
|
|
848
|
+
titles: ["Project", "Incidents", "Settings", "Incident Severity"],
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
getter: "getIncidentsBreadcrumbs",
|
|
852
|
+
pagePattern: "/dashboard/:projectId/incidents/settings/state",
|
|
853
|
+
titles: ["Project", "Incidents", "Settings", "Incident State"],
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
getter: "getIncidentsBreadcrumbs",
|
|
857
|
+
pagePattern: "/dashboard/:projectId/incidents/settings/templates",
|
|
858
|
+
titles: ["Project", "Incidents", "Settings", "Incident Templates"],
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
getter: "getIncidentsBreadcrumbs",
|
|
862
|
+
pagePattern: "/dashboard/:projectId/incidents/settings/templates/:id",
|
|
863
|
+
titles: [
|
|
864
|
+
"Project",
|
|
865
|
+
"Incidents",
|
|
866
|
+
"Settings",
|
|
867
|
+
"Incident Templates",
|
|
868
|
+
"View Template",
|
|
869
|
+
],
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
getter: "getIncidentsBreadcrumbs",
|
|
873
|
+
pagePattern: "/dashboard/:projectId/incidents/unresolved",
|
|
874
|
+
titles: ["Project", "Incidents", "Active Incidents"],
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
getter: "getIncidentsBreadcrumbs",
|
|
878
|
+
pagePattern:
|
|
879
|
+
"/dashboard/:projectId/incidents/workspace-connection-microsoft-teams",
|
|
880
|
+
titles: ["Project", "Incidents", "Workspace Microsoft Teams Connection"],
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
getter: "getIncidentsBreadcrumbs",
|
|
884
|
+
pagePattern: "/dashboard/:projectId/incidents/workspace-connection-slack",
|
|
885
|
+
titles: ["Project", "Incidents", "Workspace Slack Connection"],
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
getter: "getIoTBreadcrumbs",
|
|
889
|
+
pagePattern: "/dashboard/:projectId/iot",
|
|
890
|
+
titles: ["Project", "IoT", "Fleets"],
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
getter: "getIoTBreadcrumbs",
|
|
894
|
+
pagePattern: "/dashboard/:projectId/iot/:id",
|
|
895
|
+
titles: ["Project", "IoT", "View Fleet"],
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
getter: "getIoTBreadcrumbs",
|
|
899
|
+
pagePattern: "/dashboard/:projectId/iot/:id/alerts",
|
|
900
|
+
titles: ["Project", "IoT", "View Fleet", "Alerts"],
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
getter: "getIoTBreadcrumbs",
|
|
904
|
+
pagePattern: "/dashboard/:projectId/iot/:id/audit-logs",
|
|
905
|
+
titles: ["Project", "IoT", "View Fleet", "Audit Logs"],
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
getter: "getIoTBreadcrumbs",
|
|
909
|
+
pagePattern: "/dashboard/:projectId/iot/:id/delete",
|
|
910
|
+
titles: ["Project", "IoT", "View Fleet", "Delete Fleet"],
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
getter: "getIoTBreadcrumbs",
|
|
914
|
+
pagePattern: "/dashboard/:projectId/iot/:id/device-registry",
|
|
915
|
+
titles: ["Project", "IoT", "View Fleet", "Device Registry"],
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
getter: "getIoTBreadcrumbs",
|
|
919
|
+
pagePattern: "/dashboard/:projectId/iot/:id/devices",
|
|
920
|
+
titles: ["Project", "IoT", "View Fleet", "Devices"],
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
getter: "getIoTBreadcrumbs",
|
|
924
|
+
pagePattern: "/dashboard/:projectId/iot/:id/devices/:subModelId",
|
|
925
|
+
titles: ["Project", "IoT", "View Fleet", "Devices", "Device Detail"],
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
getter: "getIoTBreadcrumbs",
|
|
929
|
+
pagePattern: "/dashboard/:projectId/iot/:id/documentation",
|
|
930
|
+
titles: ["Project", "IoT", "View Fleet", "Documentation"],
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
getter: "getIoTBreadcrumbs",
|
|
934
|
+
pagePattern: "/dashboard/:projectId/iot/:id/incidents",
|
|
935
|
+
titles: ["Project", "IoT", "View Fleet", "Incidents"],
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
getter: "getIoTBreadcrumbs",
|
|
939
|
+
pagePattern: "/dashboard/:projectId/iot/:id/logs",
|
|
940
|
+
titles: ["Project", "IoT", "View Fleet", "Logs"],
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
getter: "getIoTBreadcrumbs",
|
|
944
|
+
pagePattern: "/dashboard/:projectId/iot/:id/metrics",
|
|
945
|
+
titles: ["Project", "IoT", "View Fleet", "Metrics"],
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
getter: "getIoTBreadcrumbs",
|
|
949
|
+
pagePattern: "/dashboard/:projectId/iot/:id/owners",
|
|
950
|
+
titles: ["Project", "IoT", "View Fleet", "Owners"],
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
getter: "getIoTBreadcrumbs",
|
|
954
|
+
pagePattern: "/dashboard/:projectId/iot/:id/scheduled-maintenance",
|
|
955
|
+
titles: ["Project", "IoT", "View Fleet", "Scheduled Maintenance"],
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
getter: "getIoTBreadcrumbs",
|
|
959
|
+
pagePattern: "/dashboard/:projectId/iot/:id/settings",
|
|
960
|
+
titles: ["Project", "IoT", "View Fleet", "Settings"],
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
getter: "getIoTBreadcrumbs",
|
|
964
|
+
pagePattern: "/dashboard/:projectId/iot/documentation",
|
|
965
|
+
titles: ["Project", "IoT", "Documentation"],
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
getter: "getIoTBreadcrumbs",
|
|
969
|
+
pagePattern: "/dashboard/:projectId/iot/settings/label-rules",
|
|
970
|
+
titles: ["Project", "IoT", "Settings", "Label Rules"],
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
getter: "getIoTBreadcrumbs",
|
|
974
|
+
pagePattern: "/dashboard/:projectId/iot/settings/owner-rules",
|
|
975
|
+
titles: ["Project", "IoT", "Settings", "Owner Rules"],
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
getter: "getKubernetesBreadcrumbs",
|
|
979
|
+
pagePattern: "/dashboard/:projectId/kubernetes",
|
|
980
|
+
titles: ["Project", "Kubernetes", "Clusters"],
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
getter: "getKubernetesBreadcrumbs",
|
|
984
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id",
|
|
985
|
+
titles: ["Project", "Kubernetes", "View Cluster"],
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
getter: "getKubernetesBreadcrumbs",
|
|
989
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/alerts",
|
|
990
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Alerts"],
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
getter: "getKubernetesBreadcrumbs",
|
|
994
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/containers",
|
|
995
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Containers"],
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
getter: "getKubernetesBreadcrumbs",
|
|
999
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/containers/:subModelId",
|
|
1000
|
+
titles: [
|
|
1001
|
+
"Project",
|
|
1002
|
+
"Kubernetes",
|
|
1003
|
+
"View Cluster",
|
|
1004
|
+
"Containers",
|
|
1005
|
+
"Container Detail",
|
|
1006
|
+
],
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1010
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/control-plane",
|
|
1011
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Control Plane"],
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1015
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/cronjobs",
|
|
1016
|
+
titles: ["Project", "Kubernetes", "View Cluster", "CronJobs"],
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1020
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/cronjobs/:subModelId",
|
|
1021
|
+
titles: [
|
|
1022
|
+
"Project",
|
|
1023
|
+
"Kubernetes",
|
|
1024
|
+
"View Cluster",
|
|
1025
|
+
"CronJobs",
|
|
1026
|
+
"CronJob Detail",
|
|
1027
|
+
],
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1031
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/daemonsets",
|
|
1032
|
+
titles: ["Project", "Kubernetes", "View Cluster", "DaemonSets"],
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1036
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/daemonsets/:subModelId",
|
|
1037
|
+
titles: [
|
|
1038
|
+
"Project",
|
|
1039
|
+
"Kubernetes",
|
|
1040
|
+
"View Cluster",
|
|
1041
|
+
"DaemonSets",
|
|
1042
|
+
"DaemonSet Detail",
|
|
1043
|
+
],
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1047
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/delete",
|
|
1048
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Delete Cluster"],
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1052
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/deployments",
|
|
1053
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Deployments"],
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1057
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/deployments/:subModelId",
|
|
1058
|
+
titles: [
|
|
1059
|
+
"Project",
|
|
1060
|
+
"Kubernetes",
|
|
1061
|
+
"View Cluster",
|
|
1062
|
+
"Deployments",
|
|
1063
|
+
"Deployment Detail",
|
|
1064
|
+
],
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1068
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/documentation",
|
|
1069
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Documentation"],
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1073
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/events",
|
|
1074
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Events"],
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1078
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/hpas",
|
|
1079
|
+
titles: ["Project", "Kubernetes", "View Cluster", "HPAs"],
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1083
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/hpas/:subModelId",
|
|
1084
|
+
titles: ["Project", "Kubernetes", "View Cluster", "HPAs", "HPA Detail"],
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1088
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/incidents",
|
|
1089
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Incidents"],
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1093
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/jobs",
|
|
1094
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Jobs"],
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1098
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/jobs/:subModelId",
|
|
1099
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Jobs", "Job Detail"],
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1103
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/namespaces",
|
|
1104
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Namespaces"],
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1108
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/namespaces/:subModelId",
|
|
1109
|
+
titles: [
|
|
1110
|
+
"Project",
|
|
1111
|
+
"Kubernetes",
|
|
1112
|
+
"View Cluster",
|
|
1113
|
+
"Namespaces",
|
|
1114
|
+
"Namespace Detail",
|
|
1115
|
+
],
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1119
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/nodes",
|
|
1120
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Nodes"],
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1124
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/nodes/:subModelId",
|
|
1125
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Nodes", "Node Detail"],
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1129
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/pods",
|
|
1130
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Pods"],
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1134
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/pods/:subModelId",
|
|
1135
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Pods", "Pod Detail"],
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1139
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/service-mesh",
|
|
1140
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Service Mesh"],
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1144
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/settings",
|
|
1145
|
+
titles: ["Project", "Kubernetes", "View Cluster", "Settings"],
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1149
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/statefulsets",
|
|
1150
|
+
titles: ["Project", "Kubernetes", "View Cluster", "StatefulSets"],
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1154
|
+
pagePattern:
|
|
1155
|
+
"/dashboard/:projectId/kubernetes/:id/statefulsets/:subModelId",
|
|
1156
|
+
titles: [
|
|
1157
|
+
"Project",
|
|
1158
|
+
"Kubernetes",
|
|
1159
|
+
"View Cluster",
|
|
1160
|
+
"StatefulSets",
|
|
1161
|
+
"StatefulSet Detail",
|
|
1162
|
+
],
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1166
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/vpas",
|
|
1167
|
+
titles: ["Project", "Kubernetes", "View Cluster", "VPAs"],
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1171
|
+
pagePattern: "/dashboard/:projectId/kubernetes/:id/vpas/:subModelId",
|
|
1172
|
+
titles: ["Project", "Kubernetes", "View Cluster", "VPAs", "VPA Detail"],
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
getter: "getKubernetesBreadcrumbs",
|
|
1176
|
+
pagePattern: "/dashboard/:projectId/kubernetes/documentation",
|
|
1177
|
+
titles: ["Project", "Kubernetes", "Documentation"],
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
getter: "getLlmBreadcrumbs",
|
|
1181
|
+
pagePattern: "/dashboard/:projectId/llm/calls",
|
|
1182
|
+
titles: ["Project", "AI / LLM", "LLM Calls"],
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
getter: "getLlmBreadcrumbs",
|
|
1186
|
+
pagePattern: "/dashboard/:projectId/llm/documentation",
|
|
1187
|
+
titles: ["Project", "AI / LLM", "Setup Guide"],
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
getter: "getLlmBreadcrumbs",
|
|
1191
|
+
pagePattern: "/dashboard/:projectId/llm/overview",
|
|
1192
|
+
titles: ["Project", "AI / LLM", "Overview"],
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
getter: "getLogsBreadcrumbs",
|
|
1196
|
+
pagePattern: "/dashboard/:projectId/logs",
|
|
1197
|
+
titles: ["Project", "Logs"],
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
getter: "getLogsBreadcrumbs",
|
|
1201
|
+
pagePattern: "/dashboard/:projectId/logs/documentation",
|
|
1202
|
+
titles: ["Project", "Logs", "Setup Guide"],
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
getter: "getLogsBreadcrumbs",
|
|
1206
|
+
pagePattern: "/dashboard/:projectId/logs/insights",
|
|
1207
|
+
titles: ["Project", "Logs", "Insights"],
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
getter: "getLogsBreadcrumbs",
|
|
1211
|
+
pagePattern: "/dashboard/:projectId/logs/settings/drop-filters",
|
|
1212
|
+
titles: ["Project", "Logs", "Settings", "Drop Filters"],
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
getter: "getLogsBreadcrumbs",
|
|
1216
|
+
pagePattern: "/dashboard/:projectId/logs/settings/drop-filters/:id",
|
|
1217
|
+
titles: ["Project", "Logs", "Settings", "Drop Filters", "View"],
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
getter: "getLogsBreadcrumbs",
|
|
1221
|
+
pagePattern: "/dashboard/:projectId/logs/settings/pipelines",
|
|
1222
|
+
titles: ["Project", "Logs", "Settings", "Pipelines"],
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
getter: "getLogsBreadcrumbs",
|
|
1226
|
+
pagePattern: "/dashboard/:projectId/logs/settings/pipelines/:id",
|
|
1227
|
+
titles: ["Project", "Logs", "Settings", "Pipelines", "View"],
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
getter: "getLogsBreadcrumbs",
|
|
1231
|
+
pagePattern: "/dashboard/:projectId/logs/settings/scrub-rules",
|
|
1232
|
+
titles: ["Project", "Logs", "Settings", "Scrub Rules"],
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
getter: "getMetricsBreadcrumbs",
|
|
1236
|
+
pagePattern: "/dashboard/:projectId/metrics",
|
|
1237
|
+
titles: ["Project", "Metrics"],
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
getter: "getMetricsBreadcrumbs",
|
|
1241
|
+
pagePattern: "/dashboard/:projectId/metrics/documentation",
|
|
1242
|
+
titles: ["Project", "Metrics", "Setup Guide"],
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
getter: "getMetricsBreadcrumbs",
|
|
1246
|
+
pagePattern: "/dashboard/:projectId/metrics/insights",
|
|
1247
|
+
titles: ["Project", "Metrics", "Insights"],
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
getter: "getMetricsBreadcrumbs",
|
|
1251
|
+
pagePattern: "/dashboard/:projectId/metrics/settings/pipeline-rules",
|
|
1252
|
+
titles: ["Project", "Metrics", "Settings", "Pipeline Rules"],
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
getter: "getMetricsBreadcrumbs",
|
|
1256
|
+
pagePattern: "/dashboard/:projectId/metrics/settings/recording-rules",
|
|
1257
|
+
titles: ["Project", "Metrics", "Settings", "Recording Rules"],
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
getter: "getMetricsBreadcrumbs",
|
|
1261
|
+
pagePattern: "/dashboard/:projectId/metrics/view",
|
|
1262
|
+
titles: ["Project", "Metrics", "Metric Explorer"],
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
getter: "getMonitorGroupBreadcrumbs",
|
|
1266
|
+
pagePattern: "/dashboard/:projectId/monitor-groups/:id",
|
|
1267
|
+
titles: ["Project", "Monitor Groups", "View Monitor Group"],
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
getter: "getMonitorGroupBreadcrumbs",
|
|
1271
|
+
pagePattern: "/dashboard/:projectId/monitor-groups/:id/delete",
|
|
1272
|
+
titles: [
|
|
1273
|
+
"Project",
|
|
1274
|
+
"Monitor Groups",
|
|
1275
|
+
"View Monitor Group",
|
|
1276
|
+
"Delete Monitor Group",
|
|
1277
|
+
],
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
getter: "getMonitorGroupBreadcrumbs",
|
|
1281
|
+
pagePattern: "/dashboard/:projectId/monitor-groups/:id/incidents",
|
|
1282
|
+
titles: ["Project", "Monitor Groups", "View Monitor Group", "Incidents"],
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
getter: "getMonitorGroupBreadcrumbs",
|
|
1286
|
+
pagePattern: "/dashboard/:projectId/monitor-groups/:id/monitors",
|
|
1287
|
+
titles: ["Project", "Monitor Groups", "View Monitor Group", "Monitors"],
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
getter: "getMonitorGroupBreadcrumbs",
|
|
1291
|
+
pagePattern: "/dashboard/:projectId/monitor-groups/:id/owners",
|
|
1292
|
+
titles: ["Project", "Monitor Groups", "View Monitor Group", "Owners"],
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
getter: "getMonitorBreadcrumbs",
|
|
1296
|
+
pagePattern: "/dashboard/:projectId/monitors",
|
|
1297
|
+
titles: ["Project", "Monitors"],
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
getter: "getMonitorBreadcrumbs",
|
|
1301
|
+
pagePattern: "/dashboard/:projectId/monitors/:id",
|
|
1302
|
+
titles: ["Project", "Monitors", "View Monitor"],
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
getter: "getMonitorBreadcrumbs",
|
|
1306
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/criteria",
|
|
1307
|
+
titles: ["Project", "Monitors", "View Monitor", "Criteria"],
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
getter: "getMonitorBreadcrumbs",
|
|
1311
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/custom-fields",
|
|
1312
|
+
titles: ["Project", "Monitors", "View Monitor", "Custom Fields"],
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
getter: "getMonitorBreadcrumbs",
|
|
1316
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/delete",
|
|
1317
|
+
titles: ["Project", "Monitors", "View Monitor", "Delete Monitor"],
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
getter: "getMonitorBreadcrumbs",
|
|
1321
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/incidents",
|
|
1322
|
+
titles: ["Project", "Monitors", "View Monitor", "Incidents"],
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
getter: "getMonitorBreadcrumbs",
|
|
1326
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/interval",
|
|
1327
|
+
titles: ["Project", "Monitors", "View Monitor", "Interval"],
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
getter: "getMonitorBreadcrumbs",
|
|
1331
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/logs",
|
|
1332
|
+
titles: ["Project", "Monitors", "View Monitor", "Monitoring Logs"],
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
getter: "getMonitorBreadcrumbs",
|
|
1336
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/metrics",
|
|
1337
|
+
titles: ["Project", "Monitors", "View Monitor", "Metrics"],
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
getter: "getMonitorBreadcrumbs",
|
|
1341
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/notification-logs",
|
|
1342
|
+
titles: ["Project", "Monitors", "View Monitor", "Notification Logs"],
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
getter: "getMonitorBreadcrumbs",
|
|
1346
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/owners",
|
|
1347
|
+
titles: ["Project", "Monitors", "View Monitor", "Owners"],
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
getter: "getMonitorBreadcrumbs",
|
|
1351
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/probes",
|
|
1352
|
+
titles: ["Project", "Monitors", "View Monitor", "Probes"],
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
getter: "getMonitorBreadcrumbs",
|
|
1356
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/settings",
|
|
1357
|
+
titles: ["Project", "Monitors", "View Monitor", "Settings"],
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
getter: "getMonitorBreadcrumbs",
|
|
1361
|
+
pagePattern: "/dashboard/:projectId/monitors/:id/status-timeline",
|
|
1362
|
+
titles: ["Project", "Monitors", "View Monitor", "Status Timeline"],
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
getter: "getMonitorBreadcrumbs",
|
|
1366
|
+
pagePattern: "/dashboard/:projectId/monitors/create",
|
|
1367
|
+
titles: ["Project", "Monitors", "Create New Monitor"],
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
getter: "getMonitorBreadcrumbs",
|
|
1371
|
+
pagePattern: "/dashboard/:projectId/monitors/disabled",
|
|
1372
|
+
titles: ["Project", "Monitors", "Disabled"],
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
getter: "getMonitorBreadcrumbs",
|
|
1376
|
+
pagePattern: "/dashboard/:projectId/monitors/inoperational",
|
|
1377
|
+
titles: ["Project", "Monitors", "Inoperational"],
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
getter: "getMonitorBreadcrumbs",
|
|
1381
|
+
pagePattern: "/dashboard/:projectId/monitors/settings/custom-fields",
|
|
1382
|
+
titles: ["Project", "Monitors", "Settings", "Custom Fields"],
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
getter: "getMonitorBreadcrumbs",
|
|
1386
|
+
pagePattern: "/dashboard/:projectId/monitors/settings/probes",
|
|
1387
|
+
titles: ["Project", "Monitors", "Settings", "Probes"],
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
getter: "getMonitorBreadcrumbs",
|
|
1391
|
+
pagePattern: "/dashboard/:projectId/monitors/settings/probes/:id",
|
|
1392
|
+
titles: ["Project", "Monitors", "Settings", "Probes", "View Probe"],
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
getter: "getMonitorBreadcrumbs",
|
|
1396
|
+
pagePattern: "/dashboard/:projectId/monitors/settings/secrets",
|
|
1397
|
+
titles: ["Project", "Monitors", "Settings", "Secrets"],
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
getter: "getMonitorBreadcrumbs",
|
|
1401
|
+
pagePattern: "/dashboard/:projectId/monitors/settings/status",
|
|
1402
|
+
titles: ["Project", "Monitors", "Settings", "Monitor Status"],
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
getter: "getMonitorBreadcrumbs",
|
|
1406
|
+
pagePattern:
|
|
1407
|
+
"/dashboard/:projectId/monitors/workspace-connection-microsoft-teams",
|
|
1408
|
+
titles: ["Project", "Monitors", "Microsoft Teams"],
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
getter: "getMonitorBreadcrumbs",
|
|
1412
|
+
pagePattern: "/dashboard/:projectId/monitors/workspace-connection-slack",
|
|
1413
|
+
titles: ["Project", "Monitors", "Slack"],
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1417
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/execution-logs",
|
|
1418
|
+
titles: ["Project", "On-Call Duty", "Execution Logs"],
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1422
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/execution-logs/:id",
|
|
1423
|
+
titles: ["Project", "On-Call Duty", "Execution Logs", "Timeline"],
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1427
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/incoming-call-policies",
|
|
1428
|
+
titles: ["Project", "On-Call Duty", "Incoming Call Policies"],
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1432
|
+
pagePattern:
|
|
1433
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id",
|
|
1434
|
+
titles: [
|
|
1435
|
+
"Project",
|
|
1436
|
+
"On-Call Duty",
|
|
1437
|
+
"Incoming Call Policies",
|
|
1438
|
+
"View Policy",
|
|
1439
|
+
],
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1443
|
+
pagePattern:
|
|
1444
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id/delete",
|
|
1445
|
+
titles: [
|
|
1446
|
+
"Project",
|
|
1447
|
+
"On-Call Duty",
|
|
1448
|
+
"Incoming Call Policies",
|
|
1449
|
+
"View Policy",
|
|
1450
|
+
"Delete",
|
|
1451
|
+
],
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1455
|
+
pagePattern:
|
|
1456
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id/docs",
|
|
1457
|
+
titles: [
|
|
1458
|
+
"Project",
|
|
1459
|
+
"On-Call Duty",
|
|
1460
|
+
"Incoming Call Policies",
|
|
1461
|
+
"View Policy",
|
|
1462
|
+
"Documentation",
|
|
1463
|
+
],
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1467
|
+
pagePattern:
|
|
1468
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id/escalation",
|
|
1469
|
+
titles: [
|
|
1470
|
+
"Project",
|
|
1471
|
+
"On-Call Duty",
|
|
1472
|
+
"Incoming Call Policies",
|
|
1473
|
+
"View Policy",
|
|
1474
|
+
"Escalation Rules",
|
|
1475
|
+
],
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1479
|
+
pagePattern:
|
|
1480
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id/logs",
|
|
1481
|
+
titles: [
|
|
1482
|
+
"Project",
|
|
1483
|
+
"On-Call Duty",
|
|
1484
|
+
"Incoming Call Policies",
|
|
1485
|
+
"View Policy",
|
|
1486
|
+
"Call Logs",
|
|
1487
|
+
],
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1491
|
+
pagePattern:
|
|
1492
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id/logs/:subModelId",
|
|
1493
|
+
titles: [
|
|
1494
|
+
"Project",
|
|
1495
|
+
"On-Call Duty",
|
|
1496
|
+
"Incoming Call Policies",
|
|
1497
|
+
"View Policy",
|
|
1498
|
+
"Call Logs",
|
|
1499
|
+
"View Timeline",
|
|
1500
|
+
],
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1504
|
+
pagePattern:
|
|
1505
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id/owners",
|
|
1506
|
+
titles: [
|
|
1507
|
+
"Project",
|
|
1508
|
+
"On-Call Duty",
|
|
1509
|
+
"Incoming Call Policies",
|
|
1510
|
+
"View Policy",
|
|
1511
|
+
"Owners",
|
|
1512
|
+
],
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
getter: "getIncomingCallPolicyBreadcrumbs",
|
|
1516
|
+
pagePattern:
|
|
1517
|
+
"/dashboard/:projectId/on-call-duty/incoming-call-policies/:id/settings",
|
|
1518
|
+
titles: [
|
|
1519
|
+
"Project",
|
|
1520
|
+
"On-Call Duty",
|
|
1521
|
+
"Incoming Call Policies",
|
|
1522
|
+
"View Policy",
|
|
1523
|
+
"Settings",
|
|
1524
|
+
],
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1528
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/policies",
|
|
1529
|
+
titles: ["Project", "On-Call Duty", "Policies"],
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1533
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/policies/:id",
|
|
1534
|
+
titles: ["Project", "On-Call Duty", "View On-Call Policy"],
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1538
|
+
pagePattern:
|
|
1539
|
+
"/dashboard/:projectId/on-call-duty/policies/:id/custom-fields",
|
|
1540
|
+
titles: ["Project", "On-Call Duty", "View On-Call Policy", "Custom Fields"],
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1544
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/policies/:id/delete",
|
|
1545
|
+
titles: [
|
|
1546
|
+
"Project",
|
|
1547
|
+
"On-Call Duty",
|
|
1548
|
+
"View On-Call Policy",
|
|
1549
|
+
"Delete On-Call Policy",
|
|
1550
|
+
],
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1554
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/policies/:id/escalation",
|
|
1555
|
+
titles: [
|
|
1556
|
+
"Project",
|
|
1557
|
+
"On-Call Duty",
|
|
1558
|
+
"View On-Call Policy",
|
|
1559
|
+
"Escalation Rules",
|
|
1560
|
+
],
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1564
|
+
pagePattern:
|
|
1565
|
+
"/dashboard/:projectId/on-call-duty/policies/:id/execution-logs",
|
|
1566
|
+
titles: ["Project", "On-Call Duty", "View On-Call Policy", "Logs"],
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1570
|
+
pagePattern:
|
|
1571
|
+
"/dashboard/:projectId/on-call-duty/policies/:id/execution-logs/:subModelId",
|
|
1572
|
+
titles: ["Project", "On-Call Duty", "View On-Call Policy", "Timeline"],
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1576
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/policies/:id/owners",
|
|
1577
|
+
titles: ["Project", "On-Call Duty", "View On-Call Policy", "Owners"],
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1581
|
+
pagePattern:
|
|
1582
|
+
"/dashboard/:projectId/on-call-duty/policies/:id/user-overrides",
|
|
1583
|
+
titles: [
|
|
1584
|
+
"Project",
|
|
1585
|
+
"On-Call Duty",
|
|
1586
|
+
"View On-Call Policy",
|
|
1587
|
+
"User Overrides",
|
|
1588
|
+
],
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1592
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/schedules",
|
|
1593
|
+
titles: ["Project", "On-Call Duty", "Schedules"],
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1597
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/schedules/:id",
|
|
1598
|
+
titles: ["Project", "On-Call Duty", "View On-Call Schedule"],
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1602
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/schedules/:id/delete",
|
|
1603
|
+
titles: [
|
|
1604
|
+
"Project",
|
|
1605
|
+
"On-Call Duty",
|
|
1606
|
+
"View On-Call Schedule",
|
|
1607
|
+
"Delete On-Call Schedule",
|
|
1608
|
+
],
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1612
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/schedules/:id/layers",
|
|
1613
|
+
titles: ["Project", "On-Call Duty", "View On-Call Schedule", "Layers"],
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1617
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/schedules/:id/owners",
|
|
1618
|
+
titles: ["Project", "On-Call Duty", "View On-Call Schedule", "Owners"],
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1622
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/schedules/:id/settings",
|
|
1623
|
+
titles: ["Project", "On-Call Duty", "View On-Call Schedule", "Settings"],
|
|
1624
|
+
},
|
|
1625
|
+
{
|
|
1626
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1627
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/settings/custom-fields",
|
|
1628
|
+
titles: ["Project", "On-Call Duty", "Settings", "Custom Fields"],
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1632
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/settings/label-rules",
|
|
1633
|
+
titles: ["Project", "On-Call Duty", "Settings", "Label Rules"],
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1637
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/settings/owner-rules",
|
|
1638
|
+
titles: ["Project", "On-Call Duty", "Settings", "Owner Rules"],
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1642
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/user-overrides",
|
|
1643
|
+
titles: ["Project", "On-Call Duty", "User Overrides"],
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1647
|
+
pagePattern: "/dashboard/:projectId/on-call-duty/user-time-logs",
|
|
1648
|
+
titles: ["Project", "On-Call Duty", "User Time Logs"],
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1652
|
+
pagePattern:
|
|
1653
|
+
"/dashboard/:projectId/on-call-duty/workspace-connection-microsoft-teams",
|
|
1654
|
+
titles: ["Project", "On-Call Duty", "Microsoft Teams"],
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
getter: "getOnCallDutyBreadcrumbs",
|
|
1658
|
+
pagePattern:
|
|
1659
|
+
"/dashboard/:projectId/on-call-duty/workspace-connection-slack",
|
|
1660
|
+
titles: ["Project", "On-Call Duty", "Slack"],
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
getter: "getPodmanBreadcrumbs",
|
|
1664
|
+
pagePattern: "/dashboard/:projectId/podman",
|
|
1665
|
+
titles: ["Project", "Podman", "Hosts"],
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
getter: "getPodmanBreadcrumbs",
|
|
1669
|
+
pagePattern: "/dashboard/:projectId/podman/:id",
|
|
1670
|
+
titles: ["Project", "Podman", "View Host"],
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
getter: "getPodmanBreadcrumbs",
|
|
1674
|
+
pagePattern: "/dashboard/:projectId/podman/:id/alerts",
|
|
1675
|
+
titles: ["Project", "Podman", "View Host", "Alerts"],
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
getter: "getPodmanBreadcrumbs",
|
|
1679
|
+
pagePattern: "/dashboard/:projectId/podman/:id/containers",
|
|
1680
|
+
titles: ["Project", "Podman", "View Host", "Containers"],
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
getter: "getPodmanBreadcrumbs",
|
|
1684
|
+
pagePattern: "/dashboard/:projectId/podman/:id/delete",
|
|
1685
|
+
titles: ["Project", "Podman", "View Host", "Delete Host"],
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
getter: "getPodmanBreadcrumbs",
|
|
1689
|
+
pagePattern: "/dashboard/:projectId/podman/:id/documentation",
|
|
1690
|
+
titles: ["Project", "Podman", "View Host", "Documentation"],
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
getter: "getPodmanBreadcrumbs",
|
|
1694
|
+
pagePattern: "/dashboard/:projectId/podman/:id/incidents",
|
|
1695
|
+
titles: ["Project", "Podman", "View Host", "Incidents"],
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
getter: "getPodmanBreadcrumbs",
|
|
1699
|
+
pagePattern: "/dashboard/:projectId/podman/:id/logs",
|
|
1700
|
+
titles: ["Project", "Podman", "View Host", "Logs"],
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
getter: "getPodmanBreadcrumbs",
|
|
1704
|
+
pagePattern: "/dashboard/:projectId/podman/:id/settings",
|
|
1705
|
+
titles: ["Project", "Podman", "View Host", "Settings"],
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
getter: "getPodmanBreadcrumbs",
|
|
1709
|
+
pagePattern: "/dashboard/:projectId/podman/documentation",
|
|
1710
|
+
titles: ["Project", "Podman", "Documentation"],
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
getter: "getProfilesBreadcrumbs",
|
|
1714
|
+
pagePattern: "/dashboard/:projectId/profiles",
|
|
1715
|
+
titles: ["Project", "Profiler", "Overview"],
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
getter: "getProfilesBreadcrumbs",
|
|
1719
|
+
pagePattern: "/dashboard/:projectId/profiles/documentation",
|
|
1720
|
+
titles: ["Project", "Profiler", "Setup guide"],
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
getter: "getProfilesBreadcrumbs",
|
|
1724
|
+
pagePattern: "/dashboard/:projectId/profiles/insights",
|
|
1725
|
+
titles: ["Project", "Profiler", "All profiles"],
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
getter: "getProfilesBreadcrumbs",
|
|
1729
|
+
pagePattern: "/dashboard/:projectId/profiles/view/:id",
|
|
1730
|
+
titles: ["Project", "Profiler", "Profile"],
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1734
|
+
pagePattern: "/dashboard/:projectId/proxmox",
|
|
1735
|
+
titles: ["Project", "Proxmox", "Clusters"],
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1739
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id",
|
|
1740
|
+
titles: ["Project", "Proxmox", "View Cluster"],
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1744
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/alerts",
|
|
1745
|
+
titles: ["Project", "Proxmox", "View Cluster", "Alerts"],
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1749
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/audit-logs",
|
|
1750
|
+
titles: ["Project", "Proxmox", "View Cluster", "Audit Logs"],
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1754
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/delete",
|
|
1755
|
+
titles: ["Project", "Proxmox", "View Cluster", "Delete Cluster"],
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1759
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/documentation",
|
|
1760
|
+
titles: ["Project", "Proxmox", "View Cluster", "Documentation"],
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1764
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/guests",
|
|
1765
|
+
titles: ["Project", "Proxmox", "View Cluster", "Guests"],
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1769
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/guests/:subModelId",
|
|
1770
|
+
titles: ["Project", "Proxmox", "View Cluster", "Guests", "Guest Detail"],
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1774
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/incidents",
|
|
1775
|
+
titles: ["Project", "Proxmox", "View Cluster", "Incidents"],
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1779
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/insights",
|
|
1780
|
+
titles: ["Project", "Proxmox", "View Cluster", "Insights"],
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1784
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/logs",
|
|
1785
|
+
titles: ["Project", "Proxmox", "View Cluster", "Logs"],
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1789
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/metrics",
|
|
1790
|
+
titles: ["Project", "Proxmox", "View Cluster", "Metrics"],
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1794
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/nodes",
|
|
1795
|
+
titles: ["Project", "Proxmox", "View Cluster", "Nodes"],
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1799
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/nodes/:subModelId",
|
|
1800
|
+
titles: ["Project", "Proxmox", "View Cluster", "Nodes", "Node Detail"],
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1804
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/owners",
|
|
1805
|
+
titles: ["Project", "Proxmox", "View Cluster", "Owners"],
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1809
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/scheduled-maintenance",
|
|
1810
|
+
titles: ["Project", "Proxmox", "View Cluster", "Scheduled Maintenance"],
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1814
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/settings",
|
|
1815
|
+
titles: ["Project", "Proxmox", "View Cluster", "Settings"],
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1819
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/storage",
|
|
1820
|
+
titles: ["Project", "Proxmox", "View Cluster", "Storage"],
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1824
|
+
pagePattern: "/dashboard/:projectId/proxmox/:id/storage/:subModelId",
|
|
1825
|
+
titles: ["Project", "Proxmox", "View Cluster", "Storage", "Storage Detail"],
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1829
|
+
pagePattern: "/dashboard/:projectId/proxmox/documentation",
|
|
1830
|
+
titles: ["Project", "Proxmox", "Documentation"],
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1834
|
+
pagePattern: "/dashboard/:projectId/proxmox/settings/label-rules",
|
|
1835
|
+
titles: ["Project", "Proxmox", "Settings", "Label Rules"],
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
getter: "getProxmoxBreadcrumbs",
|
|
1839
|
+
pagePattern: "/dashboard/:projectId/proxmox/settings/owner-rules",
|
|
1840
|
+
titles: ["Project", "Proxmox", "Settings", "Owner Rules"],
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
getter: "getRumBreadcrumbs",
|
|
1844
|
+
pagePattern: "/dashboard/:projectId/rum",
|
|
1845
|
+
titles: ["Project", "Real User Monitoring"],
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
getter: "getRumBreadcrumbs",
|
|
1849
|
+
pagePattern: "/dashboard/:projectId/rum/:id",
|
|
1850
|
+
titles: ["Project", "Real User Monitoring", "View Application"],
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
getter: "getRumBreadcrumbs",
|
|
1854
|
+
pagePattern: "/dashboard/:projectId/rum/:id/delete",
|
|
1855
|
+
titles: [
|
|
1856
|
+
"Project",
|
|
1857
|
+
"Real User Monitoring",
|
|
1858
|
+
"View Application",
|
|
1859
|
+
"Delete Application",
|
|
1860
|
+
],
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
getter: "getRumBreadcrumbs",
|
|
1864
|
+
pagePattern: "/dashboard/:projectId/rum/:id/documentation",
|
|
1865
|
+
titles: [
|
|
1866
|
+
"Project",
|
|
1867
|
+
"Real User Monitoring",
|
|
1868
|
+
"View Application",
|
|
1869
|
+
"Documentation",
|
|
1870
|
+
],
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
getter: "getRumBreadcrumbs",
|
|
1874
|
+
pagePattern: "/dashboard/:projectId/rum/:id/logs",
|
|
1875
|
+
titles: ["Project", "Real User Monitoring", "View Application", "Logs"],
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
getter: "getRumBreadcrumbs",
|
|
1879
|
+
pagePattern: "/dashboard/:projectId/rum/:id/metrics",
|
|
1880
|
+
titles: ["Project", "Real User Monitoring", "View Application", "Metrics"],
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
getter: "getRumBreadcrumbs",
|
|
1884
|
+
pagePattern: "/dashboard/:projectId/rum/:id/traces",
|
|
1885
|
+
titles: ["Project", "Real User Monitoring", "View Application", "Traces"],
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1889
|
+
pagePattern: "/dashboard/:projectId/runbooks",
|
|
1890
|
+
titles: ["Project", "Runbooks"],
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1894
|
+
pagePattern: "/dashboard/:projectId/runbooks/:id",
|
|
1895
|
+
titles: ["Project", "Runbooks", "View Runbook"],
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1899
|
+
pagePattern: "/dashboard/:projectId/runbooks/:id/delete",
|
|
1900
|
+
titles: ["Project", "Runbooks", "View Runbook", "Delete Runbook"],
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1904
|
+
pagePattern: "/dashboard/:projectId/runbooks/:id/executions",
|
|
1905
|
+
titles: ["Project", "Runbooks", "View Runbook", "Executions"],
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1909
|
+
pagePattern: "/dashboard/:projectId/runbooks/:id/executions/:subModelId",
|
|
1910
|
+
titles: ["Project", "Runbooks", "View Runbook", "Executions", "Execution"],
|
|
1911
|
+
},
|
|
1912
|
+
{
|
|
1913
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1914
|
+
pagePattern: "/dashboard/:projectId/runbooks/:id/settings",
|
|
1915
|
+
titles: ["Project", "Runbooks", "View Runbook", "Settings"],
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1919
|
+
pagePattern: "/dashboard/:projectId/runbooks/:id/steps",
|
|
1920
|
+
titles: ["Project", "Runbooks", "View Runbook", "Steps"],
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1924
|
+
pagePattern: "/dashboard/:projectId/runbooks/executions",
|
|
1925
|
+
titles: ["Project", "Runbooks", "Executions"],
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
getter: "getRunbooksBreadcrumbs",
|
|
1929
|
+
pagePattern: "/dashboard/:projectId/runbooks/settings/secrets",
|
|
1930
|
+
titles: ["Project", "Runbooks", "Secrets"],
|
|
1931
|
+
},
|
|
1932
|
+
{
|
|
1933
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
1934
|
+
pagePattern: "/dashboard/:projectId/scheduled-maintenance-events",
|
|
1935
|
+
titles: ["Project", "Scheduled Maintenance Events"],
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
1939
|
+
pagePattern: "/dashboard/:projectId/scheduled-maintenance-events/:id",
|
|
1940
|
+
titles: [
|
|
1941
|
+
"Project",
|
|
1942
|
+
"Scheduled Maintenance Events",
|
|
1943
|
+
"View Scheduled Maintenance Event",
|
|
1944
|
+
],
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
1948
|
+
pagePattern:
|
|
1949
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/custom-fields",
|
|
1950
|
+
titles: [
|
|
1951
|
+
"Project",
|
|
1952
|
+
"Scheduled Maintenance Events",
|
|
1953
|
+
"View Scheduled Maintenance Event",
|
|
1954
|
+
"Custom Fields",
|
|
1955
|
+
],
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
1959
|
+
pagePattern:
|
|
1960
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/delete",
|
|
1961
|
+
titles: [
|
|
1962
|
+
"Project",
|
|
1963
|
+
"Scheduled Maintenance Events",
|
|
1964
|
+
"View Scheduled Maintenance Event",
|
|
1965
|
+
"Delete",
|
|
1966
|
+
],
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
1970
|
+
pagePattern:
|
|
1971
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/description",
|
|
1972
|
+
titles: [
|
|
1973
|
+
"Project",
|
|
1974
|
+
"Scheduled Maintenance Events",
|
|
1975
|
+
"View Scheduled Maintenance Event",
|
|
1976
|
+
"Description",
|
|
1977
|
+
],
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
1981
|
+
pagePattern:
|
|
1982
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/internal-notes",
|
|
1983
|
+
titles: [
|
|
1984
|
+
"Project",
|
|
1985
|
+
"Scheduled Maintenance Events",
|
|
1986
|
+
"View Scheduled Maintenance Event",
|
|
1987
|
+
"Private Notes",
|
|
1988
|
+
],
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
1992
|
+
pagePattern:
|
|
1993
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/owners",
|
|
1994
|
+
titles: [
|
|
1995
|
+
"Project",
|
|
1996
|
+
"Scheduled Maintenance Events",
|
|
1997
|
+
"View Scheduled Maintenance Event",
|
|
1998
|
+
"Owners",
|
|
1999
|
+
],
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2003
|
+
pagePattern:
|
|
2004
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/public-notes",
|
|
2005
|
+
titles: [
|
|
2006
|
+
"Project",
|
|
2007
|
+
"Scheduled Maintenance Events",
|
|
2008
|
+
"View Scheduled Maintenance Event",
|
|
2009
|
+
"Public Notes",
|
|
2010
|
+
],
|
|
2011
|
+
},
|
|
2012
|
+
{
|
|
2013
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2014
|
+
pagePattern:
|
|
2015
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/settings",
|
|
2016
|
+
titles: [
|
|
2017
|
+
"Project",
|
|
2018
|
+
"Scheduled Maintenance Events",
|
|
2019
|
+
"View Scheduled Maintenance Event",
|
|
2020
|
+
"Settings",
|
|
2021
|
+
],
|
|
2022
|
+
},
|
|
2023
|
+
{
|
|
2024
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2025
|
+
pagePattern:
|
|
2026
|
+
"/dashboard/:projectId/scheduled-maintenance-events/:id/state-timeline",
|
|
2027
|
+
titles: [
|
|
2028
|
+
"Project",
|
|
2029
|
+
"Scheduled Maintenance Events",
|
|
2030
|
+
"View Scheduled Maintenance Event",
|
|
2031
|
+
"Status Timeline",
|
|
2032
|
+
],
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2036
|
+
pagePattern: "/dashboard/:projectId/scheduled-maintenance-events/create",
|
|
2037
|
+
titles: [
|
|
2038
|
+
"Project",
|
|
2039
|
+
"Scheduled Maintenance Events",
|
|
2040
|
+
"New Scheduled Maintenance Event",
|
|
2041
|
+
],
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2045
|
+
pagePattern: "/dashboard/:projectId/scheduled-maintenance-events/ongoing",
|
|
2046
|
+
titles: [
|
|
2047
|
+
"Project",
|
|
2048
|
+
"Scheduled Maintenance Events",
|
|
2049
|
+
"Ongoing Scheduled Maintenance",
|
|
2050
|
+
],
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2054
|
+
pagePattern:
|
|
2055
|
+
"/dashboard/:projectId/scheduled-maintenance-events/settings/custom-fields",
|
|
2056
|
+
titles: ["Project", "Scheduled Maintenance", "Settings", "Custom Fields"],
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2060
|
+
pagePattern:
|
|
2061
|
+
"/dashboard/:projectId/scheduled-maintenance-events/settings/note-templates",
|
|
2062
|
+
titles: ["Project", "Scheduled Maintenance", "Settings", "Note Templates"],
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2066
|
+
pagePattern:
|
|
2067
|
+
"/dashboard/:projectId/scheduled-maintenance-events/settings/note-templates/:id",
|
|
2068
|
+
titles: [
|
|
2069
|
+
"Project",
|
|
2070
|
+
"Scheduled Maintenance",
|
|
2071
|
+
"Settings",
|
|
2072
|
+
"Note Templates",
|
|
2073
|
+
"View Template",
|
|
2074
|
+
],
|
|
2075
|
+
},
|
|
2076
|
+
{
|
|
2077
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2078
|
+
pagePattern:
|
|
2079
|
+
"/dashboard/:projectId/scheduled-maintenance-events/settings/state",
|
|
2080
|
+
titles: ["Project", "Scheduled Maintenance", "Settings", "State"],
|
|
2081
|
+
},
|
|
2082
|
+
{
|
|
2083
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2084
|
+
pagePattern:
|
|
2085
|
+
"/dashboard/:projectId/scheduled-maintenance-events/settings/templates",
|
|
2086
|
+
titles: ["Project", "Scheduled Maintenance", "Settings", "Templates"],
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2090
|
+
pagePattern:
|
|
2091
|
+
"/dashboard/:projectId/scheduled-maintenance-events/settings/templates/:id",
|
|
2092
|
+
titles: [
|
|
2093
|
+
"Project",
|
|
2094
|
+
"Scheduled Maintenance",
|
|
2095
|
+
"Settings",
|
|
2096
|
+
"Templates",
|
|
2097
|
+
"View Template",
|
|
2098
|
+
],
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
getter: "getScheduleMaintenanceBreadcrumbs",
|
|
2102
|
+
pagePattern:
|
|
2103
|
+
"/dashboard/:projectId/scheduled-maintenance-events/workspace-connection-slack",
|
|
2104
|
+
titles: [
|
|
2105
|
+
"Project",
|
|
2106
|
+
"Scheduled Maintenance Events",
|
|
2107
|
+
"Slack Workspace Connection",
|
|
2108
|
+
],
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
getter: "getServerlessBreadcrumbs",
|
|
2112
|
+
pagePattern: "/dashboard/:projectId/serverless",
|
|
2113
|
+
titles: ["Project", "Serverless Functions"],
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
getter: "getServerlessBreadcrumbs",
|
|
2117
|
+
pagePattern: "/dashboard/:projectId/serverless/:id",
|
|
2118
|
+
titles: ["Project", "Serverless Functions", "View Function"],
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
getter: "getServerlessBreadcrumbs",
|
|
2122
|
+
pagePattern: "/dashboard/:projectId/serverless/:id/delete",
|
|
2123
|
+
titles: [
|
|
2124
|
+
"Project",
|
|
2125
|
+
"Serverless Functions",
|
|
2126
|
+
"View Function",
|
|
2127
|
+
"Delete Function",
|
|
2128
|
+
],
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
getter: "getServerlessBreadcrumbs",
|
|
2132
|
+
pagePattern: "/dashboard/:projectId/serverless/:id/documentation",
|
|
2133
|
+
titles: [
|
|
2134
|
+
"Project",
|
|
2135
|
+
"Serverless Functions",
|
|
2136
|
+
"View Function",
|
|
2137
|
+
"Documentation",
|
|
2138
|
+
],
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
getter: "getServerlessBreadcrumbs",
|
|
2142
|
+
pagePattern: "/dashboard/:projectId/serverless/:id/logs",
|
|
2143
|
+
titles: ["Project", "Serverless Functions", "View Function", "Logs"],
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
getter: "getServerlessBreadcrumbs",
|
|
2147
|
+
pagePattern: "/dashboard/:projectId/serverless/:id/metrics",
|
|
2148
|
+
titles: ["Project", "Serverless Functions", "View Function", "Metrics"],
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
getter: "getServerlessBreadcrumbs",
|
|
2152
|
+
pagePattern: "/dashboard/:projectId/serverless/:id/traces",
|
|
2153
|
+
titles: ["Project", "Serverless Functions", "View Function", "Traces"],
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
getter: "getServiceBreadcrumbs",
|
|
2157
|
+
pagePattern: "/dashboard/:projectId/service",
|
|
2158
|
+
titles: ["Project", "Services"],
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
getter: "getServiceBreadcrumbs",
|
|
2162
|
+
pagePattern: "/dashboard/:projectId/service/:id",
|
|
2163
|
+
titles: ["Project", "Services", "View Service"],
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
getter: "getServiceBreadcrumbs",
|
|
2167
|
+
pagePattern: "/dashboard/:projectId/service/:id/alerts",
|
|
2168
|
+
titles: ["Project", "Services", "View Service", "Alerts"],
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
getter: "getServiceBreadcrumbs",
|
|
2172
|
+
pagePattern: "/dashboard/:projectId/service/:id/delete",
|
|
2173
|
+
titles: ["Project", "Services", "View Service", "Delete Service"],
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
getter: "getServiceBreadcrumbs",
|
|
2177
|
+
pagePattern: "/dashboard/:projectId/service/:id/incidents",
|
|
2178
|
+
titles: ["Project", "Services", "View Service", "Incidents"],
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
getter: "getServiceBreadcrumbs",
|
|
2182
|
+
pagePattern: "/dashboard/:projectId/service/:id/logs",
|
|
2183
|
+
titles: ["Project", "Services", "View Service", "Logs"],
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
getter: "getServiceBreadcrumbs",
|
|
2187
|
+
pagePattern: "/dashboard/:projectId/service/:id/metrics",
|
|
2188
|
+
titles: ["Project", "Services", "View Service", "Metrics"],
|
|
2189
|
+
},
|
|
2190
|
+
{
|
|
2191
|
+
getter: "getServiceBreadcrumbs",
|
|
2192
|
+
pagePattern: "/dashboard/:projectId/service/:id/owners",
|
|
2193
|
+
titles: ["Project", "Services", "View Service", "Owners"],
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
getter: "getServiceBreadcrumbs",
|
|
2197
|
+
pagePattern: "/dashboard/:projectId/service/:id/scheduled-maintenance",
|
|
2198
|
+
titles: ["Project", "Services", "View Service", "Scheduled Maintenance"],
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
getter: "getServiceBreadcrumbs",
|
|
2202
|
+
pagePattern: "/dashboard/:projectId/service/:id/settings",
|
|
2203
|
+
titles: ["Project", "Services", "View Service", "Settings"],
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
getter: "getServiceBreadcrumbs",
|
|
2207
|
+
pagePattern: "/dashboard/:projectId/service/:id/traces",
|
|
2208
|
+
titles: ["Project", "Services", "View Service", "Traces"],
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
getter: "getServiceBreadcrumbs",
|
|
2212
|
+
pagePattern: "/dashboard/:projectId/service/settings/label-rules",
|
|
2213
|
+
titles: ["Project", "Services", "Settings", "Label Rules"],
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
getter: "getServiceBreadcrumbs",
|
|
2217
|
+
pagePattern: "/dashboard/:projectId/service/settings/owner-rules",
|
|
2218
|
+
titles: ["Project", "Services", "Settings", "Owner Rules"],
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
getter: "getSettingsBreadcrumbs",
|
|
2222
|
+
pagePattern: "/dashboard/:projectId/settings/",
|
|
2223
|
+
titles: ["Project", "Project Settings"],
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
getter: "getSettingsBreadcrumbs",
|
|
2227
|
+
pagePattern: "/dashboard/:projectId/settings/ai-agents",
|
|
2228
|
+
titles: ["Project", "Settings", "AI Agents"],
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
getter: "getSettingsBreadcrumbs",
|
|
2232
|
+
pagePattern: "/dashboard/:projectId/settings/ai-agents/:id",
|
|
2233
|
+
titles: ["Project", "Settings", "AI Agents", "View Agent"],
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
getter: "getSettingsBreadcrumbs",
|
|
2237
|
+
pagePattern: "/dashboard/:projectId/settings/ai-credits",
|
|
2238
|
+
titles: ["Project", "Settings", "AI Credits"],
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
getter: "getSettingsBreadcrumbs",
|
|
2242
|
+
pagePattern: "/dashboard/:projectId/settings/ai-logs",
|
|
2243
|
+
titles: ["Project", "Settings", "AI Logs"],
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
getter: "getSettingsBreadcrumbs",
|
|
2247
|
+
pagePattern: "/dashboard/:projectId/settings/api-keys",
|
|
2248
|
+
titles: ["Project", "Settings", "API Keys"],
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
getter: "getSettingsBreadcrumbs",
|
|
2252
|
+
pagePattern: "/dashboard/:projectId/settings/api-keys/:id",
|
|
2253
|
+
titles: ["Project", "Settings", "API Keys", "View API Key"],
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
getter: "getSettingsBreadcrumbs",
|
|
2257
|
+
pagePattern: "/dashboard/:projectId/settings/audit-logs",
|
|
2258
|
+
titles: ["Project", "Settings", "Audit Logs"],
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
getter: "getSettingsBreadcrumbs",
|
|
2262
|
+
pagePattern: "/dashboard/:projectId/settings/audit-logs/settings",
|
|
2263
|
+
titles: ["Project", "Settings", "Audit Logs", "Settings"],
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
getter: "getSettingsBreadcrumbs",
|
|
2267
|
+
pagePattern: "/dashboard/:projectId/settings/billing",
|
|
2268
|
+
titles: ["Project", "Settings", "Billing"],
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
getter: "getSettingsBreadcrumbs",
|
|
2272
|
+
pagePattern: "/dashboard/:projectId/settings/danger-zone",
|
|
2273
|
+
titles: ["Project", "Settings", "Danger Zone"],
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
getter: "getSettingsBreadcrumbs",
|
|
2277
|
+
pagePattern: "/dashboard/:projectId/settings/domains",
|
|
2278
|
+
titles: ["Project", "Settings", "Domains"],
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
getter: "getSettingsBreadcrumbs",
|
|
2282
|
+
pagePattern: "/dashboard/:projectId/settings/feature-flags",
|
|
2283
|
+
titles: ["Project", "Settings", "Feature Flags"],
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
getter: "getSettingsBreadcrumbs",
|
|
2287
|
+
pagePattern: "/dashboard/:projectId/settings/invoices",
|
|
2288
|
+
titles: ["Project", "Settings", "Invoices"],
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
getter: "getSettingsBreadcrumbs",
|
|
2292
|
+
pagePattern: "/dashboard/:projectId/settings/labels",
|
|
2293
|
+
titles: ["Project", "Settings", "Labels"],
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
getter: "getSettingsBreadcrumbs",
|
|
2297
|
+
pagePattern: "/dashboard/:projectId/settings/llm-providers",
|
|
2298
|
+
titles: ["Project", "Settings", "LLM Providers"],
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
getter: "getSettingsBreadcrumbs",
|
|
2302
|
+
pagePattern: "/dashboard/:projectId/settings/llm-providers/:id",
|
|
2303
|
+
titles: ["Project", "Settings", "LLM Providers", "View Provider"],
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
getter: "getSettingsBreadcrumbs",
|
|
2307
|
+
pagePattern: "/dashboard/:projectId/settings/mcp-server",
|
|
2308
|
+
titles: ["Project", "Settings", "MCP Server"],
|
|
2309
|
+
},
|
|
2310
|
+
{
|
|
2311
|
+
getter: "getSettingsBreadcrumbs",
|
|
2312
|
+
pagePattern: "/dashboard/:projectId/settings/microsoft-teams-integration",
|
|
2313
|
+
titles: ["Project", "Settings", "Microsoft Teams Integration"],
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
getter: "getSettingsBreadcrumbs",
|
|
2317
|
+
pagePattern: "/dashboard/:projectId/settings/notification-logs",
|
|
2318
|
+
titles: ["Project", "Settings", "Notification Logs"],
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
getter: "getSettingsBreadcrumbs",
|
|
2322
|
+
pagePattern: "/dashboard/:projectId/settings/notification-settings",
|
|
2323
|
+
titles: ["Project", "Settings", "Notification Settings"],
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
getter: "getSettingsBreadcrumbs",
|
|
2327
|
+
pagePattern: "/dashboard/:projectId/settings/oidc",
|
|
2328
|
+
titles: ["Project", "Settings", "OIDC"],
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
getter: "getSettingsBreadcrumbs",
|
|
2332
|
+
pagePattern: "/dashboard/:projectId/settings/slack-integration",
|
|
2333
|
+
titles: ["Project", "Settings", "Slack Integration"],
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
getter: "getSettingsBreadcrumbs",
|
|
2337
|
+
pagePattern: "/dashboard/:projectId/settings/sso",
|
|
2338
|
+
titles: ["Project", "Settings", "SSO"],
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
getter: "getSettingsBreadcrumbs",
|
|
2342
|
+
pagePattern: "/dashboard/:projectId/settings/usage-history",
|
|
2343
|
+
titles: ["Project", "Settings", "Usage History"],
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2347
|
+
pagePattern: "/dashboard/:projectId/status-pages",
|
|
2348
|
+
titles: ["Project", "Status Pages"],
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2352
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id",
|
|
2353
|
+
titles: ["Project", "Status Pages", "View Status Page"],
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2357
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/announcements",
|
|
2358
|
+
titles: ["Project", "Status Pages", "View Status Page", "Announcements"],
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2362
|
+
pagePattern:
|
|
2363
|
+
"/dashboard/:projectId/status-pages/:id/authentication-settings",
|
|
2364
|
+
titles: [
|
|
2365
|
+
"Project",
|
|
2366
|
+
"Status Pages",
|
|
2367
|
+
"View Status Page",
|
|
2368
|
+
"Authentication Settings",
|
|
2369
|
+
],
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2373
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/branding",
|
|
2374
|
+
titles: [
|
|
2375
|
+
"Project",
|
|
2376
|
+
"Status Pages",
|
|
2377
|
+
"View Status Page",
|
|
2378
|
+
"Essential Branding",
|
|
2379
|
+
],
|
|
2380
|
+
},
|
|
2381
|
+
{
|
|
2382
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2383
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/custom-code",
|
|
2384
|
+
titles: [
|
|
2385
|
+
"Project",
|
|
2386
|
+
"Status Pages",
|
|
2387
|
+
"View Status Page",
|
|
2388
|
+
"Custom HTML, CSS & JavaScript",
|
|
2389
|
+
],
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2393
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/custom-fields",
|
|
2394
|
+
titles: ["Project", "Status Pages", "View Status Page", "Custom Fields"],
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2398
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/delete",
|
|
2399
|
+
titles: [
|
|
2400
|
+
"Project",
|
|
2401
|
+
"Status Pages",
|
|
2402
|
+
"View Status Page",
|
|
2403
|
+
"Delete Status Page",
|
|
2404
|
+
],
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2408
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/domains",
|
|
2409
|
+
titles: ["Project", "Status Pages", "View Status Page", "Domains"],
|
|
2410
|
+
},
|
|
2411
|
+
{
|
|
2412
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2413
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/email-subscribers",
|
|
2414
|
+
titles: [
|
|
2415
|
+
"Project",
|
|
2416
|
+
"Status Pages",
|
|
2417
|
+
"View Status Page",
|
|
2418
|
+
"Email Subscribers",
|
|
2419
|
+
],
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2423
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/footer-style",
|
|
2424
|
+
titles: ["Project", "Status Pages", "View Status Page", "Footer"],
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2428
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/groups",
|
|
2429
|
+
titles: ["Project", "Status Pages", "View Status Page", "Resource Groups"],
|
|
2430
|
+
},
|
|
2431
|
+
{
|
|
2432
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2433
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/header-style",
|
|
2434
|
+
titles: ["Project", "Status Pages", "View Status Page", "Header"],
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2438
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/languages",
|
|
2439
|
+
titles: ["Project", "Status Pages", "View Status Page", "Languages"],
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2443
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/mcp",
|
|
2444
|
+
titles: ["Project", "Status Pages", "View Status Page", "MCP"],
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2448
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/navbar-style",
|
|
2449
|
+
titles: ["Project", "Status Pages", "View Status Page", "Navbar"],
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2453
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/notification-logs",
|
|
2454
|
+
titles: [
|
|
2455
|
+
"Project",
|
|
2456
|
+
"Status Pages",
|
|
2457
|
+
"View Status Page",
|
|
2458
|
+
"Notification Logs",
|
|
2459
|
+
],
|
|
2460
|
+
},
|
|
2461
|
+
{
|
|
2462
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2463
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/oidc",
|
|
2464
|
+
titles: ["Project", "Status Pages", "View Status Page", "OIDC"],
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2468
|
+
pagePattern:
|
|
2469
|
+
"/dashboard/:projectId/status-pages/:id/overview-page-branding",
|
|
2470
|
+
titles: [
|
|
2471
|
+
"Project",
|
|
2472
|
+
"Status Pages",
|
|
2473
|
+
"View Status Page",
|
|
2474
|
+
"Overview Page Branding",
|
|
2475
|
+
],
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2479
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/owners",
|
|
2480
|
+
titles: ["Project", "Status Pages", "View Status Page", "Owners"],
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2484
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/private-users",
|
|
2485
|
+
titles: ["Project", "Status Pages", "View Status Page", "Private Users"],
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2489
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/resources",
|
|
2490
|
+
titles: ["Project", "Status Pages", "View Status Page", "Resources"],
|
|
2491
|
+
},
|
|
2492
|
+
{
|
|
2493
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2494
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/settings",
|
|
2495
|
+
titles: ["Project", "Status Pages", "View Status Page", "Settings"],
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2499
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/sms-subscribers",
|
|
2500
|
+
titles: ["Project", "Status Pages", "View Status Page", "SMS Subscribers"],
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2504
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/sso",
|
|
2505
|
+
titles: ["Project", "Status Pages", "View Status Page", "SSO"],
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2509
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/subscriber-settings",
|
|
2510
|
+
titles: [
|
|
2511
|
+
"Project",
|
|
2512
|
+
"Status Pages",
|
|
2513
|
+
"View Status Page",
|
|
2514
|
+
"Subscriber Settings",
|
|
2515
|
+
],
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2519
|
+
pagePattern: "/dashboard/:projectId/status-pages/:id/webhook-subscribers",
|
|
2520
|
+
titles: [
|
|
2521
|
+
"Project",
|
|
2522
|
+
"Status Pages",
|
|
2523
|
+
"View Status Page",
|
|
2524
|
+
"Webhook Subscribers",
|
|
2525
|
+
],
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2529
|
+
pagePattern: "/dashboard/:projectId/status-pages/announcements",
|
|
2530
|
+
titles: ["Project", "Status Pages", "All Announcements"],
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2534
|
+
pagePattern: "/dashboard/:projectId/status-pages/announcements/:id",
|
|
2535
|
+
titles: [
|
|
2536
|
+
"Project",
|
|
2537
|
+
"Status Pages",
|
|
2538
|
+
"All Announcements",
|
|
2539
|
+
"View Announcement",
|
|
2540
|
+
],
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2544
|
+
pagePattern: "/dashboard/:projectId/status-pages/announcements/:id/delete",
|
|
2545
|
+
titles: [
|
|
2546
|
+
"Project",
|
|
2547
|
+
"Status Pages",
|
|
2548
|
+
"All Announcements",
|
|
2549
|
+
"View Announcement",
|
|
2550
|
+
"Delete Announcement",
|
|
2551
|
+
],
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2555
|
+
pagePattern:
|
|
2556
|
+
"/dashboard/:projectId/status-pages/announcements/:id/notification-logs",
|
|
2557
|
+
titles: [
|
|
2558
|
+
"Project",
|
|
2559
|
+
"Status Pages",
|
|
2560
|
+
"All Announcements",
|
|
2561
|
+
"View Announcement",
|
|
2562
|
+
"Notification Logs",
|
|
2563
|
+
],
|
|
2564
|
+
},
|
|
2565
|
+
{
|
|
2566
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2567
|
+
pagePattern:
|
|
2568
|
+
"/dashboard/:projectId/status-pages/settings/announcement-templates",
|
|
2569
|
+
titles: ["Project", "Status Pages", "Settings", "Announcement Templates"],
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2573
|
+
pagePattern:
|
|
2574
|
+
"/dashboard/:projectId/status-pages/settings/announcement-templates/:id",
|
|
2575
|
+
titles: [
|
|
2576
|
+
"Project",
|
|
2577
|
+
"Status Pages",
|
|
2578
|
+
"Settings",
|
|
2579
|
+
"Announcement Templates",
|
|
2580
|
+
"View Template",
|
|
2581
|
+
],
|
|
2582
|
+
},
|
|
2583
|
+
{
|
|
2584
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2585
|
+
pagePattern: "/dashboard/:projectId/status-pages/settings/custom-fields",
|
|
2586
|
+
titles: ["Project", "Status Pages", "Settings", "Custom Fields"],
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2590
|
+
pagePattern:
|
|
2591
|
+
"/dashboard/:projectId/status-pages/settings/subscriber-notification-templates",
|
|
2592
|
+
titles: [
|
|
2593
|
+
"Project",
|
|
2594
|
+
"Status Pages",
|
|
2595
|
+
"Settings",
|
|
2596
|
+
"Subscriber Notification Templates",
|
|
2597
|
+
],
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
getter: "getStatusPagesBreadcrumbs",
|
|
2601
|
+
pagePattern:
|
|
2602
|
+
"/dashboard/:projectId/status-pages/settings/subscriber-notification-templates/:id",
|
|
2603
|
+
titles: [
|
|
2604
|
+
"Project",
|
|
2605
|
+
"Status Pages",
|
|
2606
|
+
"Settings",
|
|
2607
|
+
"Subscriber Notification Templates",
|
|
2608
|
+
"View Template",
|
|
2609
|
+
],
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
getter: "getTeamsBreadcrumbs",
|
|
2613
|
+
pagePattern: "/dashboard/:projectId/teams",
|
|
2614
|
+
titles: ["Project", "Teams"],
|
|
2615
|
+
},
|
|
2616
|
+
{
|
|
2617
|
+
getter: "getTeamsBreadcrumbs",
|
|
2618
|
+
pagePattern: "/dashboard/:projectId/teams/:id",
|
|
2619
|
+
titles: ["Project", "Teams", "View Team"],
|
|
2620
|
+
},
|
|
2621
|
+
{
|
|
2622
|
+
getter: "getTeamsBreadcrumbs",
|
|
2623
|
+
pagePattern: "/dashboard/:projectId/teams/:id/block-permissions",
|
|
2624
|
+
titles: ["Project", "Teams", "View Team", "Block Permissions"],
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
getter: "getTeamsBreadcrumbs",
|
|
2628
|
+
pagePattern: "/dashboard/:projectId/teams/:id/compliance",
|
|
2629
|
+
titles: ["Project", "Teams", "View Team", "Compliance"],
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
getter: "getTeamsBreadcrumbs",
|
|
2633
|
+
pagePattern: "/dashboard/:projectId/teams/:id/custom-fields",
|
|
2634
|
+
titles: ["Project", "Teams", "View Team", "Custom Fields"],
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
getter: "getTeamsBreadcrumbs",
|
|
2638
|
+
pagePattern: "/dashboard/:projectId/teams/:id/delete",
|
|
2639
|
+
titles: ["Project", "Teams", "View Team", "Delete"],
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
getter: "getTeamsBreadcrumbs",
|
|
2643
|
+
pagePattern: "/dashboard/:projectId/teams/:id/members",
|
|
2644
|
+
titles: ["Project", "Teams", "View Team", "Members"],
|
|
2645
|
+
},
|
|
2646
|
+
{
|
|
2647
|
+
getter: "getTeamsBreadcrumbs",
|
|
2648
|
+
pagePattern: "/dashboard/:projectId/teams/:id/permissions",
|
|
2649
|
+
titles: ["Project", "Teams", "View Team", "Permissions"],
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
getter: "getTeamsBreadcrumbs",
|
|
2653
|
+
pagePattern: "/dashboard/:projectId/teams/custom-fields",
|
|
2654
|
+
titles: ["Project", "Teams", "Custom Fields"],
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
getter: "getTracesBreadcrumbs",
|
|
2658
|
+
pagePattern: "/dashboard/:projectId/traces",
|
|
2659
|
+
titles: ["Project", "Traces"],
|
|
2660
|
+
},
|
|
2661
|
+
{
|
|
2662
|
+
getter: "getTracesBreadcrumbs",
|
|
2663
|
+
pagePattern: "/dashboard/:projectId/traces/documentation",
|
|
2664
|
+
titles: ["Project", "Traces", "Setup Guide"],
|
|
2665
|
+
},
|
|
2666
|
+
{
|
|
2667
|
+
getter: "getTracesBreadcrumbs",
|
|
2668
|
+
pagePattern: "/dashboard/:projectId/traces/insights",
|
|
2669
|
+
titles: ["Project", "Traces", "Insights"],
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
getter: "getTracesBreadcrumbs",
|
|
2673
|
+
pagePattern: "/dashboard/:projectId/traces/settings/drop-filters",
|
|
2674
|
+
titles: ["Project", "Traces", "Settings", "Drop Filters"],
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
getter: "getTracesBreadcrumbs",
|
|
2678
|
+
pagePattern: "/dashboard/:projectId/traces/settings/drop-filters/:id",
|
|
2679
|
+
titles: ["Project", "Traces", "Settings", "Drop Filters", "View"],
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
getter: "getTracesBreadcrumbs",
|
|
2683
|
+
pagePattern: "/dashboard/:projectId/traces/settings/pipelines",
|
|
2684
|
+
titles: ["Project", "Traces", "Settings", "Pipelines"],
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
getter: "getTracesBreadcrumbs",
|
|
2688
|
+
pagePattern: "/dashboard/:projectId/traces/settings/pipelines/:id",
|
|
2689
|
+
titles: ["Project", "Traces", "Settings", "Pipelines", "View"],
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
getter: "getTracesBreadcrumbs",
|
|
2693
|
+
pagePattern: "/dashboard/:projectId/traces/settings/recording-rules",
|
|
2694
|
+
titles: ["Project", "Traces", "Settings", "Recording Rules"],
|
|
2695
|
+
},
|
|
2696
|
+
{
|
|
2697
|
+
getter: "getTracesBreadcrumbs",
|
|
2698
|
+
pagePattern: "/dashboard/:projectId/traces/settings/scrub-rules",
|
|
2699
|
+
titles: ["Project", "Traces", "Settings", "Scrub Rules"],
|
|
2700
|
+
},
|
|
2701
|
+
{
|
|
2702
|
+
getter: "getTracesBreadcrumbs",
|
|
2703
|
+
pagePattern: "/dashboard/:projectId/traces/view/:id",
|
|
2704
|
+
titles: ["Project", "Traces", "Trace Details"],
|
|
2705
|
+
},
|
|
2706
|
+
{
|
|
2707
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2708
|
+
pagePattern:
|
|
2709
|
+
"/dashboard/:projectId/user-settings/alert-episode-on-call-rules",
|
|
2710
|
+
titles: ["Project", "User Settings", "Alert Episode On-Call Rules"],
|
|
2711
|
+
},
|
|
2712
|
+
{
|
|
2713
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2714
|
+
pagePattern: "/dashboard/:projectId/user-settings/alert-on-call-rules",
|
|
2715
|
+
titles: ["Project", "User Settings", "Alert On-Call Rules"],
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2719
|
+
pagePattern:
|
|
2720
|
+
"/dashboard/:projectId/user-settings/incident-episode-on-call-rules",
|
|
2721
|
+
titles: ["Project", "User Settings", "Incident Episode On-Call Rules"],
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2725
|
+
pagePattern: "/dashboard/:projectId/user-settings/incident-on-call-rules",
|
|
2726
|
+
titles: ["Project", "User Settings", "Incident On-Call Rules"],
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2730
|
+
pagePattern:
|
|
2731
|
+
"/dashboard/:projectId/user-settings/incoming-call-phone-numbers",
|
|
2732
|
+
titles: ["Project", "User Settings", "Incoming Phone Numbers"],
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2736
|
+
pagePattern:
|
|
2737
|
+
"/dashboard/:projectId/user-settings/microsoft-teams-integration",
|
|
2738
|
+
titles: ["Project", "User Settings", "Microsoft Teams Integration"],
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2742
|
+
pagePattern: "/dashboard/:projectId/user-settings/notification-methods",
|
|
2743
|
+
titles: ["Project", "User Settings", "Notification Methods"],
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2747
|
+
pagePattern: "/dashboard/:projectId/user-settings/notification-settings",
|
|
2748
|
+
titles: ["Project", "User Settings", "Notification Settings"],
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2752
|
+
pagePattern: "/dashboard/:projectId/user-settings/on-call-logs",
|
|
2753
|
+
titles: ["Project", "User Settings", "On-Call Logs"],
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
getter: "getUserSettingsBreadcrumbs",
|
|
2757
|
+
pagePattern: "/dashboard/:projectId/user-settings/slack-integration",
|
|
2758
|
+
titles: ["Project", "User Settings", "Slack Integration"],
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
getter: "getUsersBreadcrumbs",
|
|
2762
|
+
pagePattern: "/dashboard/:projectId/users",
|
|
2763
|
+
titles: ["Project", "Users"],
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
getter: "getUsersBreadcrumbs",
|
|
2767
|
+
pagePattern: "/dashboard/:projectId/users/:id",
|
|
2768
|
+
titles: ["Project", "Users", "View User"],
|
|
2769
|
+
},
|
|
2770
|
+
{
|
|
2771
|
+
getter: "getUsersBreadcrumbs",
|
|
2772
|
+
pagePattern: "/dashboard/:projectId/users/:id/custom-fields",
|
|
2773
|
+
titles: ["Project", "Users", "View User", "Custom Fields"],
|
|
2774
|
+
},
|
|
2775
|
+
{
|
|
2776
|
+
getter: "getUsersBreadcrumbs",
|
|
2777
|
+
pagePattern: "/dashboard/:projectId/users/:id/delete",
|
|
2778
|
+
titles: ["Project", "Users", "View User", "Remove"],
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
getter: "getUsersBreadcrumbs",
|
|
2782
|
+
pagePattern: "/dashboard/:projectId/users/:id/teams",
|
|
2783
|
+
titles: ["Project", "Users", "View User", "Teams"],
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
getter: "getUsersBreadcrumbs",
|
|
2787
|
+
pagePattern: "/dashboard/:projectId/users/custom-fields",
|
|
2788
|
+
titles: ["Project", "Users", "Custom Fields"],
|
|
2789
|
+
},
|
|
2790
|
+
{
|
|
2791
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2792
|
+
pagePattern: "/dashboard/:projectId/workflows",
|
|
2793
|
+
titles: ["Project", "Workflows"],
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2797
|
+
pagePattern: "/dashboard/:projectId/workflows/:id",
|
|
2798
|
+
titles: ["Project", "Workflows", "View Workflow"],
|
|
2799
|
+
},
|
|
2800
|
+
{
|
|
2801
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2802
|
+
pagePattern: "/dashboard/:projectId/workflows/:id/builder",
|
|
2803
|
+
titles: ["Project", "Workflows", "View Workflow", "Builder"],
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2807
|
+
pagePattern: "/dashboard/:projectId/workflows/:id/delete",
|
|
2808
|
+
titles: ["Project", "Workflows", "View Workflow", "Delete Workflow"],
|
|
2809
|
+
},
|
|
2810
|
+
{
|
|
2811
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2812
|
+
pagePattern: "/dashboard/:projectId/workflows/:id/logs",
|
|
2813
|
+
titles: ["Project", "Workflows", "View Workflow", "Logs"],
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2817
|
+
pagePattern: "/dashboard/:projectId/workflows/:id/owners",
|
|
2818
|
+
titles: ["Project", "Workflows", "View Workflow", "Owners"],
|
|
2819
|
+
},
|
|
2820
|
+
{
|
|
2821
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2822
|
+
pagePattern: "/dashboard/:projectId/workflows/:id/settings",
|
|
2823
|
+
titles: ["Project", "Workflows", "View Workflow", "Settings"],
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2827
|
+
pagePattern: "/dashboard/:projectId/workflows/:id/variables",
|
|
2828
|
+
titles: ["Project", "Workflows", "View Workflow", "Variables"],
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2832
|
+
pagePattern: "/dashboard/:projectId/workflows/logs",
|
|
2833
|
+
titles: ["Project", "Workflows", "Logs"],
|
|
2834
|
+
},
|
|
2835
|
+
{
|
|
2836
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2837
|
+
pagePattern: "/dashboard/:projectId/workflows/settings/label-rules",
|
|
2838
|
+
titles: ["Project", "Workflows", "Settings", "Label Rules"],
|
|
2839
|
+
},
|
|
2840
|
+
{
|
|
2841
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2842
|
+
pagePattern: "/dashboard/:projectId/workflows/settings/owner-rules",
|
|
2843
|
+
titles: ["Project", "Workflows", "Settings", "Owner Rules"],
|
|
2844
|
+
},
|
|
2845
|
+
{
|
|
2846
|
+
getter: "getWorkflowsBreadcrumbs",
|
|
2847
|
+
pagePattern: "/dashboard/:projectId/workflows/variables",
|
|
2848
|
+
titles: ["Project", "Workflows", "Variables"],
|
|
2849
|
+
},
|
|
2850
|
+
];
|
|
2851
|
+
|
|
2852
|
+
export default realBreadcrumbTrails;
|