Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The data can be queried using KQL and for example show the number of PostPickOrder that has been completed per hour: 

Code Block
languagesql
collapsetrue
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:

...