mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
234 lines
8.8 KiB
TypeScript
234 lines
8.8 KiB
TypeScript
import { SafeDynamicImport } from 'app/core/components/DynamicImports/SafeDynamicImport';
|
|
import { config } from 'app/core/config';
|
|
import { GrafanaRouteComponent, RouteDescriptor } from 'app/core/navigation/types';
|
|
import { AccessControlAction } from 'app/types';
|
|
|
|
import { evaluateAccess } from './unified/utils/access-control';
|
|
|
|
export function getAlertingRoutes(cfg = config): RouteDescriptor[] {
|
|
const routes = [
|
|
{
|
|
path: '/alerting',
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertingHome" */ 'app/features/alerting/unified/home/Home')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/home',
|
|
exact: false,
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertingHome" */ 'app/features/alerting/unified/home/Home')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/list',
|
|
roles: evaluateAccess([AccessControlAction.AlertingRuleRead, AccessControlAction.AlertingRuleExternalRead]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertRuleListIndex" */ 'app/features/alerting/unified/RuleList')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/routes',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsRead,
|
|
AccessControlAction.AlertingNotificationsExternalRead,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertAmRoutes" */ 'app/features/alerting/unified/NotificationPolicies')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/routes/mute-timing/new',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsWrite,
|
|
AccessControlAction.AlertingNotificationsExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "MuteTimings" */ 'app/features/alerting/unified/MuteTimings')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/routes/mute-timing/edit',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsWrite,
|
|
AccessControlAction.AlertingNotificationsExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "MuteTimings" */ 'app/features/alerting/unified/MuteTimings')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/silences',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingInstanceRead,
|
|
AccessControlAction.AlertingInstancesExternalRead,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertSilences" */ 'app/features/alerting/unified/Silences')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/silence/new',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingInstanceCreate,
|
|
AccessControlAction.AlertingInstancesExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertSilences" */ 'app/features/alerting/unified/Silences')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/silence/:id/edit',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingInstanceUpdate,
|
|
AccessControlAction.AlertingInstancesExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertSilences" */ 'app/features/alerting/unified/Silences')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/notifications',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsRead,
|
|
AccessControlAction.AlertingNotificationsExternalRead,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "NotificationsListPage" */ 'app/features/alerting/unified/Receivers')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/notifications/templates/*',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsRead,
|
|
AccessControlAction.AlertingNotificationsExternalRead,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "Templates" */ 'app/features/alerting/unified/Templates')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/notifications/:type/new',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsWrite,
|
|
AccessControlAction.AlertingNotificationsExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "NotificationsListPage" */ 'app/features/alerting/unified/Receivers')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/notifications/receivers/:id/edit',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsWrite,
|
|
AccessControlAction.AlertingNotificationsExternalWrite,
|
|
AccessControlAction.AlertingNotificationsRead,
|
|
AccessControlAction.AlertingNotificationsExternalRead,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "NotificationsListPage" */ 'app/features/alerting/unified/Receivers')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/notifications/:type/:id/edit',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsWrite,
|
|
AccessControlAction.AlertingNotificationsExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "NotificationsListPage" */ 'app/features/alerting/unified/Receivers')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/notifications/:type/:id/duplicate',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsWrite,
|
|
AccessControlAction.AlertingNotificationsExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "NotificationsListPage" */ 'app/features/alerting/unified/Receivers')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/notifications/:type',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingNotificationsWrite,
|
|
AccessControlAction.AlertingNotificationsExternalWrite,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "NotificationsListPage" */ 'app/features/alerting/unified/Receivers')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/groups/',
|
|
roles: evaluateAccess([
|
|
AccessControlAction.AlertingInstanceRead,
|
|
AccessControlAction.AlertingInstancesExternalRead,
|
|
]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertGroups" */ 'app/features/alerting/unified/AlertGroups')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/new/:type?',
|
|
pageClass: 'page-alerting',
|
|
roles: evaluateAccess([AccessControlAction.AlertingRuleCreate, AccessControlAction.AlertingRuleExternalWrite]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertingRuleForm"*/ 'app/features/alerting/unified/RuleEditor')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/:id/edit',
|
|
pageClass: 'page-alerting',
|
|
roles: evaluateAccess([AccessControlAction.AlertingRuleUpdate, AccessControlAction.AlertingRuleExternalWrite]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertingRuleForm"*/ 'app/features/alerting/unified/RuleEditor')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/:id/modify-export',
|
|
pageClass: 'page-alerting',
|
|
roles: evaluateAccess([AccessControlAction.AlertingRuleRead]),
|
|
component: importAlertingComponent(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "AlertingRuleForm"*/ 'app/features/alerting/unified/components/export/GrafanaModifyExport'
|
|
)
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/:sourceName/:id/view',
|
|
pageClass: 'page-alerting',
|
|
roles: evaluateAccess([AccessControlAction.AlertingRuleRead, AccessControlAction.AlertingRuleExternalRead]),
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertingRule"*/ 'app/features/alerting/unified/RuleViewer')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/:sourceName/:name/find',
|
|
pageClass: 'page-alerting',
|
|
roles: evaluateAccess([AccessControlAction.AlertingRuleRead, AccessControlAction.AlertingRuleExternalRead]),
|
|
component: importAlertingComponent(
|
|
() =>
|
|
import(/* webpackChunkName: "AlertingRedirectToRule"*/ 'app/features/alerting/unified/RedirectToRuleViewer')
|
|
),
|
|
},
|
|
{
|
|
path: '/alerting/admin',
|
|
roles: () => ['Admin'],
|
|
component: importAlertingComponent(
|
|
() => import(/* webpackChunkName: "AlertingAdmin" */ 'app/features/alerting/unified/Admin')
|
|
),
|
|
},
|
|
];
|
|
|
|
return routes;
|
|
}
|
|
|
|
// this function will always load the "feature disabled" component for all alerting routes
|
|
function importAlertingComponent(loader: () => any): GrafanaRouteComponent {
|
|
const featureDisabledPageLoader = () =>
|
|
import(/* webpackChunkName: "AlertingDisabled" */ 'app/features/alerting/unified/AlertingNotEnabled');
|
|
return SafeDynamicImport(config.unifiedAlertingEnabled ? loader : featureDisabledPageLoader);
|
|
}
|