A monitor displaying a gauge to represent web application monitoring
September 19, 2024

Getting Started With Web Application Monitoring

PHP Development
Performance

Web application monitoring is a critical aspect in ensuring secure and high-performing PHP web apps. However, getting started can sometimes be a complex process. Understanding what web application monitoring is, how to evaluate your options, and how to implement solutions is essential for successful PHP monitoring.

In this blog, I present the basics of web application monitoring, discuss considerations for building your PHP web app monitoring strategies, and provide step-by-step instructions for how Zend can help businesses establish robust and effective web application monitoring systems regardless of developer skill level.

Back to top

Web Application Monitoring: Overview

You’re probably already a monitoring expert, even before you’ve read this blog! Let’s take a look at a monitoring dashboard many folks have already had a look at: the dashboard of a car. “Monitoring” means metrics, and there are a few of those on a car’s literal, real-world dashboard. Let’s categorize them into a few different types of metrics:

  1. Battery output, measured in volts
  2. Speed, measured in miles per hour
  3. Engine Revolutions Per Minute (RPM), shown on an analogue gauge with minimum and maximum vales, including a “red line” which the engine can exceed, but shouldn’t!
  4. The odometer, which shows the total number of miles the car has driven, as well as a resettable trip meter and the outside temperature
  5. The oil temperature and fuel level in the fuel tank
  6. Oil pressure measured in bar

Much like web application monitoring, each of these metrics has rules on their operation. For example, consider the differences between the odometer and the engine RPM. One of the facts we know about an odometer is that it should only go up, increasing “monotonically” as the car moves. The value should never decrease, only increase, which means if you plot it on a graph, where X is the mileage of the car and Y is time, the graph should always move up and to the right. 

The engine RPM, on the other hand, can have any value over time, including values over the red line. If you plot engine RPM on a graph, where X is the engine RPM and Y is time, the values should look something like a sawtooth pattern, moving up the Y axis from about 500 RPM at idle to at most 7000 RPM at load, with the RPM decreasing to a lower value as the car shifts between gears, ultimately reaching 0 RPM when the engine stops.

Web application monitoring can be thought of in a similar way.

What Is Web Application Monitoring?

Web application monitoring is the business process of identifying important metrics that identify the health of a web application, gathering them with a monitoring tool such as Prometheus, and displaying that data in a tool like Grafana as a dashboard.

To return to the car metaphor, in terms of web application monitoring, the odometer is a “counter.” Common use cases for counters in web application monitoring include requests served, batches completed number of errors, and CPU wall time used for a process. For example, while Apache HTTPD is running, one can “count” the number of requests served by Apache, with metadata around those requests, such as how many of the total requests served were “200 OK” versus “404 Not Found,” or how many requests were to “/index.php” versus “/wp-admin”

For the engine RPM metric, we’d use a “gauge” in a web application monitoring context. A “gauge” is a single numerical value that can arbitrarily change. Some examples include CPU usage, memory usage, disk space, number of requests happening "at this moment" / concurrently, connected users / open sockets "at this moment " / concurrently.

There are other types of metric display as well, such as a histogram and a summary, which represent a sample of an observation that can be categorized in a bucket to reduce storage complexity that also provides a sum of all observed values. For example, if we wanted to look at request duration, we could use a PromQL query such as histogram_quantile(0.95, sum(rate(http_request_duration_seconds_bucket[5m])) by (le))  to produce a graph that looks like this:

A graph prodcued by a PromQL query
Source - valyala.medium.com


But let’s not get ahead of ourselves! Instead, let's take a moment to talk about why web application monitoring is important for any business, particularly for PHP web applications.

Why Does PHP Web App Monitoring Matter?

At Zend, we’re in the business of ensuring enterprise-grade PHP applications run with performance and security. Customers often open support cases with us, and let me tell you, when an e-commerce site has a performance issue, it is absolutely business critical. Millions of dollars in sales can be lost in a short period of time due to poor PHP web application performance caused by insufficient web application monitoring.

You know that discount campaign that marketing sent out for Labor Day weekend or Black Friday? The one that’s going to increase site traffic by 100x over the next three days? If you don’t have eyes on your metrics, you might not know customers abandoned their carts during checkout due to inordinately slow requests until the sale is long over and the opportunities to close the business are long gone.

Read More About Why Good PHP Monitoring Matters >>

What Are the Benefits of Web Application Monitoring?

Comprehensive web application monitoring allows you to have real-time data to form fast responses, troubleshoot issues, and more thus better serving your user base. The engine RPM gauge is a great metric to bring back here. If you have a gauge in your web application monitoring dashboard that shows requests per minute, you now have a great way to measure how your WordPress engine is working. When you break that gauge down into successful and unsuccessful requests, and when you further break that down into requests to key URLs on your site (coupon.php, checkout.php, thank_you_for_ordering.php), now you’ve got a great view of what’s going on during the big sale. 

If your requests per minute spikes during the initial email blast, and coupon.php’s error count stays flat? You’re off to the races. If you start seeing the 500 Internal Server Error count spike? Better be ready for a pit stop. 

Back to top

Considerations for Web Application Performance Monitoring

Web application performance monitoring is only as good as your plan, tools, and processes. These considerations can help you identify the best strategy to achieve the business goals of your web application.

Determine Your Web Application Performance Metrics

The best way to determine your web application performance metrics before going live is synthetic testing. Perforce has some serious expertise here: if you’ve heard of building a performance testing suite with JMeter, you might have also heard of our BlazeMeter platform

Your developers are already likely running end-to-end tests with similar tools before you go live in production, pushing your lower environments like Dev, QA, and UAT to the limit to make sure that the latest changes aren’t going to impact performance or break the web application. Your QA team is creating metrics to determine if those changes impact performance, and you can use those same metrics in production to monitor the live experience.

Evaluate Web Application Performance Monitoring Tools

Enterprises have different ways of identifying metrics, and a variety of tools that they use for this process. In a world of ever-increasing mergers and acquisitions activity, your organization might inherit tools you’re unfamiliar with, or get assigned tools you’ve never heard of! Having a cohesive platform, especially as departments integrate and operations of the web applications is shared among a wider, global team.

The important thing to note with web application monitoring, especially as it relates to PHP, is that the work is equally important for both the developers of the application and the operators supporting the application in production. There should be a collaboration in requesting metrics that make troubleshooting the application easier, and a way to find metrics that can act as leading indicators for performance issues.

Back to top

Improve Performance With Zend PHP App Monitoring Tools

Zend solves the hardest problems in PHP, and that includes offering a variety of PHP app monitoring tools, support services, and other solutions for developer teams. Whether you prefer a hands-on approach or are looking to outsource your monitoring to a team of proven professionals, Zend has you covered.

To help you evaluate your options, I will now go through two methods for establishing web application monitoring solutions. First, I will walk through how to use ZendPHP with Grafana to establish web app monitoring, a fitting option for experienced developers, and then I will discuss Zend Admin as a Service, an excellent choice for teams needing to focus their attention on other business concerns.

Make Our PHP Experts Your PHP Experts

The Zend team is at your disposal. ZendPHP and Zend Admin as a Service both come with 24/7/365 support from a global team of experts.

Explore ZendPHP  Discover Admin as a Service

Back to top

How to Use ZendPHP With Grafana for Web Application Monitoring

ZendPHP fully-supported and secure runtimes, when paired with the ZendHQ extension, deliver advanced flexibility, scalability, and observability for PHP applications. One way to take full advantage of ZendPHP capabilities is by pairing it with Grafana for advanced web application monitoring. Use this step-by-step guide to get started.

Step One: Install Your Exporters

Web application monitoring with Grafana starts with an HTTP endpoint that is scraped at an interval defined on the Prometheus time-series database (TSDB) server. Grafana queries the Prometheus TSDB for metrics, and not the endpoints directly. For most PHP web applications, there are three components (excluding an external database like MariaDB or PostgreSQL) that need to be monitored:

  1. The host machine, through the node_exporter
  2. PHP-FPM, through php-fpm_exporter 
  3. The Web Server, through apache_exporter for HTTPD and nginx-prometheus-exporter for nginx OSS and ngnix-plus

Step Two: Securely Expose Your Exporters

Once these applications are installed, they should then be configured to accept connections on unique ports bound to localhost. From there, HTTPD or nginx can be configured to expose these ports through a reverse SSL proxy that requires basic authentication. An example for nginx is available here, and an example for Apache HTTPD is here

There should be three endpoints exposed on each ZendPHP node:

  1. /prometheus/node_exporter
  2. /prometheus/php-fpm_exporter
  3. /prometheus/http_exporter

You should be able to navigate to each of these pages over SSL with a trusted certificate, and be prompted to authenticate; once you’ve successfully authenticated, you should see a page that looks like this: 

Text which appears after successful authentication

 

Step Three: Add Your Endpoints to the Prometheus TSDB Scraper

Now that you have a list of URLs that you can scrape metrics from, you need to add these endpoints to the Prometheus TSDB configuration. A good example of how to add basic authentication and SSL is available here. Once you’ve successfully scraped these endpoints, you’ll be able to see a list of endpoints that looks like this, inside of the Prometheus TSDB server user interface:

Prometheus dashboard

 

Step Four: Connect Grafana to Prometheus

Now that you’re collecting data in the Prometheus TSDB server, you can view that data with Grafana. After installing and configuring Grafana to your organization’s specifications, add your Prometheus server as a data source. It will look something like this:

Data sources after connecting Grafana to Prometheus

 

Step Five: Import Default Dashboards for Your Exporters

Each of the exporters you set up in step two have default dashboards that can display your data in Grafana.

  1. node_exporter
  2. php-fpm_exporter
  3. apache_exporter or nginx-prometheus-exporter

Here’s an example of the Grafana dashboard from nginx:

Grafana dashboard from nginx

 

Final Step: Make It Your Own

While the default dashboards are a great place to start exploring and making correlations about system health and performance, your application has specific needs that you’ll begin discovering over time. After you create dashboards and views based on the default dashboards that are specific to your application, you’re going to be operating on a whole new level of visibility to performance and uptime. 

Back to top

Simplified PHP Web App Monitoring With Zend Admin as a Service

The six steps above can be pretty difficult to get into production, even for senior engineers that have some Prometheus and Grafana experience. As a part of our professional services, Zend by Perforce can enable your organization to have PHP web application monitoring securely through our Admin as a Service offering. This option is a bundled package that guides your organization through every step of the process, from testing to production.

Uninterrupted PHP Web App Performance Monitoring

As a managed service, our Admin as a Service offering provides continuous monitoring of your PHP application. Our team has decades of experience across all our supported platforms, from Windows to Linux, from Docker to IBM i, and across a variety of clouds like AWS and Azure.

Whether you're on-premise, hybrid, or in a completely orchestrated Kubernetes environment, the experts behind Zend Admin as a Service will provide you with weekly reports detailing performance and uptime issues, and delivering recommendations to improve the reliability of your application. Your monitoring data is your own and can be explored at any time through an easy-to-use and intuitive dashboard:

Zend performance monitoring dashboard offered with Admin as a Service

 

Web Application Monitoring From an Expert Team

If you’ve been looking for a way to put your PHP web application’s performance and availability on auto-pilot, look no further than Zend Admin as a Service. Our solution enables all of the benefits of Prometheus and Grafana and securely allows our team of experts to work with your team on resolving performance and uptime issues before they impact your business.

Back to top

Final Thoughts

When it comes to getting started with PHP application monitoring, there is no definitive best answeronly the best answer for your business and application. No matter which method you choose, web application monitoring will allow you to quickly identify issues in your application and address them before they become problems, improving security, user experience, and performance.

Ready to Get Started With PHP App Monitoring?

Zend is ready to hear from you. Explore our professional services including Zend Admin as a Service to learn more about our support capabilities. Contact us today to speak with an expert about your exact application.

Professional Services  Contact Us

Additional Resources

Back to top