xk6-client-prometheus-remote
    Preparing search index...

    Interface Label

    A Prometheus label with name and value.

    Labels are key-value pairs that uniquely identify a time series. The special label __name__ is used for the metric name.

    { name: "__name__", value: "http_requests_total" }
    { name: "method", value: "GET" }
    { name: "status", value: "200" }
    interface Label {
        name: string;
        value: string;
    }
    Index

    Properties

    Properties

    name: string

    The label name. Use "name" for the metric name.

    value: string

    The label value.