Skip to content

Instantly share code, notes, and snippets.

@agehlot
Last active September 26, 2022 15:28
Show Gist options
  • Save agehlot/fae839ab0320ea8d2689c664d7b96ed0 to your computer and use it in GitHub Desktop.
Save agehlot/fae839ab0320ea8d2689c664d7b96ed0 to your computer and use it in GitHub Desktop.
// Logs of the last 100 calls
// Get the logs of the most recent 100 calls in the last 24 hours.
ApiManagementGatewayLogs
| where Url != 'https://fortune-prod-apim.azure-api.net/health/check'
| top 100 by TimeGenerated desc
// Get the logs of the requests that contains text fashion in the url.
ApiManagementGatewayLogs
| where Url contains "Fashion"
| top 500 by TimeGenerated desc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment