Telegraf provides an integration with Monit using the Monit input plugin. Telegraf collects the metrics from the HTTP endpoint that Monit exposes, processes them, and sends them to Lightstep Observability using the OpenTelemetry output plugin.
To complete the integration, you will:
- Configure Telegraf to ingest metrics from Monit
- Configure the OpenTelemetry output plugin
Configure the Telegraf Monit input plugin
In the Telegraf configuration file, add configuration for the address where Monit serves metrics from, along with a username and password. You can find complete configuration details in the official Monit plugin documentation.
This example configuration uses the default username and password for new installations.
1
2
3
4
[[inputs.monit]]
address = "http://localhost:2812"
username = "admin"
password = "monit"
Configure the OpenTelemetry output plugin
To deliver metrics to Lightstep Observability you configure the Telegraf OpenTelmetry output plugin. This plugin sends metrics to Lightstep using gRPC.
This example shows the plugin configured without TLS:
1
2
3
4
5
6
7
[[outputs.opentelemetry]]
service_address = "ingest.lightstep.com:443"
insecure_skip_verify = true
# Additional gRPC request metadata
[outputs.opentelemetry.headers]
lightstep-access-token = "$LS_ACCESS_TOKEN"
For more details regarding configuring the OpenTelemetry output plugin see the official Telegraf documentation.
Validate metrics are reporting to Lightstep
You can validate that metrics are reporting to Lightstep on the Metrics details page in Project settings.
-
In Lightstep, click Project settings > Metric details.
-
Search for Monit metric names.
See the Monit input plugin documentation for a complete list of emitted metrics.
- If needed, select the metric to edit the description and how the units are displayed in Lightstep.
View metrics in Lightstep
After you have Lightstep ingesting metrics from Monit, you can use the Lightstep Terraform Provider to create a dashboard for the metrics.
Additional resources
-
For a complete example that’s ready to run, see Telegraf Monit input plugin in the Lightstep OpenTelemetry Examples.
-
You can learn more about configuring Telegraf from the official documentation.