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"
|
"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).",
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue