Class DdsqlTabularQueryRequestAttributes

Attributes describing the DDSQL query to execute.

Hierarchy

  • DdsqlTabularQueryRequestAttributes

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
query: string

The DDSQL statement to execute. DDSQL is Datadog's SQL dialect, which is a subset of PostgreSQL, scoped to Datadog data sources.

rowLimit?: number

Cap on the number of rows returned. Defaults to 5,000 when omitted. Must be between 1 and 10,000 inclusive; values outside this range are rejected with 400.

Time window scoping the underlying data sources, expressed in Unix milliseconds since the epoch. Inclusive on from_timestamp, exclusive on to_timestamp. Results from static tables (for example, dd.hosts) are not affected by the time window, but the field must still be provided.

Generated using TypeDoc