fleet/schema/tables/munki_info.yml
JD d6456029b9
Adds attribution to MacAdmins osquery extension. (#14616)
Adds attribution to MacAdmins foundation osquery extension.
2023-10-20 06:57:04 -07:00

51 lines
1.9 KiB
YAML

name: munki_info
notes: This table is not a core osquery table. It is included as part of [Fleetd](https://fleetdm.com/docs/using-fleet/orbit), the osquery manager from Fleet. Fleetd can be built with [fleetctl](https://fleetdm.com/docs/using-fleet/adding-hosts#osquery-installer).<p> Code based on work by [macadmins/osquery-extension](https://github.com/macadmins/osquery-extension) and [Kolide](https://github.com/kolide/launcher).
description: Information from the last [Munki](https://github.com/munki/munki) run.
platforms:
- darwin
evented: false
examples: >-
Output errors, warnings and problematic installations from Munki.
```
SELECT errors, warnings, problem_installs FROM munki_info ;
```
columns:
- name: console_user
description: The username of the user currently logged into the console of the Mac.
required: false
type: text
- name: end_time
description: The date and time at which the latest Munki run ended.
required: false
type: text
- name: errors
description: If Munki encountered any error during the last run, they will be returned in this column.
required: false
type: text
- name: manifest_name
description: The internal manifest name
required: false
type: text
- name: problem_installs
description: A list of installs that did not succeed, if any.
required: false
type: text
- name: start_time
description: The date and time at which the latest Munki run started.
required: false
type: text
- name: success
description: Shows if the Munki run was a success (true), or not (false).
required: false
type: text
- name: version
description: The version of Munki used during the last run.
required: false
type: text
- name: warnings
description: If Munki encountered any error during the last run, they will be returned in this column.
required: false
type: text