fleet/schema/tables/system_info.yml
Eric 02437a098e
Schema: change default block scalar used in schema override files (#19296)
Closes: #19271
Closes: #19286

Changes:
- Updated the example in the schema folder readme
- Updated the block scalar used in Fleet's osquery override
documentation (`>-` » `|-`) and removed extra newlines
- Updated the block scalar used in URLs used to create new yaml override
files
- Regenerated osqeury_fleet_schema.json
2024-05-27 18:18:56 -05:00

88 lines
2.3 KiB
YAML

name: system_info
platforms:
- windows
- darwin
- linux
- chrome
columns:
- name: cpu_subtype
platforms:
- darwin
- windows
- linux
- name: cpu_physical_cores
platforms:
- darwin
- windows
- linux
- name: cpu_logical_cores
platforms:
- darwin
- windows
- linux
- name: cpu_microcode
platforms:
- darwin
- windows
- linux
- name: hardware_version
platforms:
- darwin
- windows
- linux
- name: board_vendor
platforms:
- darwin
- windows
- linux
- name: board_model
platforms:
- darwin
- windows
- linux
- name: board_version
platforms:
- darwin
- windows
- linux
- name: board_serial
platforms:
- darwin
- windows
- linux
- name: local_hostname
platforms:
- darwin
- windows
- linux
- name: hostname
type: text
description: Network hostname including domain. For ChromeOS, this is only available if the extension was force-installed by an enterprise policy
- name: computer_name
type: text
description: Friendly computer name (optional). For ChromeOS, if the extension wasn't force-installed by an enterprise policy this will default to 'ChromeOS' only
- name: hardware_serial
type: text
description: The device's serial number. For ChromeOS, this is only available if the extension was force-installed by an enterprise policy
- name: hardware_vendor
type: text
description: Hardware vendor. For ChromeOS, this is only available if the extension was force-installed by an enterprise policy
- name: hardware_model
type: text
description: Hardware model. For ChromeOS, this is only available if the extension was force-installed by an enterprise policy
- name: cpu_brand
type: text
- name: cpu_type
type: text
- name: physical_memory
type: text
examples: |-
See the CPU architecture of a machine as well as who made it and what its
serial number is.
```
SELECT CPU_type, hardware_vendor, hardware_model, hardware_serial FROM system_info;
```
notes: |-
- This table is not a core osquery table. This table requires the [fleetd Chrome extension](https://fleetdm.com/docs/using-fleet/chromeos).