mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
ba8ae8797e
- Add documentation for new tables so that they show up on fleetdm.com and the sidebar in the Fleet UI --------- Co-authored-by: Rachael Shaw <r@rachael.wtf> Co-authored-by: Jack-Daniyel Strong <jack@jdstrong.com> Co-authored-by: Eric <eashaw@sailsjs.com>
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
name: firefox_preferences
|
|
description: Get the filepath where the host's Firefox preferences live.
|
|
evented: false
|
|
notes: This table is not a core osquery table. It is included as part of fleetd, the osquery manager from Fleet. Code based on work by [Kolide](https://github.com/kolide/launcher).
|
|
platforms:
|
|
- darwin
|
|
columns:
|
|
- name: path
|
|
description: The path to the host's Firefox preferences.
|
|
type: text
|
|
required: true
|
|
- name: key
|
|
description: A specific item that describes the path.
|
|
type: text
|
|
required: false
|
|
- name: value
|
|
description: The value for the specified key.
|
|
type: text
|
|
required: false
|
|
- name: fullkey
|
|
description: The expanded name of the specific item that describes the path.
|
|
type: text
|
|
required: false
|
|
- name: parent
|
|
description: The key's parent.
|
|
type: text
|
|
required: false
|
|
- name: query
|
|
description: The query is printed in this column. For example the SQL `SELECT * FROM firefox_preferences WHERE path = 'testdata/prefs.js'` will print "*" in the query column.
|
|
type: text
|
|
required: false
|
|
|