1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

- Add an additional parameter '-p' display nagios

performance data in the output. This output can the easily graphed
  with pnp.

PR:		142266
Submitted by:	olli hauer <ohauer@gmx.de>
Approved by:	maintainer
This commit is contained in:
Martin Wilke 2010-02-13 11:28:36 +00:00
parent c6cad2390f
commit a341e3503d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=249770
2 changed files with 75 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= nagios-pf-plugin
PORTVERSION= 0.1
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= http://www.zampanosbits.com/check_pf/ \
http://restek.wwu.edu/~kian/

View File

@ -0,0 +1,74 @@
--- ./check_pf.c.orig 2007-03-08 07:19:40.000000000 +0100
+++ ./check_pf.c 2010-01-03 00:24:23.000000000 +0100
@@ -70,12 +70,13 @@
int ch, wflag, cflag, dev;
int states_warning;
int states_critical;
+ int show_perf=0;
pf_device = "/dev/pf";
wflag = cflag = 0;
- while ((ch = getopt(argc, argv, "Vhw:c:")) != -1) {
+ while ((ch = getopt(argc, argv, "Vhpw:c:")) != -1) {
switch (ch) {
case 'V':
version();
@@ -84,6 +85,9 @@
case 'h':
help();
break;
+ case 'p':
+ show_perf = 1;
+ break;
case 'w':
wflag = 1;
states_warning = strtonum(optarg, 0, ULONG_MAX,
@@ -151,19 +155,34 @@
}
if (ps.states >= states_critical) {
- (void)printf("PF CRITICAL - states: %u (%.1f%% - limit: %u)\n",
+ (void)printf("PF CRITICAL - states: %u (%.1f%% - limit: %u)",
ps.states, percent, pl.limit);
+ if(!show_perf)
+ (void)printf("\n");
+ else
+ (void)printf("|current=%u;%u;%u; percent=%.1f%%; limit=%u;\n",
+ ps.states, states_warning, states_critical, percent, pl.limit);
return (STATE_CRITICAL);
}
if (ps.states >= states_warning) {
- (void)printf("PF WARNING - states: %u (%.1f%% - limit: %u)\n",
+ (void)printf("PF WARNING - states: %u (%.1f%% - limit: %u)",
ps.states, percent, pl.limit);
+ if(!show_perf)
+ (void)printf("\n");
+ else
+ (void)printf("|current=%u;%u;%u; percent=%.1f%%; limit=%u;\n",
+ ps.states, states_warning, states_critical, percent, pl.limit);
return (STATE_WARNING);
}
- (void)printf("PF OK - states: %u (%.1f%% - limit: %u)\n",
+ (void)printf("PF OK - states: %u (%.1f%% - limit: %u)",
ps.states, percent, pl.limit);
+ if(!show_perf)
+ (void)printf("\n");
+ else
+ (void)printf("|current=%u;%u;%u; percent=%.1f%%; limit=%u;\n",
+ ps.states, states_warning, states_critical, percent, pl.limit);
return (STATE_OK);
}
@@ -183,6 +202,8 @@
(void)fprintf(stderr, " ");
(void)fprintf(stderr, "-h - Print the plugin help\n");
(void)fprintf(stderr, " ");
+ (void)fprintf(stderr, "-p - Display additional nagios performance data\n");
+ (void)fprintf(stderr, " ");
(void)fprintf(stderr, "-w number - Warning when <number> states"
" (default: %u%% of state limit)\n", DEFAULT_WARN_PERCENT);
(void)fprintf(stderr, " ");