Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_connections
1.0
2011-10-05
- Nagios 2.x
- Nagios 3.x
96488
File | Description |
---|---|
check_connections | check_connections |
check_connections.wsf | check_connections.wsf |
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
Check established conenctions using netstat.
Requires the Nagios::Plugin module and netstat binary.
Provides performance data about established connections, listeners and connections in wait_close state.
Update 1:
Added a windows version.
I've also provided a nagiosgraph map config:
# Connections (Linux)
# established=8;; waiting=0;; listeners=4;;
/perfdata:.*established=([.0-9]+).*swaiting=([.0-9]+).*slisteners=([.0-9]+)./
and push @s, [ 'connections',
[ 'established', GAUGE, $1 ],
[ 'waiting', GAUGE, $2 ],
[ 'listeners', GAUGE, $3 ] ];
Requires the Nagios::Plugin module and netstat binary.
Provides performance data about established connections, listeners and connections in wait_close state.
Update 1:
Added a windows version.
I've also provided a nagiosgraph map config:
# Connections (Linux)
# established=8;; waiting=0;; listeners=4;;
/perfdata:.*established=([.0-9]+).*swaiting=([.0-9]+).*slisteners=([.0-9]+)./
and push @s, [ 'connections',
[ 'established', GAUGE, $1 ],
[ 'waiting', GAUGE, $2 ],
[ 'listeners', GAUGE, $3 ] ];
Reviews (0)
Be the first to review this listing!