Identify CPU Architecture Distribution
Query
// This query summarizes the distribution of CPU architectures across devices.
Cpu
| summarize DeviceCount=count() by Architecture, Manufacturer, ModelExplanation
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.
Details

Ugur Koc
Released: February 28, 2025
Tables
Cpu
Keywords
CpuArchitectureManufacturerModelDevices
Operators
summarizecountby