This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # Created by Alan M. Orther - alan.orther@gmail.com | |
| # This script is used to monitor a server's load and email an alert if the | |
| # threshold is met or exceeded over a 3 minute average. | |
| import os | |
| import sys | |
| import getopt | |
| import multiprocessing | |
| from time import sleep |
OlderNewer