pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface AlertReport

    An alert a reading raised. Only the field belonging to kind is set.

    interface AlertReport {
        kind: AlertKind;
        rate?: number;
        reading?: number;
        samples?: number;
    }
    Index
    kind: AlertKind

    Which threshold the reading crossed.

    rate?: number

    The change since the previous sample, for a changing-fast alert.

    reading?: number

    The offending reading, for an out-of-range alert.

    samples?: number

    The estimated samples until empty, for a running-out alert.