Interface ITopNOptions

Preferred object for providing options to TopN queries.

interface ITopNOptions {
    N: number;
    end?: number;
    exporterNodeCriteria?: string;
    ifIndex?: number;
    includeOther?: boolean;
    start?: number;
    step?: number;
}

Properties

N: number

how many series to return

end?: number

the end of the timespan to query

exporterNodeCriteria?: string

the node ID or foreignSource:foreignId tuple

ifIndex?: number

filter based on SNMP interface

includeOther?: boolean

include an additional "other" result for non-matches

start?: number

the start of the timespan to query

step?: number

the requested time interval between rows