tsqtsq - v1.2.0
    Preparing search index...

    Interface AggregateWithParameter

    Parameters for aggregation operators that take an extra parameter (topk, bottomk, quantile, count_values).

    interface AggregateWithParameter {
        by?: string[];
        expr: string;
        parameter: string | number;
        without?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    by?: string[]

    drop all labels except these from the result vector

    expr: string

    vector expression to aggregate

    parameter: string | number

    used for count_values, quantile, bottomk and topk

    without?: string[]

    remove these labels from the result vector