mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
49 lines
No EOL
1.6 KiB
YAML
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 |