mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 22:49:19 +00:00
For #17577 # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [x] Manual QA for all new/changed functionality - For Orbit and Fleet Desktop changes: - [x] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. (performed only on macOS)
29 lines
No EOL
861 B
YAML
29 lines
No EOL
861 B
YAML
name: parse_xml
|
|
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).
|
|
description: Parses a file as an XML document.
|
|
platforms:
|
|
- darwin
|
|
- windows
|
|
- linux
|
|
evented: false
|
|
columns:
|
|
- name: path
|
|
description: Path of the file to read.
|
|
required: true
|
|
type: text
|
|
- name: fullkey
|
|
description: Key including any parent keys.
|
|
required: false
|
|
type: text
|
|
- name: parent
|
|
description: Parent key when keys are nested in the document.
|
|
required: false
|
|
type: text
|
|
- name: key
|
|
description: XML key
|
|
required: false
|
|
type: text
|
|
- name: value
|
|
description: XML value
|
|
required: false
|
|
type: text |