osquery-1/specs/posix/augeas.table
2016-11-20 14:13:55 -08:00

13 lines
485 B
Plaintext

table_name("augeas", aliases=["configurations"])
description("Configuration files parsed by augeas.")
schema([
Column("node", TEXT, "The node path of the configuration item"),
Column("value", TEXT, "The value of the configuration item"),
Column("label", TEXT, "The label of the configuration item"),
Column("path", TEXT, "The path to the configuration file")
])
implementation("other/augeas@genAugeas")
examples([
"select * from augeas where path = '/etc/hosts'",
])