Query Details

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, LogicalProcessorCount

Explanation

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:

  1. Architecture: The type of CPU architecture (e.g., x86, x64, ARM).
  2. CoreCount: The number of physical cores in the CPU.
  3. 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 profile picture

Ugur Koc

Released: December 13, 2024

Tables

Cpu

Keywords

CpuArchitectureCoreCountLogicalProcessorCount

Operators

project

Actions

GitHub