Fix copy/paste on schema (#42643)

Fixes a bug introduced in
https://github.com/fleetdm/fleet/pull/42569/changes
This commit is contained in:
Lucas Manuel Rodriguez 2026-03-30 10:23:37 -03:00 committed by GitHub
parent d8588ed790
commit 0b4e5cdc89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 8 deletions

View file

@ -16626,7 +16626,7 @@
"fleetRepoUrl": "https://github.com/fleetdm/fleet/blob/main/schema/tables/macos_rsr.yml" "fleetRepoUrl": "https://github.com/fleetdm/fleet/blob/main/schema/tables/macos_rsr.yml"
}, },
{ {
"name": "macos_thermal_pressure", "name": "macos_soc_power",
"platforms": [ "platforms": [
"darwin" "darwin"
], ],
@ -16666,13 +16666,13 @@
"name": "interval", "name": "interval",
"type": "integer", "type": "integer",
"required": false, "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).", "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, "evented": false,
"url": "https://fleetdm.com/tables/macos_thermal_pressure", "url": "https://fleetdm.com/tables/macos_soc_power",
"fleetRepoUrl": "https://github.com/fleetdm/fleet/blob/main/schema/tables/macos_thermal_pressure.yml" "fleetRepoUrl": "https://github.com/fleetdm/fleet/blob/main/schema/tables/macos_soc_power.yml"
}, },
{ {
"name": "macos_thermal_pressure", "name": "macos_thermal_pressure",
@ -16697,7 +16697,7 @@
"name": "interval", "name": "interval",
"type": "integer", "type": "integer",
"required": false, "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).", "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).",

View file

@ -1,4 +1,4 @@
name: macos_thermal_pressure name: macos_soc_power
platforms: platforms:
- darwin - 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. 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 - name: interval
type: integer type: integer
required: false 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). 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 evented: false

View file

@ -14,6 +14,7 @@ columns:
- name: interval - name: interval
type: integer type: integer
required: false 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). 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 evented: false