Interface HistogramAggregateFunctionV3

A histogram aggregator function. This function will generate a histogram from the values of the specified property. It uses the specified interval as defined in your interval argument.

interface HistogramAggregateFunctionV3 {
    histogram: {
        interval: number;
        property: string;
    };
}

Properties

Properties

histogram: {
    interval: number;
    property: string;
}