Skip to main content

LAMP stack monitoring with Netdata

Set up robust LAMP stack monitoring (Linux, Apache, MySQL, PHP) in a few minutes using Netdata.

The LAMP stack is the "hello world" for deploying dynamic web applications. It's fast, flexible, and reliable, which means a developer or sysadmin won't go far in their career without interacting with the stack and its services.

LAMP is an acronym of the core services that make up the web application: Linux, Apache, MySQL, and PHP.

  • Linux is the operating system running the whole stack.
  • Apache is a web server that responds to HTTP requests from users and returns web pages.
  • MySQL is a database that stores and returns information based on queries from the web application.
  • PHP is a scripting language used to query the MySQL database and build new pages.

LAMP stacks are the foundation for tons of end-user applications, with Wordpress being the most popular.

Challenge

You've already deployed a LAMP stack, either in testing or production. You want to monitor every service's performance and availability to ensure the best possible experience for your end-users. You might also be particularly interested in using a free, open-source monitoring tool.

Depending on your monitoring experience, you may not even know what metrics you're looking for, much less how to build dashboards using a query language. You need a robust monitoring experience that has the metrics you need without a ton of required setup.

Solution

In this tutorial, you'll set up robust LAMP stack monitoring with Netdata in just a few minutes. When you're done, you'll have one dashboard to monitor every part of your web application, including each essential LAMP stack service.

This dashboard updates every second with new metrics, and pairs those metrics up with preconfigured alerts to keep you informed of any errors or odd behavior.

What you need to get started

To follow this tutorial, you need:

  • A physical or virtual Linux system, which we'll call a node.
  • A functional LAMP stack. There's plenty of tutorials for installing a LAMP stack, like this one from Digital Ocean.
  • Optionally, a Netdata Cloud account, which you can use to view metrics from multiple nodes in one dashboard, and a whole lot more, for free.

Install the Netdata Agent

If you don't have the free, open-source Netdata monitoring agent installed on your node yet, get started with a single kickstart command:

wget -O /tmp/netdata-kickstart.sh https://get.netdata.cloud/kickstart.sh && sh /tmp/netdata-kickstart.sh

The Netdata Agent is now collecting metrics from your node every second. You don't need to jump into the dashboard yet, but if you're curious, open your favorite browser and navigate to http://localhost:19999 or http://NODE:19999, replacing NODE with the hostname or IP address of your system.

Enable hardware and Linux system monitoring

There's nothing you need to do to enable system monitoring and Linux monitoring with the Netdata Agent, which autodetects metrics from CPUs, memory, disks, networking devices, and Linux processes like systemd without any configuration. If you're using containers, Netdata automatically collects resource utilization metrics from each using the cgroups data collector.

Enable Apache monitoring

Let's begin by configuring Apache to work with Netdata's Apache data collector.

Actually, there's nothing for you to do to enable Apache monitoring with Netdata.

Apache comes with mod_status enabled by default these days, and Netdata is smart enough to look for metrics at that endpoint without you configuring it. Netdata is already collecting mod_status metrics, which is just part of your web server monitoring.

Enable web log monitoring

The Netdata Agent also comes with a web log collector, which reads Apache's access log file, processes each line, and converts them into per-second metrics. On Debian systems, it reads the file at /var/log/apache2/access.log.

At installation, the Netdata Agent adds itself to the adm group, which gives the netdata process the right privileges to read Apache's log files. In other words, you don't need to do anything to enable Apache web log monitoring.

Enable MySQL monitoring

Because your MySQL database is password-protected, you do need to tell MySQL to allow the netdata user to connect to without a password. Netdata's MySQL data collector collects metrics in read-only mode, without being able to alter or affect operations in any way.

First, log into the MySQL shell. Then, run the following three commands, one at a time:

CREATE USER 'netdata'@'localhost';
GRANT USAGE, REPLICATION CLIENT, PROCESS ON *.* TO 'netdata'@'localhost';
FLUSH PRIVILEGES;

Run sudo systemctl restart netdata, or the appropriate alternative for your system, to collect dozens of metrics every second for robust MySQL monitoring.

Enable PHP monitoring

Unlike Apache or MySQL, PHP isn't a service that you can monitor directly, unless you instrument a PHP-based application with StatsD.

However, if you use PHP-FPM in your LAMP stack, you can monitor that process with our PHP-FPM data collector.

Open your PHP-FPM configuration for editing, replacing 7.4 with your version of PHP:

sudo nano /etc/php/7.4/fpm/pool.d/www.conf

Not sure what version of PHP you're using? Run php -v.

Find the line that reads ;pm.status_path = /status and remove the ; so it looks like this:

pm.status_path = /status

Next, add a new /status endpoint to Apache. Open the Apache configuration file you're using for your LAMP stack.

sudo nano /etc/apache2/sites-available/your_lamp_stack.conf

Add the following to the end of the file, again replacing 7.4 with your version of PHP:

ProxyPass "/status" "unix:/run/php/php7.4-fpm.sock|fcgi://localhost"

Save and close the file. Finally, restart the PHP-FPM, Apache, and Netdata processes.

sudo systemctl restart php7.4-fpm.service
sudo systemctl restart apache2
sudo systemctl restart netdata

As the Netdata Agent starts up again, it automatically connects to the new 127.0.0.1/status page and collects per-second PHP-FPM metrics to get you started with PHP monitoring.

View LAMP stack metrics

If the Netdata Agent isn't already open in your browser, open a new tab and navigate to http://localhost:19999 or http://NODE:19999, replacing NODE with the hostname or IP address of your system.

If you signed up for Netdata Cloud earlier, you can also view the exact same LAMP stack metrics there, plus additional features, like drag-and-drop custom dashboards. Be sure to connecting your node to start streaming metrics to your browser through Netdata Cloud.

Netdata automatically organizes all metrics and charts onto a single page for easy navigation. Peek at gauges to see overall system performance, then scroll down to see more. Click-and-drag with your mouse to pan all charts back and forth through different time intervals, or hold SHIFT and use the scrollwheel (or two-finger scroll) to zoom in and out. Check out our doc on interacting with charts for all the details.

The Netdata dashboard

The System Overview section, which you can also see in the right-hand menu, contains key hardware monitoring charts, including CPU utilization, memory page faults, network monitoring, and much more. The Applications section shows you exactly which Linux processes are using the most system resources.

Next, let's check out LAMP-specific metrics. You should see four relevant sections: Apache local, MySQL local, PHP-FPM local, and web log apache. Click on any of these to see metrics from each service in your LAMP stack.

LAMP stack monitoring in
Netdata

Key LAMP stack monitoring charts

Here's a quick reference for what charts you might want to focus on after setting up Netdata.

Chart name / contextTypeWhy?
System Load Average (system.load)Hardware monitoringA good baseline load average is 0.7, while 1 (on a 1-core system, 2 on a 2-core system, and so on) means resources are "perfectly" utilized. Higher load indicates a bottleneck somewhere in your system.
System RAM (system.ram)Hardware monitoringLook at the free dimension. If that drops to 0, your system will use swap memory and slow down.
Uptime (apache_local.uptime)Apache monitoringThis chart should always be "climbing," indicating a continuous uptime. Investigate any drops back to 0.
Requests By Type (web_log_apache.requests_by_type)Apache monitoringCheck for increases in the error or bad dimensions, which could indicate users arriving at broken pages or PHP returning errors.
Queries (mysql_local.queries)MySQL monitoringQueries is the total number of queries (queries per second, QPS). Check this chart for sudden spikes or drops, which indicate either increases in traffic/demand or bottlenecks in hardware performance.
Active Connections (mysql_local.connections_active)MySQL monitoringIf the active dimension nears the limit, your MySQL database will bottleneck responses.
Performance (phpfpm_local.performance)PHP monitoringThe slow requests dimension lets you know if any requests exceed the configured request_slowlog_timeout. If so, users might be having a less-than-ideal experience.

Get alerts for LAMP stack errors

The Netdata Agent comes with hundreds of pre-configured alerts to help you keep tabs on your system, including 19 alerts designed for smarter LAMP stack monitoring.

Click the 🔔 icon in the top navigation to see active alerts. The Active tabs shows any alerts currently triggered, while the All tab displays a list of every pre-configured alert. The

An example of LAMP stack
alerts

Tweak alerts based on your infrastructure monitoring needs, and to see these alerts in other places, like your inbox or a Slack channel, enable a notification method.

What's next?

You've now set up robust monitoring for your entire LAMP stack: Linux, Apache, MySQL, and PHP (-FPM, to be exact). These metrics will help you keep tabs on the performance and availability of your web application and all its essential services. The per-second metrics granularity means you have the most accurate information possible for troubleshooting any LAMP-related issues.

Another powerful way to monitor the availability of a LAMP stack is the httpcheck collector, which pings a web server at a regular interval and tells you whether if and how quickly it's responding. The response_match option also lets you monitor when the web server's response isn't what you expect it to be, which might happen if PHP-FPM crashes, for example.

The best way to use the httpcheck collector is from a separate node from the one running your LAMP stack, which is why we're not covering it here, but it does work in a single-node setup. Just don't expect it to tell you if your whole node crashed.

If you're planning on managing more than one node, or want to take advantage of advanced features, like finding the source of issues faster with Metric Correlations, sign up for a free Netdata Cloud account.


Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.