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

12 lines
297 B
Plaintext
Raw Normal View History

2014-09-04 22:20:28 +00:00
table_name("last")
description("Track of all logins and logouts to the system.")
2014-09-04 22:20:28 +00:00
schema([
2014-11-12 18:27:44 +00:00
Column("username", TEXT),
Column("tty", TEXT),
Column("pid", INTEGER),
Column("type", INTEGER),
Column("time", INTEGER),
Column("host", TEXT),
2014-09-04 22:20:28 +00:00
])
implementation("last@genLastAccess")