Interface ISeriesFilter

This interface specifies all fragments which can be used to filter for specific series.

interface ISeriesFilter {
    aggregationType?: aggregationType;
    dateFrom: string | Date;
    dateTo: string | Date;
    series?: string | string[];
    source: string | number;
}

Properties

aggregationType?: aggregationType

For which aggregation it should filter, see [[aggregationType]]

dateFrom: string | Date

From which date the series should be gathered

dateTo: string | Date

To which date the series should be gathered

series?: string | string[]

The series type and name

Example


const series: string[] = ['c8y_AccelerationMeasurement.acceleration', '...'];
source: string | number

The ManagedObject which is the source of these series