Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 681 Bytes

GraphURIAPIRequestStats.md

File metadata and controls

17 lines (13 loc) · 681 Bytes

GraphAPI URI Request Statistics

Query Information

Description

Retrieving request statistics gives us the opportunity for new use cases. One can now summarize all the GraphAPI request types easily with the following query. The unique deltatokens have been removed from the data, returning a better overview of the executed requests.

References

Sentinel

MicrosoftGraphActivityLogs
| extend ParsedUri = tostring(parse_url(RequestUri).Path)
| summarize TotalRequest = count() by ParsedUri
| sort by TotalRequest