Skip to content

Instantly share code, notes, and snippets.

@flinox
Last active March 21, 2024 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flinox/edf752c4ea6c8de5b0ad4ca6c41a1445 to your computer and use it in GitHub Desktop.
Save flinox/edf752c4ea6c8de5b0ad4ca6c41a1445 to your computer and use it in GitHub Desktop.
KQL - Filtra os últimos requests para uma API e uma Operacao especifica em um intervalo de tempo especifico
union isfuzzy=true
availabilityResults,
requests,
exceptions,
pageViews,
traces,
customEvents,
dependencies
| where timestamp > datetime("2024-03-21T00:26:50.333Z") and timestamp < datetime("2024-03-21T00:56:50.333Z")
| where customDimensions["API Name"] in ("<nome-api>")
| where customDimensions["Operation Name"] in ("<nome-operacao>")
| order by timestamp desc
| take 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment