Welcome to mirror list, hosted at ThFree Co, Russian Federation.

alerts_service.js « services « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a67675f1a3d3d3675d4b11a5d9fc3755015b48cb (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import axios from '~/lib/utils/axios_utils';

const mapAlert = ({ runbook_url, ...alert }) => {
  return { runbookUrl: runbook_url, ...alert };
};

export default class AlertsService {
  constructor({ alertsEndpoint }) {
    this.alertsEndpoint = alertsEndpoint;
  }

  getAlerts() {
    return axios.get(this.alertsEndpoint).then(resp => mapAlert(resp.data));
  }

  createAlert({ prometheus_metric_id, operator, threshold, runbookUrl }) {
    return axios
      .post(this.alertsEndpoint, {
        prometheus_metric_id,
        operator,
        threshold,
        runbook_url: runbookUrl,
      })
      .then(resp => mapAlert(resp.data));
  }

  // eslint-disable-next-line class-methods-use-this
  readAlert(alertPath) {
    return axios.get(alertPath).then(resp => mapAlert(resp.data));
  }

  // eslint-disable-next-line class-methods-use-this
  updateAlert(alertPath, { operator, threshold, runbookUrl }) {
    return axios
      .put(alertPath, { operator, threshold, runbook_url: runbookUrl })
      .then(resp => mapAlert(resp.data));
  }

  // eslint-disable-next-line class-methods-use-this
  deleteAlert(alertPath) {
    return axios.delete(alertPath).then(resp => resp.data);
  }
}