How to Export Metrics to an OTLP Endpoint
Not yet available on FTStatus
This guide covers a capability that isn't wired up on FTStatus yet. Talk to support if you need it for your account.
Problem
You want to analyze your FTStatus monitoring data alongside other telemetry data in your existing observability platform (like Grafana, New Relic, or Honeycomb). You need a standardized way to export these metrics without building a custom integration.
Solution
FTStatus can export monitoring metrics to any OTLP (OpenTelemetry Protocol) compatible endpoint. By adding a simple configuration to your openstatus.yaml file, you can have metrics from every check sent directly to your monitoring stack.
Prerequisites
- An observability platform that supports OTLP metric ingestion over HTTP.
- An
openstatus.yamlfile to configure your monitors. - The FTStatus CLI to apply your configuration.
Step-by-step guide
1. Locate your OTLP endpoint URL and headers
First, you need to find the specific URL and any required authentication headers from your observability platform. This is usually found in the documentation under "OTLP", "OpenTelemetry", or "Metrics Export".
- Endpoint URL — look for an HTTP endpoint for OTLP metrics. It typically ends in
/v1/metrics. For example:https://otlp.your-provider.com/v1/metrics. - Headers — you will likely need an authentication header, such as
Authorization: Bearer YOUR_API_KEYorX-API-Key: YOUR_API_KEY.
2. Configure your openstatus.yaml file
Open your openstatus.yaml file and add the openTelemetry block at the top level.
# yaml-language-server: $schema=https://ftstatus.com/schema.json
openTelemetry:
endpoint: <YOUR_OTLP_ENDPOINT_URL>
headers:
Authorization: Bearer <YOUR_TOKEN>
# Add any other required headers here
# Your monitors are defined below
my-first-monitor:
# ...
Replace <YOUR_OTLP_ENDPOINT_URL> and <YOUR_TOKEN> with the values you found in step 1.
Note: Currently, we only support OTLP over HTTP.
3. Apply the configuration
Use the FTStatus CLI to apply the changes to your account.
openstatus monitors apply
After applying the configuration, FTStatus will send metrics to your specified endpoint after every check is completed.
4. Verify in your observability platform
Go to your observability platform and look for the new metrics coming from FTStatus. You should be able to build dashboards and alerts based on this data.
Here are some examples of what it can look like:
Grafana

Honeycomb

New Relic

SigNoz

