Skip to content

Commit

Permalink
Create GraphURIAPIRequestStats.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Bert-JanP committed May 6, 2024
1 parent b411ca1 commit 3d437bd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Graph API/GraphURIAPIRequestStats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 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
- https://learn.microsoft.com/en-us/graph/microsoft-graph-activity-logs-overview#what-data-is-available-in-the-microsoft-graph-activity-logs

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

0 comments on commit 3d437bd

Please sign in to comment.