fleet/schema/tables/munki_info.yml
Noah Talerman 78037e246b
Add attribution for Mac Admins tables (#19302)
- Add note for all tables
2024-05-28 12:59:35 -04:00

49 lines
No EOL
1.6 KiB
YAML

name: munki_info
notes: This table is from the [Mac Admins osquery extension](https://github.com/macadmins/osquery-extension).
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