Home Directory Plugins Network Connections, Stats and Bandwidth Linux Check PPS, BPS, or Current Line Rate % of NIC

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Linux Check PPS, BPS, or Current Line Rate % of NIC

Rating
0 votes
Favoured:
0
Last Release Date
2014-05-15
Compatible With
  • Nagios 3.x
  • Nagios 4.x
  • Nagios XI
Hits
27343
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
Nagios plug-in that calculates receiving PPS, BPS, and percentage of line-rate (LR)
from Linux kernel statistics by reading from procfs and notifies if above a given threshold.
Nagios plug-in that calculates receiving PPS, BPS, and percentage of line-rate (LR) from Linux kernel statistics by reading from procfs and reports if above a given threshold.

Options:

-i Network interface
-p Use PPS as criteria
-b Use BPS as criteria
-r Use percentage of line-rate as criteria
-t Time interval in seconds (def: 1)
-w Warning threshold
-c Critical threshold

###########
# Examples: #
###########

# 1.) Return critical if there's more than 10k PPS
# $ ./check_pps.sh -i eth0 -w 8000 -c 10000 -p
#
# 2.) Return critical if there's more than 1m BPS
# $ ./check_pps.sh -i eth0 -w 500000 -c 1000000 -b
#
# 2.) Return critical if we've reach 70% of the NIC's line-rate capacity
# $ ./check_pps.sh -i eth0 -w 50 -c 70 -r