Build precise queries to find exactly what you need
Press ESC to close
MS changed the counters on W2012. To get it to work on 2012 change these lines
bytes_in=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -s ${password} -v COUNTER -l “Network Interface(${interface})Bytes Received/sec”) bytes_out=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -s ${password} -v COUNTER -l “Network Interface(${interface})Bytes Sent/sec”) else # Without password bytes_in=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -v COUNTER -l “Network Interface(${interface})Bytes Received/sec”) bytes_out=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -v COUNTER -l “Network Interface(${interface})Bytes Sent/sec”) fi
To this.
bytes_in=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -s ${password} -v COUNTER -l “Network Adapter(${interface})Bytes Received/sec”) bytes_out=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -s ${password} -v COUNTER -l “Network Adapter(${interface})Bytes Sent/sec”) else # Without password bytes_in=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -v COUNTER -l “Network Adapter(${interface})Bytes Received/sec”) bytes_out=$(${pluginlocation}/check_nt -H ${host} -p ${insertport} -v COUNTER -l “Network Adapter(${interface})Bytes Sent/sec”)
We’ve completely redesigned the world’s largest repository of Nagios plugins and monitoring tools. Join thousands of users sharing monitoring solutions for servers, applications, and everything in between.
Due to our redesign, all existing accounts require a password reset to access your account again.
Ready to explore 6,100+ projects and contribute to the community?
Reset Password Create Account
Happy Monitoring!