Interface TsRangeMultiAggrOptions

interface TsRangeMultiAggrOptions {
    AGGREGATION: {
        BUCKETTIMESTAMP?: string;
        EMPTY?: boolean;
        timeBucket: Timestamp;
        types: [TimeSeriesAggregationType, ...TimeSeriesAggregationType[]];
    };
    ALIGN?: Timestamp;
    COUNT?: number;
    FILTER_BY_TS?: Timestamp[];
    FILTER_BY_VALUE?: {
        max: number;
        min: number;
    };
    LATEST?: boolean;
}

Properties

AGGREGATION: {
    BUCKETTIMESTAMP?: string;
    EMPTY?: boolean;
    timeBucket: Timestamp;
    types: [TimeSeriesAggregationType, ...TimeSeriesAggregationType[]];
}

Type declaration

ALIGN?: Timestamp
COUNT?: number
FILTER_BY_TS?: Timestamp[]
FILTER_BY_VALUE?: {
    max: number;
    min: number;
}

Type declaration

  • max: number
  • min: number
LATEST?: boolean

Generated using TypeDoc