Resources for “A System Monitoring Dashboard”
Listings for this Article: ftp.linuxjournal.com/pub/lj/listings/issue137/8216.tgz
GNU wget: www.gnu.org/software/wget/wget.html
Bash Reference Manual: www.gnu.org/software/bash/manual/bashref.html
SMTP.pm: search.cpan.org/~gbarr/libnet-1.19/Net/SMTP.pm
“How to Send Email with Perl's Net::SMTP”: perl.about.com/b/a/007039.htm
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Sponsored by AMD
If you already use virtualized infrastructure, you are well on your way to leveraging the power of the cloud. Virtualization offers the promise of limitless resources, but how do you manage that scalability when your DevOps team doesn’t scale? In today’s hypercompetitive markets, fast results can make a difference between leading the pack vs. obsolescence. Organizations need more benefits from cloud computing than just raw resources. They need agility, flexibility, convenience, ROI, and control.
Stackato private Platform-as-a-Service technology from ActiveState extends your private cloud infrastructure by creating a private PaaS to provide on-demand availability, flexibility, control, and ultimately, faster time-to-market for your enterprise.
Sponsored by ActiveState
| Non-Linux FOSS: libnotify, OS X Style | Jun 18, 2013 |
| Containers—Not Virtual Machines—Are the Future Cloud | Jun 17, 2013 |
| Lock-Free Multi-Producer Multi-Consumer Queue on Ring Buffer | Jun 12, 2013 |
| Weechat, Irssi's Little Brother | Jun 11, 2013 |
| One Tail Just Isn't Enough | Jun 07, 2013 |
| Introduction to MapReduce with Hadoop on Linux | Jun 05, 2013 |
- Containers—Not Virtual Machines—Are the Future Cloud
- Non-Linux FOSS: libnotify, OS X Style
- Linux Systems Administrator
- Lock-Free Multi-Producer Multi-Consumer Queue on Ring Buffer
- Validate an E-Mail Address with PHP, the Right Way
- RSS Feeds
- Introduction to MapReduce with Hadoop on Linux
- Weechat, Irssi's Little Brother
- Senior Perl Developer
- Technical Support Rep
- Reply to comment | Linux Journal
2 hours 52 min ago - Reply to comment | Linux Journal
3 hours 37 min ago - Didn't read
3 hours 47 min ago - Reply to comment | Linux Journal
3 hours 52 min ago - Poul-Henning Kamp: welcome to
6 hours 2 min ago - This has already been done
6 hours 3 min ago - Reply to comment | Linux Journal
6 hours 49 min ago - Welcome to 1998
7 hours 37 min ago - notifier shortcomings
8 hours 1 min ago - heroku?
9 hours 38 min ago
Featured Jobs
| Linux Systems Administrator | Houston and Austin, Texas | Host Gator |
| Senior Perl Developer | Austin, Texas | Host Gator |
| Technical Support Rep | Houston and Austin, Texas | Host Gator |
| UX Designer | Austin, Texas | Host Gator |
| Web & UI Developer (JavaScript & j Query) | Austin, Texas | Host Gator |
Free Webinar: Hadoop
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Some of key questions to be discussed are:
- What is the “typical” Hadoop cluster and what should be installed on the different machine types?
- Why should you consider the typical workload patterns when making your hardware decisions?
- Are all microservers created equal for Hadoop deployments?
- How do I plan for expansion if I require more compute, memory, storage or networking?




Comments
scripts could be improved, tested more thoroughly
I read the article and looked forward to trying out the scripts. It seemed like just what we need. Some very good ideas in here but the scripts should probably be tested on a more common distro and checked for compliance with FHS.
I spent a few minutes to try testing the scripts and soon decided it was not worth the effort. Please let us know if the scripts have been fixed.
First... have the scripts gone through a unix2dos filter?? Why?
For example:
debian@:~/test$ ./monitor_web.sh
: bad interpreter: No such file or directory
debian@:~/test$ hexdump -C monitor_web.sh |head -n 1
00000000 23 21 2f 62 69 6e 2f 62 61 73 68 0d 0a 23 0d 0a |#!/bin/bash..#..|
Note the "0d 0a" AKA CR-LF which confused the bash shell interpreter.
After using unix2dos to remove these... I noticed some necessary editing to do in the monitor_disk.sh script:
GREP="/sbin/grep"
MOUNT="/sbin/mount"
AWK="/usr/bin/awk"
... why bother.... normally these are in the path... if it is really necessary to put the commands in variables... why not make it easy for readers and use locations that will just work. or even better, use "which" to set your variables. grep and mount are usually not in /sbin.
After this, I noticed that one script requires ksh. Not a big deal but, not mentioned in the article.
Thanks for the ideas though. I may consider writing a simple ssh based monitoring system.
In defence of the author:
In defence of the author: ("these things are usually on the path...")
These are intended to be run by cron, where the normal user path may not be available. It is customary to supply an explicit path in such cases (which will, naturally, vary with the system).
RE: scripts could be improved, tested more thoroughly
Hi. Thanks for the feedback! That's the whole point of Open Source, full disclosure of code, and making it better!
As the author of the scripts they are presented as a soluton, not a product. The goal, of course, is to please as many customers as possible, and that's not always possible.
I will report great success at my company so far, which is why I wrote the article! Here' an external link for the the latest updates to these scripts:
http://monitorsuite.sourceforge.net
I personally support these in my spare time. Don't hesitate to contact me at my current email address, I welcome all feedback!
Regards,
-John
Agreed.
I, too, downloaded the scripts as they looked like a great starting point for monitoring my systems, and, sadly, I have to agree with the poster before me that these scripts are replete with bugs. Even the way they were archived is broken. It appears the author made a big no-no: he made 'innocuous' last-minute changes which he did not test, perhaps to meet the LJ deadline, and ended up submitting very broken scripts.
In addition to the problems the poster above mentions, such basic things as forgetting to put a hash mark before a comment, and not putting a space between flags are found in at least the monitor_web.sh script. I've not tested the others yet.
Author: please do fix these problems and re-post.