2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

use uwsgi not uwsgi_python

This commit is contained in:
Arthur Lutz 2017-05-24 19:09:20 +02:00 committed by GitHub
parent edb7a1f991
commit 7825fc9ed2

View File

@ -27,7 +27,7 @@ if [ "$mode" = "memory" ]; then
exit 0
else
memory_array=(`ps auwx | grep "uwsgi_python" | grep -v grep | awk '{print $6 }'`)
memory_array=(`ps auwx | grep -i "uwsgi" | grep -v grep | awk '{print $6 }'`)
for i in "${memory_array[@]}"
do
@ -46,7 +46,7 @@ elif [ "$mode" = "processes" ]; then
echo "processes.label active processes"
else
echo -n "processes.value "
ps awwwux | grep 'uwsgi_python' | grep -v grep | wc -l
ps awwwux | grep -i 'uwsgi' | grep -v grep | wc -l
exit 0
fi
@ -61,7 +61,7 @@ elif [ "$mode" = "average" ]; then
echo 'uwsgi_average.info The average process size for uWSGI'
else
echo -n "uwsgi_average.value "
ps awwwux | grep 'uwsgi_python' | grep -v grep | awk '{total_mem = $6 * 1024 + total_mem; total_proc++} END{printf("%d\n", total_mem / total_proc)}'
ps awwwux | grep -i 'uwsgi' | grep -v grep | awk '{total_mem = $6 * 1024 + total_mem; total_proc++} END{printf("%d\n", total_mem / total_proc)}'
exit 0
fi