@s2-dev/streamstore - v0.22.0
    Preparing search index...

    Interface GaugeMetric

    A gauge metric with instantaneous values at timestamps.

    interface GaugeMetric {
        name: string;
        unit: MetricUnit;
        values: [Date, number][];
    }
    Index

    Properties

    Properties

    name: string

    Timeseries name.

    Unit of the metric.

    values: [Date, number][]

    Timeseries values. Each element is a pair [timestamp, value]. The value represents the measurement at the instant of the timestamp.