2015-09-03 19:22:42 +00:00
|
|
|
table_name("osquery_events")
|
|
|
|
description("Information about the event publishers and subscribers.")
|
|
|
|
schema([
|
|
|
|
Column("name", TEXT, "Event publisher or subscriber name"),
|
|
|
|
Column("publisher", TEXT, "Name of the associated publisher"),
|
|
|
|
Column("type", TEXT, "Either publisher or subscriber"),
|
|
|
|
Column("subscriptions", INTEGER,
|
|
|
|
"Number of subscriptions the publisher received or subscriber used"),
|
|
|
|
Column("events", INTEGER,
|
|
|
|
"Number of events emitted or received since osquery started"),
|
2016-08-29 13:57:24 +00:00
|
|
|
Column("refreshes", INTEGER, "Publisher only: number of runloop restarts"),
|
2015-09-03 19:22:42 +00:00
|
|
|
Column("active", INTEGER,
|
|
|
|
"1 if the publisher or subscriber is active else 0"),
|
|
|
|
])
|
|
|
|
attributes(utility=True)
|
|
|
|
implementation("osquery@genOsqueryEvents")
|