osquery-1/specs/posix/load_average.table
2017-06-10 15:25:20 -07:00

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;",
])