Takaro - v0.6.0
    Preparing search index...

    Interface Metric

    interface Metric {
        attributes?: Record<string, unknown>;
        name: string;
        type: MetricType;
        unit?: string;
        value: number;
    }
    Index

    Properties

    attributes?: Record<string, unknown>

    Arbitrary structured data that stores information about the metric.

    name: string

    The name of the metric.

    type: MetricType

    The type of metric.

    unit?: string

    The unit of the metric value.

    value: number

    The value of the metric.