Build precise queries to find exactly what you need
Press ESC to close
To get rid of the deprecation warnings:
— check_smartmon.py.orig 2011-03-15 15:28:50.000000000 +0200 +++ check_smartmon.py 2011-03-15 15:40:48.000000000 +0200 @@ -28,6 +28,7 @@
import os.path import sys +import warnings
from optparse import OptionParser
@@ -111,6 +112,8 @@ # get health status cmd = “%s -H %s” % (path, device) vprint(3, “Get device health status: %s” % cmd) + # filter out deprecation warnings + warnings.filterwarnings(‘ignore’, category=DeprecationWarning, message=r’os.popen3′) (child_stdin, child_stdout, child_stderr) = os.popen3(cmd) line = child_stderr.readline() if len(line):
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!