summaryrefslogtreecommitdiff
path: root/spec/frontend/alerts_settings/util.js
blob: 5c07f22f1c9c460a2819ef4d1e44f434b0116f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const PROMETHEUS_URL = '/prometheus/alerts/notify.json';
const GENERIC_URL = '/alerts/notify.json';
const KEY = 'abcedfg123';
const INVALID_URL = 'http://invalid';
const ACTIVE = false;

export const defaultAlertSettingsConfig = {
  generic: {
    authorizationKey: KEY,
    formPath: INVALID_URL,
    url: GENERIC_URL,
    alertsSetupUrl: INVALID_URL,
    alertsUsageUrl: INVALID_URL,
    active: ACTIVE,
  },
  prometheus: {
    authorizationKey: KEY,
    prometheusFormPath: INVALID_URL,
    url: PROMETHEUS_URL,
    active: ACTIVE,
  },
  projectPath: '',
  multiIntegrations: true,
};