Identify CPU Configuration
Query
// Use Case: Extract information about the CPU's architecture, core count, and logical processor count. This can be useful for understanding the computing capabilities of the device.
Cpu
| project Architecture, CoreCount, LogicalProcessorCountExplanation
This query is designed to retrieve specific details about a computer's CPU from a dataset named "Cpu." It focuses on extracting three key pieces of information:
- Architecture: The type of CPU architecture (e.g., x86, x64, ARM).
- CoreCount: The number of physical cores in the CPU.
- LogicalProcessorCount: The total number of logical processors, which includes both physical cores and any additional virtual cores created through technologies like hyper-threading.
The purpose of this query is to help understand the computing power and capabilities of a device by examining these CPU characteristics.
Details

Ugur Koc
Released: December 13, 2024
Tables
Cpu
Keywords
CpuArchitectureCoreCountLogicalProcessorCount
Operators
project