mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
11 lines
353 B
Plaintext
11 lines
353 B
Plaintext
table_name("load_average")
|
|
description("Displays information about the system wide load averages.")
|
|
schema([
|
|
Column("period", TEXT, "Period over which the average is calculated."),
|
|
Column("average", TEXT, "Load average over the specified period."),
|
|
])
|
|
implementation("load_average@genLoadAverage")
|
|
examples([
|
|
"select * from load_average;",
|
|
])
|