mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
11 lines
388 B
Plaintext
11 lines
388 B
Plaintext
table_name("uptime")
|
|
description("Track time passed since last boot.")
|
|
schema([
|
|
Column("days", INTEGER, "Days of uptime"),
|
|
Column("hours", INTEGER, "Hours of uptime"),
|
|
Column("minutes", INTEGER, "Minutes of uptime"),
|
|
Column("seconds", INTEGER, "Seconds of uptime"),
|
|
Column("total_seconds", BIGINT, "Total uptime seconds"),
|
|
])
|
|
implementation("system/uptime@genUptime")
|