mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
4bea8a4c92
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.
91 lines
2.3 KiB
YAML
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).
|