Created
June 16, 2021 18:05
-
-
Save evanpurkhiser/cc36da61aee2d2551d84f6382cf9762a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2m should mean 2 minutes for duration filters (as opposed to 2 million) | |
- query: transaction.duration:>2m | |
result: | |
- type: filter | |
filter: duration | |
negated: false | |
operator: '>' | |
key: { type: keySimple, value: transaction.duration, quoted: false } | |
value: { type: valueDuration, value: 2, unit: m } | |
- { type: spaces, value: "" } | |
[ | |
{ | |
"comment": "2m should mean 2 minutes for duration filters (as opposed to 2 million)", | |
"query": "transaction.duration:>2m", | |
"result": [ | |
{ | |
"type": "filter", | |
"filter": "duration", | |
"negated": false, | |
"key": {"type": "keySimple", "value": "transaction.duration", "quoted": false}, | |
"operator": ">", | |
"value": {"type": "valueDuration", "value": 2, "unit": "m"} | |
}, | |
{"type": "spaces", "value": ""} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment