@squidcloud/client
    Preparing search index...

    Interface QueryUserMetricsResponse<NameType>

    Response for a user-defined metric query.

    interface QueryUserMetricsResponse<NameType extends string = string> {
        domain: "user";
        metricName: NameType;
        resultGroups: QueryMetricsResultGroup[];
    }

    Type Parameters

    • NameType extends string = string

    Hierarchy (View Summary)

    Index

    Properties

    domain: "user"

    Specifies the user domain for custom metrics.

    metricName: NameType

    Name of the queried user-defined metric.

    resultGroups: QueryMetricsResultGroup[]

    Result of the metrics query. Contains only 1 element if groupByTags are empty, otherwise contains multiple results grouped by tags.