Note the meaning of version numbers
[khatus.git] / v2 / src / awk / exe / parse_loadavg_file.awk
CommitLineData
75b23ff8
SK
1# 0.71 1.04 1.12 1/325 2409
2{
3 split($4, sched, "/")
4 print("load_avg_1min" , $1)
5 print("load_avg_5min" , $2)
6 print("load_avg_15min" , $3)
7 print("kern_sched_queue_runnable" , sched[1])
8 print("kern_sched_queue_total" , sched[2])
9 print("kern_sched_latest_pid" , $5)
10}
This page took 0.0206 seconds and 4 git commands to generate.