-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmonitoring.sh
126 lines (101 loc) · 4.07 KB
/
monitoring.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/bin/bash
declare -a TEMP=$(mktemp /temp_monitoring.XXXXXXXX)
function get_disk_info() {
# df command and cromwell root field
df | grep cromwell_root
}
function get_disk_usage() {
# get disk usage field
get_disk_info | awk '{ print $5 }'
}
function get_mem_info() {
# /proc/meminfo
cat /proc/meminfo
}
function get_mem_available() {
# mem unused from /proc/meminfo
get_mem_info | grep MemAvailable | awk 'BEGIN { FS=" " } ; { print $2 }'
}
function get_mem_total() {
# mem total from /proc/meminfo
get_mem_info | grep MemTotal | awk 'BEGIN { FS=" " } ; { print $2 }'
}
function get_mem_usage() {
# memTotal and memAvailable
local -r mem_total=$(get_mem_total)
local -r mem_available=$(get_mem_available)
# usage = 100 * mem_used / mem_total
local -r mem_used=$(($mem_total-$mem_available))
echo "$mem_used" "$mem_total" "%"| awk '{ print 100*($1/$2)$3 }'
}
function get_cpu_info() {
# cpu info from /proc/stat
cat /proc/stat | grep "cpu "
}
function get_cpu_total() {
# get the total cpu usage since a given time (including idle and iowait)
# user+nice+system+idle+iowait+irq+softirq+steal
get_cpu_info | awk 'BEGIN { FS=" " } ; { print $2+$3+$4+$5+$6+$7+$8+$9 }'
}
function get_cpu_used() {
# get the cpu usage since a given time (w/o idle or iowait)
# user+nice+system+irq+softirq+steal
get_cpu_info | awk 'BEGIN { FS=" " } ; { print $2+$3+$4+$7+$8+$9 }'
}
function get_cpu_usage() {
# get the cpu usage since a given time (w/o idle or iowait)
# user+nice+system+irq+softirq+steal
local -r cpu_used_cur=$(get_cpu_used)
# get the total cpu usage since a given time (including idle and iowait)
# user+nice+system+idle+iowait+irq+softirq+steal
local -r cpu_total_cur=$(get_cpu_total)
# read in previous cpu usage values
read -r -a cpu_prev < ${TEMP}
local -r cpu_used_prev=${cpu_prev[0]}
local -r cpu_total_prev=${cpu_prev[1]}
# save current values as prev values for next iteration
cpu_prev[0]=$cpu_used_cur
cpu_prev[1]=$cpu_total_cur
echo "${cpu_prev[@]}" > ${TEMP}
# usage = 100 * (cpu_used_cur - cpu_used_prev) / (cpu_total_cur-cpu_total_prev)
echo "$cpu_used_cur" "$cpu_used_prev" "$cpu_total_cur" "$cpu_total_prev" "%"| awk 'BEGIN {FS=" "} ; { print 100*(($1-$2)/($3-$4))$5 }'
}
function print_usage() {
echo [$(date)]
echo \* CPU usage: "$(get_cpu_usage)"
echo \* Memory usage: "$(get_mem_usage)"
echo \* Disk usage: $(get_disk_usage)
}
function print_summary() {
# display header information
echo ==================================
echo =========== MONITORING ===========
echo ==================================
# summary info
echo --- General Information ---
# number of cores
echo \#CPU: $(nproc)
# multiply by 10^-6 to convert KB to GB
echo Total Memory: $(echo $(get_mem_total) 1000000 | awk '{ print $1/$2 }')G
echo Total Disk space: $(df -h | grep cromwell_root | awk '{ print $2}')
}
function main() {
# disk, mem and cpu general statisitcs
print_summary
# create variable to store cpu being used (cpu_prev[0]) and total cpu total (cpu_prev[1])
# save variable to a temp file to allow passing in values to a function
declare -a cpu_prev
cpu_prev[0]=$(get_cpu_used)
cpu_prev[1]=$(get_cpu_total)
# save global values to temp file to allow passing in values to a function
echo "${cpu_prev[@]}" > ${TEMP}
# sleep b/w getting usage and intially storing the cpu_previous usage values
# this is b/c cpu usage values are time dependent
# to calculate cpu usage, values must be determined from 2 diff time stamps
sleep 1
# get usage of disk, cpu and mem every 30 sec
echo
echo --- Runtime Information ---
while true; do print_usage; sleep 30; done
}
main