mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Fix copy/paste on schema (#42643)
Fixes a bug introduced in https://github.com/fleetdm/fleet/pull/42569/changes
This commit is contained in:
parent
d8588ed790
commit
0b4e5cdc89
3 changed files with 10 additions and 8 deletions
|
|
@ -16626,7 +16626,7 @@
|
|||
"fleetRepoUrl": "https://github.com/fleetdm/fleet/blob/main/schema/tables/macos_rsr.yml"
|
||||
},
|
||||
{
|
||||
"name": "macos_thermal_pressure",
|
||||
"name": "macos_soc_power",
|
||||
"platforms": [
|
||||
"darwin"
|
||||
],
|
||||
|
|
@ -16666,13 +16666,13 @@
|
|||
"name": "interval",
|
||||
"type": "integer",
|
||||
"required": false,
|
||||
"description": "Sampling duration in milliseconds. Longer intervals produce more accurate averages."
|
||||
"description": "Sampling duration in milliseconds. Longer intervals produce more accurate averages. (Default: 3000.)\n"
|
||||
}
|
||||
],
|
||||
"notes": "This table is not a core osquery table. It is included as part of Fleet's agent ([fleetd](https://fleetdm.com/docs/get-started/anatomy#fleetd)). This table is from the [Mac Admins osquery extension](https://github.com/macadmins/osquery-extension).",
|
||||
"evented": false,
|
||||
"url": "https://fleetdm.com/tables/macos_thermal_pressure",
|
||||
"fleetRepoUrl": "https://github.com/fleetdm/fleet/blob/main/schema/tables/macos_thermal_pressure.yml"
|
||||
"url": "https://fleetdm.com/tables/macos_soc_power",
|
||||
"fleetRepoUrl": "https://github.com/fleetdm/fleet/blob/main/schema/tables/macos_soc_power.yml"
|
||||
},
|
||||
{
|
||||
"name": "macos_thermal_pressure",
|
||||
|
|
@ -16697,7 +16697,7 @@
|
|||
"name": "interval",
|
||||
"type": "integer",
|
||||
"required": false,
|
||||
"description": "Sampling duration in milliseconds."
|
||||
"description": "Sampling duration in milliseconds. (Default 1000.)\n"
|
||||
}
|
||||
],
|
||||
"notes": "This table is not a core osquery table. It is included as part of Fleet's agent ([fleetd](https://fleetdm.com/docs/get-started/anatomy#fleetd)). This table is from the [Mac Admins osquery extension](https://github.com/macadmins/osquery-extension).",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
name: macos_thermal_pressure
|
||||
name: macos_soc_power
|
||||
platforms:
|
||||
- darwin
|
||||
description: Power draw in milliwatts for the CPU, GPU, Apple Neural Engine (ANE), and total System on a Chip (SoC), plus GPU active ratio, sampled via powermetrics. Requires root.
|
||||
|
|
@ -26,6 +26,7 @@ columns:
|
|||
- name: interval
|
||||
type: integer
|
||||
required: false
|
||||
description: Sampling duration in milliseconds. Longer intervals produce more accurate averages.
|
||||
description: |
|
||||
Sampling duration in milliseconds. Longer intervals produce more accurate averages. (Default: 3000.)
|
||||
notes: This table is not a core osquery table. It is included as part of Fleet's agent ([fleetd](https://fleetdm.com/docs/get-started/anatomy#fleetd)). This table is from the [Mac Admins osquery extension](https://github.com/macadmins/osquery-extension).
|
||||
evented: false
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ columns:
|
|||
- name: interval
|
||||
type: integer
|
||||
required: false
|
||||
description: Sampling duration in milliseconds.
|
||||
description: |
|
||||
Sampling duration in milliseconds. (Default 1000.)
|
||||
notes: This table is not a core osquery table. It is included as part of Fleet's agent ([fleetd](https://fleetdm.com/docs/get-started/anatomy#fleetd)). This table is from the [Mac Admins osquery extension](https://github.com/macadmins/osquery-extension).
|
||||
evented: false
|
||||
|
|
|
|||
Loading…
Reference in a new issue