cpu_info ======== Retrieve cpu hardware info of the machine. Platform support ---------------- Please be aware that some queries can only be run against certain platforms. Below is a list of the supported platforms that this query supports. Zercurity will automatically pause queries from running if errors are detected. **Running a query against an unsupported platform will result in the following error:** ``no such table: cpu_info`` - Windows Table schema ------------ =================== ======= ==================================================== Name Type Description =================== ======= ==================================================== device_id TEXT The DeviceID of the CPU. model TEXT The model of the CPU. manufacturer TEXT The manufacturer of the CPU. processor_type TEXT The processor type, such as Central, Math, or Video. availability TEXT The availability and status of the CPU. cpu_status INTEGER The current operating status of the CPU. number_of_cores TEXT The number of cores of the CPU. logical_processors INTEGER The number of logical processors of the CPU. address_width TEXT The width of the CPU address bus. current_clock_speed INTEGER The current frequency of the CPU. max_clock_speed INTEGER The maximum possible frequency of the CPU. socket_designation TEXT The assigned socket on the board for the given CPU. =================== ======= ==================================================== Query examples -------------- Select all the results for the given table. .. code-block:: sql SELECT * FROM cpu_info;