diff options
| author | Matthias Eble <psychotrahe@gmx.de> | 2009-05-22 23:57:36 +0200 |
|---|---|---|
| committer | Matthias Eble <psychotrahe@gmx.de> | 2009-05-22 23:57:36 +0200 |
| commit | 221cb4920606552d670fdd264757dffe5d884015 (patch) | |
| tree | 3612ee7b4dbb8ac693f2cba5de0883a7fc320457 /plugins | |
| parent | 6f0665719c3510b11d42cdd2cad656b63a408ef8 (diff) | |
| download | monitoring-plugins-221cb4920606552d670fdd264757dffe5d884015.tar.gz | |
Fixed wrong perfdata label for output traffic in check_mrtgtraf
check_mrtgtraf used the label "in" for both input and output traffic.
This fixed, now.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/check_mrtgtraf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c index 3232f1e7..376a5099 100644 --- a/plugins/check_mrtgtraf.c +++ b/plugins/check_mrtgtraf.c | |||
| @@ -199,7 +199,7 @@ main (int argc, char **argv) | |||
| 199 | (int)incoming_warning_threshold, incoming_warning_threshold, | 199 | (int)incoming_warning_threshold, incoming_warning_threshold, |
| 200 | (int)incoming_critical_threshold, incoming_critical_threshold, | 200 | (int)incoming_critical_threshold, incoming_critical_threshold, |
| 201 | TRUE, 0, FALSE, 0), | 201 | TRUE, 0, FALSE, 0), |
| 202 | fperfdata("in", adjusted_outgoing_rate, outgoing_speed_rating, | 202 | fperfdata("out", adjusted_outgoing_rate, outgoing_speed_rating, |
| 203 | (int)outgoing_warning_threshold, outgoing_warning_threshold, | 203 | (int)outgoing_warning_threshold, outgoing_warning_threshold, |
| 204 | (int)outgoing_critical_threshold, outgoing_critical_threshold, | 204 | (int)outgoing_critical_threshold, outgoing_critical_threshold, |
| 205 | TRUE, 0, FALSE, 0)); | 205 | TRUE, 0, FALSE, 0)); |
