Query Details

Identify CPU Architecture Distribution

Query

// This query summarizes the distribution of CPU architectures across devices.
Cpu
| summarize DeviceCount=count() by Architecture, Manufacturer, Model

Explanation

This query is analyzing data about devices and is focused on understanding the variety of CPU architectures present. It does this by counting how many devices there are for each combination of CPU architecture, manufacturer, and model. The result will show you how many devices exist for each specific architecture-manufacturer-model trio.