mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
Updates to cpu_info data table in Fleet Table Docs per #16993 I am trying something. The arp_cache table .yml has no references to the Column || Type || Description schema table on the page, so, I am assuming you are doing magic to combine the other sections of the page (Description, Examples, Notes) with the data from osquery tables. If I needed to make explicit reference to them, I am dumb. If I only to need to make explicit reference to them IFF I am changing the schema table, yay. Thanks!!!!!!! --------- Co-authored-by: Eric <eashaw@sailsjs.com>
13 lines
932 B
YAML
13 lines
932 B
YAML
name: cpu_info
|
|
description: |- # (required) string - The description for this table. Note: this field supports Markdown
|
|
The `cpu_info` table expresses the data made available from a computer or mobile device by its Central Processing Unit (CPU).
|
|
examples: |- # (optional) string - An example query for this table. Note: This field supports Markdown
|
|
Basic query:
|
|
|
|
```
|
|
SELECT * FROM cpu_info;
|
|
```
|
|
notes: |- # (optional) string - Notes about this table. Note: This field supports Markdown.
|
|
The `cpu_info` table is a good example of the cross-platform capabilities of osquery. It can be used on Linux, Mac and Windows hardware.
|
|
|
|
As seen in the schema table above, there are differences in CPU metadata made available across different platforms. These differences arise from various hardware manufacturers and operating systems not necessarily being held to an industry-wide, agreed-upon standard or protocol for CPU data.
|