alertmanager-gotify - v1.0.1
    Preparing search index...

    Interface Alert

    Interface representing an Alert from AlertManager.

    Alert

    interface Alert {
        annotations: { [key: string]: string };
        labels: { [key: string]: string };
        status: string;
        endsAt?: string;
        generatorURL?: string;
        startsAt?: string;
    }
    Index

    Properties

    annotations: { [key: string]: string }

    Key-value pairs of alert annotations

    labels: { [key: string]: string }

    Key-value pairs of alert labels

    status: string

    Alert status ('firing' or 'resolved')

    endsAt?: string
    generatorURL?: string
    startsAt?: string