Last active
September 26, 2022 15:28
-
-
Save agehlot/fae839ab0320ea8d2689c664d7b96ed0 to your computer and use it in GitHub Desktop.
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
// 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