Interface for simple time series aggregates request parameters.

Query modes:

  • No date fields: current (live) aggregates, optionally for a single window.
  • date: historical aggregates for a single window on that date (YYYY-MM-DD, or YYYY-MM-DDTHH for the hourly window only).
  • startDate + endDate: historical range query (window is required).
interface ESPSimpleTSAggregatesRequest {
    date?: string;
    endDate?: string;
    resultCount?: number;
    startDate?: string;
    window?: ESPSimpleTSAggregateWindow;
}

Hierarchy (View Summary)

Properties

date?: string
endDate?: string
resultCount?: number
startDate?: string