Created
March 21, 2024 13:18
-
-
Save flinox/ff978e86a9aa7ff32eac81be245bb70b to your computer and use it in GitHub Desktop.
KQL - Operações da API usadas em um intervalo de tempo
This file contains hidden or 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
requests | |
| extend timestampSP = datetime_utc_to_local(timestamp,'America/Sao_Paulo') | |
| where timestampSP > datetime("2024-03-19T20:00:00.000Z") and timestampSP < datetime("2024-03-20T10:00:00.000Z") | |
| where customDimensions["API Name"] == "<api-name>" | |
| distinct tostring(customDimensions["Operation Name"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment