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

81 lines
1.8 KiB
C
Raw Normal View History

2008-06-21 13:33:06 +02:00
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include "common.h"
int swap(int argc, char **argv) {
FILE *f;
char buff[256];
int in, out;
if(argc > 1) {
if(!strcmp(argv[1], "config")) {
puts("graph_title Swap in/out\n"
"graph_args -l 0 --base 1000\n"
"graph_vlabel pages per ${graph_period} in (-) / out (+)\n"
"graph_category system\n"
"swap_in.label swap\n"
"swap_in.type DERIVE\n"
"swap_in.max 100000\n"
"swap_in.min 0\n"
"swap_in.graph no\n"
"swap_out.label swap\n"
"swap_out.type DERIVE\n"
"swap_out.max 100000\n"
"swap_out.min 0\n"
"swap_out.negative swap_in");
print_warncrit("swap_in");
print_warncrit("swap_out");
2008-06-21 13:33:06 +02:00
return 0;
}
if(!strcmp(argv[1], "autoconf")) {
2009-01-23 13:48:30 +01:00
if(0 == access(PROC_STAT, R_OK))
2008-06-21 13:33:06 +02:00
return writeyes();
else
2009-01-23 13:48:30 +01:00
return writeno(PROC_STAT " not readable");
2008-06-21 13:33:06 +02:00
}
}
if(!access("/proc/vmstat", F_OK)) {
in=out=0;
if(!(f=fopen("/proc/vmstat", "r"))) {
fputs("cannot open /proc/vmstat\n", stderr);
return 1;
}
while(fgets(buff, 256, f)) {
if(!in && !strncmp(buff, "pswpin ", 7)) {
++in;
printf("swap_in.value %s", buff+7);
}
else if(!out && !strncmp(buff, "pswpout ", 8)) {
++out;
printf("swap_out.value %s", buff+8);
}
}
fclose(f);
2008-06-21 13:52:14 +02:00
if(!(in*out)) {
2008-06-21 13:33:06 +02:00
fputs("no usable data on /proc/vmstat\n", stderr);
return 1;
}
return 0;
} else {
2009-01-23 13:48:30 +01:00
if(!(f=fopen(PROC_STAT, "r"))) {
fputs("cannot open " PROC_STAT "\n", stderr);
2008-06-21 13:33:06 +02:00
return 1;
}
while(fgets(buff, 256, f)) {
if(!strncmp(buff, "swap ", 5)) {
fclose(f);
if(2 != sscanf(buff+5, "%d %d", &in, &out)) {
2009-01-23 13:48:30 +01:00
fputs("bad data on " PROC_STAT "\n",
stderr);
2008-06-21 13:33:06 +02:00
return 1;
}
printf("swap_in.value %d\nswap_out.value %d\n", in, out);
return 0;
}
}
fclose(f);
2009-01-23 13:48:30 +01:00
fputs("no swap line found in " PROC_STAT "\n", stderr);
2008-06-21 13:33:06 +02:00
return 1;
}
}