Overview
In this tutorial, this guide assumes that you have a Datadog Agent Version 7 running. For more information on what the Datadog Agent is and how to install it, start with the Datadog Agent documentation. For the purposes of this guide, the examples use a Datadog agent running with the recommended installation steps on a Linux system.Prerequisites
You’ll need a working Datadog agent and access to add a Custom Agent Check to that instance. This may requireroot
or sudo
access on the machine running the Datadog agent.
You’ll also need a Service token in your Organization, with the read_metrics_endpoints
permission granted.
Adding the Plugin to the Datadog Agent
Go to https://github.com/planetscale/planetscale-datadog, which is the repository that has our custom OpenMetrics Check. Place the uneditedplanetscale.py
in the checks.d
directory of your Datadog Agent.
- On Linux, that is
/etc/datadog-agent/checks.d/
- On macOS, that is
/opt/datadog-agent/etc/checks.d/
dd-agent
user:
dd-agent
user and group in the /etc/datadog-agent/checks.d
directory.
If you’re on macOS, it will depend on whether you installed the agent as a ‘Single User Agent’ or a ‘Systemwide Agent’. If you picked Single User, there should be no additional permission changes needed. If you installed it as a Systemwide agent, make sure the user and group you installed the agent with have ownership of the file.
Configuring the Datadog Agent
Now that you have the plugin installed, you need to configure it. In theconf.d
directory of the Datadog agent take the conf.d/planetscale.yaml.example
file and edit it with your organization name and Service Token information. It should look like this:
planetscale_postgres
namespace.
Save the file as planetscale.yaml
, making sure to double check permissions:
Restart the Datadog Agent
Now that this is configured and installed, restart the Agent:Validating the PlanetScale Plugin
Now that the Datadog Agent is running the PlanetScale plugin, metrics should start flowing into Datadog within a couple of minutes. To validate, you can check the Datadog Agent:Adding Metrics
In the earlier configuration, only two metrics were added. For a complete list of what PlanetScale for Postgres exposes, please take a look at the Postgres Metrics Reference Documentation. Note that the Datadog agent normalizes metrics with certain suffixes starting in v7.32.0:Starting in Datadog Agent v7.32.0, in adherence to the OpenMetrics specification standard, counter names ending in _total must be specified without the _total suffix. For example, to collect promhttp_metric_handler_requests_total, specify the metric name promhttp_metric_handler_requests. This submits to Datadog the metric name appended with .count, promhttp_metric_handler_requests.count.This means that to scrape a metric such as
planetscale_postgres_database_xact_commit_total
, you would configure the Datadog agent for planetscale_postgres_database_xact_commit
.
If you want to collect additional metrics, you can add them to the list: