...
The data can be queried using KQL and for example show the number of PostPickOrder that has been completed per hour:
Code Block | ||||
---|---|---|---|---|
| ||||
traces
| where customDimensions.eventId startswith "ALMOB2000"
| where customDimensions.alEventName == "PostPickOrder"
| where customDimensions.aadTenantId == "..."
| where customDimensions.alCompany contains "..."
| summarize count() by bin(timestamp, 1h) |
Links with additional information:
...