1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

Changed log split counter back to default value

This commit is contained in:
Daniel Schmitz 2015-02-05 13:54:24 +08:00
parent 37a7317c1d
commit 2338b83eb3

View file

@ -96,7 +96,7 @@ http_codes[503]='Service Unavailable'
do_ () { # Fetch
declare -A line_counts
values=`awk '{print $6}' $log | sort | uniq -c`
values=`awk '{print $9}' $log | sort | uniq -c`
while read -r line; do
read -a tmp <<< "$line";
line_counts[${tmp[1]}]=${tmp[0]};