mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-18 17:21:28 +08:00
16 lines
375 B
TypeScript
16 lines
375 B
TypeScript
export enum QueryParams {
|
|
interval = 'interval',
|
|
startTime = 'startTime',
|
|
endTime = 'endTime',
|
|
service = 'service',
|
|
error = 'error',
|
|
operation = 'operation',
|
|
kind = 'kind',
|
|
latencyMax = 'latencyMax',
|
|
latencyMin = 'latencyMin',
|
|
selectedTags = 'selectedTags',
|
|
aggregationOption = 'aggregationOption',
|
|
entity = 'entity',
|
|
resourceAttributes = 'resourceAttribute',
|
|
}
|