File

src/app/shared/services/prometheus-notification.service.ts

Index

Properties
Methods

Constructor

constructor(alertFormatter: PrometheusAlertFormatter, prometheusService: PrometheusService)
Parameters :
Name Type Optional
alertFormatter PrometheusAlertFormatter No
prometheusService PrometheusService No

Methods

Private formatNotification
formatNotification(notification: PrometheusNotification)
Parameters :
Name Type Optional
notification PrometheusNotification No
Returns : CdNotificationConfig[]
Private getLastNotification
getLastNotification()
Returns : any
Private handleNotifications
handleNotifications(notifications: PrometheusNotification[])
Parameters :
Name Type Optional
notifications PrometheusNotification[] No
Returns : void
refresh
refresh()
Returns : void

Properties

Private notifications
Type : PrometheusNotification[]
import { Injectable } from '@angular/core';

import * as _ from 'lodash';

import { PrometheusService } from '../api/prometheus.service';
import { CdNotificationConfig } from '../models/cd-notification';
import { PrometheusNotification } from '../models/prometheus-alerts';
import { PrometheusAlertFormatter } from './prometheus-alert-formatter';
import { ServicesModule } from './services.module';

@Injectable({
  providedIn: ServicesModule
})
export class PrometheusNotificationService {
  private notifications: PrometheusNotification[];

  constructor(
    private alertFormatter: PrometheusAlertFormatter,
    private prometheusService: PrometheusService
  ) {
    this.notifications = [];
  }

  refresh() {
    const last = this.getLastNotification();
    this.prometheusService
      .getNotificationSince(last)
      .subscribe((notifications) => this.handleNotifications(notifications));
  }

  private getLastNotification() {
    return _.last(this.notifications) || {};
  }

  private handleNotifications(notifications: PrometheusNotification[]) {
    if (notifications.length === 0) {
      return;
    }
    if (this.notifications.length > 0) {
      this.alertFormatter.sendNotifications(
        _.flatten(notifications.map((notification) => this.formatNotification(notification)))
      );
    }
    this.notifications = this.notifications.concat(notifications);
  }

  private formatNotification(notification: PrometheusNotification): CdNotificationConfig[] {
    return this.alertFormatter
      .convertToCustomAlerts(notification.alerts)
      .map((alert) => this.alertFormatter.convertAlertToNotification(alert));
  }
}

result-matching ""

    No results matching ""