mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-29 01:12:04 +08:00

* feat: sort logs in ascending order Co-authored-by: gitstart <gitstart@gitstart.com> Co-authored-by: Rubens Rafael <70234898+RubensRafael@users.noreply.github.com> Co-authored-by: RubensRafael <rubensrafael2@live.com> * refactor: requested changes Co-authored-by: Nitesh Singh <nitesh.singh@gitstart.dev> Co-authored-by: niteshsingh1357 <niteshsingh1357@gmail.com> Co-authored-by: RubensRafael <rubensrafael2@live.com> * fix: lint Co-authored-by: niteshsingh1357 <niteshsingh1357@gmail.com> Co-authored-by: Nitesh Singh <nitesh.singh@gitstart.dev> Co-authored-by: RubensRafael <rubensrafael2@live.com> * chore: removed the magic string --------- Co-authored-by: gitstart <gitstart@users.noreply.github.com> Co-authored-by: gitstart <gitstart@gitstart.com> Co-authored-by: Nitesh Singh <nitesh.singh@gitstart.dev> Co-authored-by: Rubens Rafael <70234898+RubensRafael@users.noreply.github.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com> Co-authored-by: RubensRafael <rubensrafael2@live.com> Co-authored-by: Vishal Sharma <makeavish786@gmail.com> Co-authored-by: niteshsingh1357 <niteshsingh1357@gmail.com>
20 lines
453 B
TypeScript
20 lines
453 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',
|
|
graphType = 'graphType',
|
|
widgetId = 'widgetId',
|
|
order = 'order',
|
|
q = 'q',
|
|
}
|