A metric to submit to Datadog. See Datadog metrics.

Hierarchy

  • Series

Constructors

Properties

additionalProperties?: {
    [key: string]: any;
}

A container for additional, undeclared properties. This is a holder for any undeclared properties as specified with the 'additionalProperties' keyword in the OAS document.

Type declaration

  • [key: string]: any
host?: string

The name of the host that produced the metric.

interval?: number

If the type of the metric is rate or count, define the corresponding interval in seconds.

metric: string

The name of the timeseries.

points: [number, number][]

Points relating to a metric. All points must be tuples with timestamp and a scalar value (cannot be a string). Timestamps should be in POSIX time in seconds, and cannot be more than ten minutes in the future or more than one hour in the past.

tags?: string[]

A list of tags associated with the metric.

type?: string

The type of the metric. Valid types are "",count, gauge, and rate.

Generated using TypeDoc