Represents a time series that could be used for graph purposes.

interface TimeSeries {
    metadata: Record<string, string>;
    name: string;
    points: TimeSeriesPoint[];
}

Properties

Properties

metadata: Record<string, string>

Metadata contains some string metadata related to a metric.

name: string

Name of the metric.

points: TimeSeriesPoint[]

Points contains all the points that composed the series.