interface ApiMetricsDailyParams {
    fromTimestamp?: null | string;
    limit?: null | number;
    page?: null | number;
    tags?: (null | string)[];
    toTimestamp?: null | string;
    traceName?: null | string;
    userId?: null | string;
}

Properties

fromTimestamp?: null | string

Optional filter to only include traces and observations on or after a certain datetime (ISO 8601)

date-time

limit?: null | number

limit of items per page

page?: null | number

page number, starts at 1

tags?: (null | string)[]

Optional filter for metrics where traces include all of these tags

toTimestamp?: null | string

Optional filter to only include traces and observations before a certain datetime (ISO 8601)

date-time

traceName?: null | string

Optional filter by the name of the trace

userId?: null | string

Optional filter by the userId associated with the trace