summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/services/alerts_service.js
blob: 4b7337972fea5348572154a0ffbbc6ae3d12eb9f (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
import axios from '~/lib/utils/axios_utils';

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

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

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

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

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

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