mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 06:48:54 +00:00
29 lines
No EOL
860 B
YAML
29 lines
No EOL
860 B
YAML
name: parse_jsonl
|
|
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)).
|
|
description: Parses each line of a file as a separate JSON document. See `parse_json` to treat an entire file as a single JSON 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 or document indices.
|
|
required: false
|
|
type: text
|
|
- name: parent
|
|
description: Parent key when keys are nested in the document.
|
|
required: false
|
|
type: text
|
|
- name: key
|
|
description: INI key
|
|
required: false
|
|
type: text
|
|
- name: value
|
|
description: INI value
|
|
required: false
|
|
type: text |