Represents quantitative data about the server.

interface Measure {
    data: MeasureData[];
    humanValue?: string;
    key: MeasureKey;
    previousTotal?: string;
    total: string;
    unit?: null | string;
}

Properties

data: MeasureData[]

The data available for the requested measure, split into daily buckets.

humanValue?: string

A human-readable formatted value for this data item.

The unique keystring for the requested measure.

previousTotal?: string

The numeric total associated with the requested measure, in the previous period. Previous period is calculated by subtracting the start_at and end_at dates, then offsetting both start and end dates backwards by the length of the time period.

total: string

The numeric total associated with the requested measure.

unit?: null | string

The units associated with this data item’s value, if applicable.