Your Daily Source for Apache News and Information |
Breaking News | Preferences | Contribute | Triggers | Link Us | Search | About |
It's important to be able to monitor your production system's health. You want to monitor the memory and file system utilization, the system load, how much memory the processes use. Whether you aren't running out of swap space and more. All these tasks are feasible when one has an interactive (telnet/ssh/other) access to the box the web server is running on, but it's quite a mess since different Unix tools report about different parts of the system. Which means that you cannot watch the whole system at the same time and it requires lots of typing since one has to switch from one utility to another, unless many connections are open and then each terminal is dedicated to report about something specific.
But if you are running mod_perl enabled Apache server, you are in a good company, since it allows you to run a special module called Apache::VMonitor
which provides most of the desired reports at once.
The Apache::VMonitor
module provides even better monitoring functionality than top(1). It gives all the relevant information top(1)
does, plus all the Apache specific information provided by Apache's mod_status module, such as request processing time, last request's URI, number of requests served by each child, etc. In addition it emulates the reporting functions of the top(1), mount(1), df(1)
utilities. There is a special mode for mod_perl processes. It has visual alerting capabilities and a configurable automatic refresh mode. It provides a Web interface, which can be used to show or hide all sections dynamically.
The module provides two main viewing modes:
You need to have Apache::Scoreboard installed and configured in httpd.conf, which in turn requires mod_status to be installed. You also have to enable the extended status for mod_status, for this module to work properly. In httpd.conf add:
ExtendedStatus On
You also need Time::HiRes and GTop to be installed. GTop
relies in turn on libgtop
library not available for all platforms. Visit http://home-of-linux.org/gnome/libgtop/ for more information.
And of course you need a running mod_perl-enabled apache server.
To enable this module you should modify a configuration in httpd.conf, if you add the following configuration:
<Location /system/vmonitor> SetHandler perl-script PerlHandler Apache::VMonitor </Location>
The monitor will be displayed when you request http://localhost/system/vmonitor.
You probably want to protect this location, from unwanted visitors. If you are accessing this location from the same IP address, you can use a simple host based authentication:
<Location /system/vmonitor> SetHandler perl-script PerlHandler Apache::VMonitor order deny, allow deny from all allow from 132.123.123.3 </Location>
Alternatively you may use the Basic or other authentication schemes provided by Apache and various extensions.
You can control the behavior of this module by configuring the following variables in the startup file or inside the <Perl>
section.
You should load the module in httpd.conf:
PerlModule Apache::VMonitor
Or from the the startup file:
use Apache::VMonitor();
You can alter the monitor reporting behavior, by tweaking the following configuration arguments from within the startup file:
$Apache::VMonitor::Config{BLINKING} = 1; $Apache::VMonitor::Config{REFRESH} = 0; $Apache::VMonitor::Config{VERBOSE} = 0;
You can control what sections are to be displayed when the tool is first accessed via:
$Apache::VMonitor::Config{SYSTEM} = 1; $Apache::VMonitor::Config{APACHE} = 1; $Apache::VMonitor::Config{PROCS} = 1; $Apache::VMonitor::Config{MOUNT} = 1; $Apache::VMonitor::Config{FS_USAGE} = 1;
You can control the sorting of the mod_perl processes report. You can sort them by one of the following columns: ``pid'', ``mode'', ``elapsed'', ``lastreq'', ``served'', ``size'', ``share'', ``vsize'', ``rss'', ``client'', ``request''. For example to sort by the process size the following setting will do:
$Apache::VMonitor::Config{SORT_BY} = "size";
As the application provides an option to monitor other than mod_perl processes, you may set a regular expression to match the wanted processes. For example to match the process names which include httpd_docs, mysql and squid string, the following regular expression is to be used:
$Apache::VMonitor::PROC_REGEX = join "\|", qw(httpd_docs mysql squid);
We will discuss all these configuration options and their influence on the application shortly.
The first mode is the one that mainly used, since it allows you to monitor almost all important system resources from one location. For your convenience you can turn on and off different sections on the report, to make it possible for reports to fit into one screen.
This mode comes with the following features.
$Apache::VMonitor::Config{REFRESH} = 60;
A 0 (zero) value turns automatic refreshing off.
When the server is started you can always adjust the refresh rate using the application user interface.
top(1)
Emulation: System Health Reporttop(1)
it shows current date/time, machine up-time, average load, all the system CPU and memory usage: CPU load, Real memory and swap partition usage.
The top(1)
section includes a swap space usage visual alert capability. As we know swapping is very undesirable on production systems. The system is said to be swapping, when it has used all of its RAM and starts to page out unused memory pages to the slow swap partition which slows the whole system down and may eventually lead to the machine crush.
Therefore the tool helps to detect abnormal situation by changing the swap report row's color according to the following rules:
swap usage report color --------------------------------------------------------- 5Mb < swap < 10 MB light red 20% < swap (swapping is bad!) red 70% < swap (almost all used!) red + blinking (if enabled)
Note that you can turn on the blinking mode with:
$Apache::VMonitor::Config{BLINKING} = 1;
The module doesn't alert when swap is being used just a little (<5Mb), since it happens most of the time on many Unix systems, even when there is plenty of free RAM.
If you don't want the system section to be displayed set:
$Apache::VMonitor::Config{SYSTEM} = 0;
The default is to display this section.
top(1)
Emulation: Apache/mod_perl Processes Statustop(1)
there is a report of the processes, but it shows all the relevant information about mod_perl processes only!
The report includes the status of the process (Starting, Reading, Sending, Waiting, etc.), process' ID, time since current request was started, last request processing time, size, shared, virtual and resident size. It shows the last client's IP and Request URI (only 64 chars, as this is the maximum length stored by underlying Apache core library).
This report can be sorted by any column during the application use, by clicking on the name of the column, or can be preset with the following setting:
$Apache::VMonitor::Config{SORT_BY} = "size";
The valid choices are: ``pid'', ``mode'', ``elapsed'', ``lastreq'', ``served'', ``size'', ``share'', ``vsize'', ``rss'', ``client'', ``request''.
The section is concluded with a report about the total memory being used by all mod_perl processes as reported by kernel, plus extra number, which results from an attempt to approximately calculate the real memory usage when memory sharing is taking place. The calculation is performed by using the following logic:
Please note that this might be incorrect for your system, so you should use this number on your own risk. We have verified this number on the Linux OS, by taken the number reported by Apache::VMonitor
, then stopping mod_perl and looking at the system memory usage. The system memory went down approximately by the number reported by the tool. Again, use this number wisely!
If you don't want the mod_perl processes section to be displayed set:
$Apache::VMonitor::Config{APACHE} = 0;
The default is to display this section.
top(1)
Emulation: Any Processestop(1)
fashion. To enable this section you have to set:
$Apache::VMonitor::Config{PROCS} = 1;
The default is not to display this section.
Now you need to specify which processes are to be monitored. The regular expression that will match the desired processes is required for this section to work. For example if you want to see all the processes whose name include any of these strings: http, mysql and squid, the following regular expression is to be used:
$Apache::VMonitor::PROC_REGEX = join "\|", qw(httpd mysql squid);
mount(1)
Emulationmount(1)
with no parameters.
If you want the mount(1)
section to be displayed set:
$Apache::VMonitor::Config{MOUNT} = 1;
The default is NOT to display this section.
df(1)
Emulationdf(1)
utility. For each mounted filesystem it reports the number of total and available blocks (for both superuser and user), and usage in percents.
In addition it reports about available and used file inodes in numbers and percents.
This section has a capability of visual alert which is being triggered when either some filesystem becomes more than 90% full or there are less than 10% of free file inodes left. When this event happens the filesystem related report row will be displayed in the bold font and in the red color. A mount point directory will blink if the blinking is turned on. You can turn the blinking on with:
$Apache::VMonitor::Config{BLINKING} = 1;
If you don't want the df(1)
section to be displayed set:
$Apache::VMonitor::Config{FS_USAGE} = 0;
The default is to display this section.
for more than 90% and therefore colored in red. (It's normal for /mnt/cdrom, which is a mounted cdrom, but critical for the /usr filesystem which should be cleaned up or enlarged).$Apache::VMonitor::Config{VERBOSE} = 1;
this section will reveal all the full names of the abbreviations at the bottom of the report.
The default is NOT to display this section.
If you need to get an in-depth information about a single process, you just need to click on its PID.
If the chosen process is a mod_perl process, the following info is displayed:
total
, utime
, stime
, cutime
, cstime
.
For all (mod_perl and non-mod_perl) processes the following information is reported:
Just like the multi-process mode, this mode allows you to automatically refresh the page on the desired intervals.
Time::HiRes
http://search.cpan.org/search?dist=Time-HiResApache::Scoreboard
http://search.cpan.org/search?dist=Apache-ScoreboardGTop
http://search.cpan.org/search?dist=GTop GTop
relies in turn on libgtop library not available for all platforms. Visit http://home-of-linux.org/gnome/libgtop/ for more information.Related Stories:
How's my server doing?(Dec 21, 2000)
Improving mod_perl Driven Site's Performance -- Part I: Choosing Operating System and Hardware(Dec 07, 2000)
Finding a mod_perl Provider or Becoming One(Nov 27, 2000)
PR: Mercury Interactive Provides Universal Website Monitoring Solution Measuring Performance(Oct 10, 2000)
E-Commerce Solutions: An Apache Overview(May 31, 2000)
An Introduction to Apache 2.0(May 28, 2000)
About Triggers | Media Kit | Security | Triggers | Login |
All times are recorded in UTC. Linux is a trademark of Linus Torvalds. Powered by Linux 2.4, Apache 1.3, and PHP 4 Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy. |