TNS
VOXPOP
What news from AWS re:Invent last week will have the most impact on you?
Amazon Q, an AI chatbot for explaining how AWS works.
0%
Super-fast S3 Express storage.
0%
New Graviton 4 processor instances.
0%
Emily Freeman leaving AWS.
0%
I don't use AWS, so none of this will affect me.
0%
Data

Monitoring Air Quality with InfluxDB and Telegraf

Using the Air Quality Template on InfluxDB to monitor air quality and set up an alert so we can be informed when wildfire smoke reaches dangerous levels.
Aug 17th, 2022 12:04pm by
Featued image for: Monitoring Air Quality with InfluxDB and Telegraf
Feature image via Unsplash.

Anais Dotis-Georgiou
Anais is a developer advocate for InfluxData with a passion for making data beautiful with the use of data analytics, AI, and machine learning. She takes the data that she collects, does a mix of research, exploration and engineering to translate the data into something of function, value, and beauty. When she is not behind a screen, you can find her outside drawing, stretching, boarding or chasing after a soccer ball.

If you live in the Northern Hemisphere, you’re probably happy to be experiencing summer. However, with summer comes fire season, so it’s important to remember what you can do to reduce the risk of wildfires. If you live in an area susceptible to wildfires, it’s prudent to monitor air quality to protect yourself from the harm of smoke.

Today we’ll use the time-series platform InfluxDB to monitor air quality and set up an alert so we can be informed when smoke reaches dangerous levels. Specifically, we’ll use the Air Quality Template to easily get started with InfluxDB.

InfluxDB templates are prepackaged configurations that set up a bunch of resources in the platform. The Air Quality Template includes a dashboard to easily visualize your air quality data and a Telegraf configuration to write air quality data to your InfluxDB instance. Telegraf is an open source collection agent for metrics and events. Our Telegraf configuration will use the http input plugin to write data from AirNow API.

Prerequisites

This post assumes that you have completed the following steps:

  1. First, get InfluxDB here. I recommend signing up for InfluxDB Cloud because it’s the easiest way to get started with InfluxDB.
  2. Install the Telegraf agent. Find your preferred download method here.

Install the Air Quality Template

To install the air quality template, navigate to the templates page under settings, which is found on the left navigation bar.

Copy and paste the following URL and click Lookup Template:
https://github.com/influxdata/community-templates/blob/master/airquality/airquality.yml

Next, click Install Template to add all the associated resources.

Setting Up AirNow

As per the instructions in the Readme, first, go to https://docs.airnowapi.org/account/request/ to request account access for AirNow AP. Next, go to https://docs.airnowapi.org/forecastsbyzip/query, and build your URL as follows:

  1. Enter the ZIP code of interest.
  2. Select application/json from the Format dropdown.
  3. Click Build.
  4. Copy the URL string.
  5. Edit the URL string by removing the date (e.g. “&date=2022-06-14”).


Copy the generated URL from AirNow and remove “&date=2022-06-14” before adding it to your Telegraf configuration file.

Your URL should look like this after you’ve removed the date.

yaml

"https://www.airnowapi.org/aq/forecast/zipCode/?format=application/json&zipCode=99999&distance=25&API_KEY=A1B2C3D4-A1B2-A1B2-A1B1-A1B2C3D4E5F6"

Setting up Telegraf

Next, you need to edit the Telegraf configuration file. You can easily navigate to the right Telegraf configuration file by clicking on airquality template after installing it, expanding the resources dropdown, and clicking on the airquality-telegraf config.

That takes you to the Load Data page. Here you can click on the configuration name to edit it.

Now we can paste our edited AirNow URL into line 17 and click Save Changes.

Now click Setup Instructions (next to the configuration name) to run our Telegraf agent with this configuration and write air quality metrics to InfluxDB.

Air Quality Dashboard

The Air Quality Dashboard is another resource that’s included with the Air Quality Template.

Let Telegraf run for a little while, and then visit the prebuilt dashboard, under the dashboard page. Navigate to the dashboard page from the left-hand navigation bar. Make sure to select the appropriate bucket, airquality, that we want to create the visualizations from. It includes two gauge visualizations:

  1. Current PM2.5: This gauge displays the most recent fine particulate matter (PM2.5) levels.
  2. Current Ozone Quality: This gauge displays the most recent ozone levels.

The graph displays the air quality index (AQI) separated by severity levels.

Adding an Alert to the Air Quality Template

We can easily add an alert to the Air Quality Template to be notified when the AQI reaches dangerous levels. You can use InfluxDB to send alerts to a variety of different endpoints including Slack. Navigate to the Alerts page and click + Create to create a new check. Next, query for your data with the Query Builder. Set an interval to determine how often you want to check your data to see if it has exceeded a threshold. Finally, set up your notification endpoint. To learn about how to configure your Slack notification endpoint, follow this post.

An example of how to set up a threshold check to get notified on unsafe AQI with the InfluxDB UI.

Final Thoughts

I hope this post inspires you to take advantage of InfluxDB to stay healthy this summer. I also encourage you to take a look at the Enviro+ Raspberry Pi air quality template to build your own air quality sensors.

Group Created with Sketch.
TNS owner Insight Partners is an investor in: Pragma.
THE NEW STACK UPDATE A newsletter digest of the week’s most important stories & analyses.