Table of Contents
Introduction
It's important to monitor uWSGI instances to ensure their stability, performance, and availability. This helps identify and address issues promptly before they affect the overall application performance. Monitoring uWSGI instances also provides insights into resource utilization, request throughput, and potential bottlenecks, enabling proactive optimization and efficient scaling of the application infrastructure.
In this article, we'll detail how to use the Telegraf agent to collect performance metrics from your uWSGI core processes and workers and forward them to a data source.
Getting Started with the Telegraf Agent
Telegraf is a plugin-driven server agent built on InfluxDB and can collect and send metrics/events from databases, systems, devices, and a range of popular technologies. Telegraf is written in Go, compiles into a single binary with no external dependencies, and requires minimal memory footprint. It is compatible with many operating systems and has many helpful output plugins and input plugins for collecting and forwarding a wide variety of performance metrics.
Install Telegraf (Linux/Redhat)
/etc/telegraf/
.wget https://dl.influxdata.com/telegraf/releases/telegraf_1.21.2-1_amd64.deb
sudo dpkg -i telegraf_1.21.2-1_amd64.deb
RedHat/CentOS
wget https://dl.influxdata.com/telegraf/releases/telegraf-1.21.4-1.x86_64.rpm
sudo yum localinstall telegraf-1.21.4-1.x86_64.rpm
Configure an Output
You can configure Telegraf to output to various sources, such as Kafka, Graphite, InfluxDB, Prometheus, SQL, NoSQL, and more.
In this example, we will configure Telegraf with a Graphite output. If you're not currently hosting your own data source, you can start a 14-day free trial with Hosted Graphite by MetricFire to follow along with these next steps.
A Hosted Graphite account will provide the data source, include Hosted Grafana as a visualization tool, and offer an alerting feature.
To configure the Graphite output, locate the downloaded telegraf configuration file at /etc/telegraf/telegraf.conf and open it in your preferred text editor. Then, you will need to make the following changes to the file:
Locate and comment out the line:
# [[outputs.influxdb]]
Then, uncomment the line:
[[outputs.graphite]]
Next, uncomment and edit the server line to:
servers = ["carbon.hostedgraphite.com:2003"]
Finally, uncomment and edit the prefix line to:
prefix = "<YOUR_API_KEY>.telegraf"
Install and Configure uWSGI
This article assumes that you are already using an active instance of uWSGI. If you need to install/launch uWSGI for testing purposes, here is a quick guide to get up and running in a Linux environment:
- Install uwsgi:
- sudo apt-get update
pip3 install uwsgi
uswgi --version
- sudo apt-get update
- Create a myapp.ini file at /etc/uwsgi/ that contains:
- [uwsgi]
module = myapp.wsgi:application
master = true
processes = 5
socket = 0.0.0.0:9191
chmod-socket = 666
vacuum = true
plugin = stats_server
stats-server = 127.0.0.1:1717
- [uwsgi]
- Start uWSGI:
- uwsgi --ini /etc/uwsgi/myapp.ini
Configure the uWSGI Input Plugin
Telegraf has many input plugins that can collect a wide range of data from many popular technologies and 3rd party sources. In this example, we'll demonstrate how to configure the uWSGI plugin.
Within your telegraf.conf file, locate and uncomment the [[inputs.uwsgi]] line:
[[inputs.uwsgi]]
Then you can uncomment the 'servers' line; the default path is:
servers = ["http://127.0.0.1:1717"]
Save your changes, and then start Telegraf using the following command to see if there are any configuration errors in the output:
telegraf --config telegraf.conf
Telegraf will forward around 150 metrics reporting statistics around your uWSGI core processes and workers.
See the official GitHub repository for more information and configuration options for this input plugin.
Use Hosted Graphite by MetricFire to Create Custom Dashboards and Alerts
MetricFire is a monitoring platform that enables you to gather, visualize, analyze, and alert on metrics from sources such as servers, databases, networks, devices, and applications. Using MetricFire, you can effortlessly identify problems and optimize resources within your infrastructure. Hosted Graphite by MetricFire removes the burden of self-hosting your monitoring solution, allowing you more time and freedom to work on your most important tasks.
- Once you have signed up for a Hosted Graphite account and used the above steps to configure your server with the Telegraf Agent, metrics will be forwarded, timestamped, ingested, and aggregated into the Hosted Graphite backend.
- They will be sent and stored in the Graphite format of: metric.name.path <numeric-value> <unix-timestamp> provides a tree-like data structure and makes them easy to query.
- These metrics can be found in your Hosted Graphite account, where you can use them to build custom Alerts and Grafana dashboards.
Create Dashboards in Hosted Graphite's Hosted Grafana
First, locate your metrics in the Hosted Graphite Metrics Search UI. Then, navigate to Dashboards => Primary Dashboards and select the + button to build a new panel:
Then you can use the query UI to select a graphite metric path (the default data source will be the hosted graphite backend if you are accessing Grafana through your Hosted Graphite account):
NOTE: the Hosted Graphite datasource supports wildcard (*) searches to grab all metrics that match a specified path.
Now you can apply Graphite functions to these metrics, like groupByNode(), to combine values from multiple metric paths at a specified index:
Grafana has many additional options, like configuring dashboard variables and annotations. You can also use different visualizations, modify the display, set the units of measurement, and much more.
Also, Hosted Graphite has a pre-configured dashboard for Telegraf metrics in their Dashboard Library. Once this dashboard is generated in your account, you can identify it in your Primary Dashboards to see system metrics (CPU, mem, disk) displayed. These system performance metrics come automatically with a Telegraf => Graphite configuration:
See the Hosted Graphite dashboard docs for more details.
Creating Graphite Alerts
In the Hosted Graphite UI, navigate to Alerts => Graphite Alerts to create a new alert. Name the alert, add one of your graphite metrics to the alerting metric field, and add a description of what this alert is:
Then, select the Criteria tab, which will set the threshold, and select a notification channel. The default notification channel is the email you used to sign up for the Hosted Graphite account. Still, you can easily configure a channel for Slack, PagerDuty, Microsoft Teams, and more. See the Hosted Graphite docs for more details on notification channels:
Conclusion
Monitoring uWSGI instances is crucial for ensuring uninterrupted service delivery. It allows businesses to promptly detect and resolve performance issues or downtime, thus maintaining high levels of customer satisfaction and trust. Additionally, detailed monitoring of uWSGI enables enterprises to optimize resource allocation, minimize infrastructure costs, and make informed decisions regarding capacity planning and scalability to meet evolving business demands efficiently.
Tools like dashboards and alerts complement this monitoring by providing real-time visualization, proactive identification of issues, historical trend analysis, and facilitating informed decision-making, all of which are essential for maintaining a robust and efficient network infrastructure.
Sign up for a free trial, and start monitoring your infrastructure today! You can also book a demo and talk to the MetricFire team directly about your monitoring needs.