osquery-1/osquery/tables/specs/x/logged_in_users.table

11 lines
310 B
Plaintext
Raw Normal View History

2014-11-23 04:49:37 +00:00
table_name("logged_in_users")
description("Users with an active shell on the system.")
2014-11-23 04:49:37 +00:00
schema([
Column("user", TEXT),
Column("tty", TEXT),
Column("host", TEXT),
Column("time", INTEGER),
2015-02-10 02:18:22 +00:00
Column("pid", INTEGER, "Process (or thread) ID"),
2014-11-23 04:49:37 +00:00
])
implementation("logged_in_users@genLoggedInUsers")