fleet/schema/tables/system_info.yml
Eric 4bea8a4c92
Schema: update override column descriptions for system_info and chrome_extensions tables (#14395)
Related to: #14166

Changes:
- updated the override column descriptions for the `system_info` and
`chrome_extensions` tables to include the descriptions from the osquery
schema.
2023-10-10 13:10:49 -05:00

91 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: string
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: string
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: string
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: string
description: Hardware vendor. For ChromeOS, this is only available if the extension was force-installed by an enterprise policy
- name: hardware_model
type: string
description: Hardware model. For ChromeOS, this is only available if the extension was force-installed by an enterprise policy
- name: cpu_brand
type: string
- name: cpu_type
type: string
- name: physical_memory
type: string
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).