Grafana Alloy
Oodle has native support for metrics emitted via the Prometheus Remote-Write Protocol.
To send metrics to Oodle from Grafana Alloy, you will need the following:
OODLE_INSTANCE
: Your Oodle instance IDOODLE_API_KEY
: Your Oodle API key for authentication
Alloy Configuration
You can add a prometheus.remote_write
component
to your Alloy configuration to send metrics to Oodle:
// Example of existing prometheus destination
prometheus.remote_write "existing" {
endpoint {
// configuration ...
}
}
prometheus.remote_write "oodle" {
endpoint {
url = "https://<OODLE_INSTANCE>.collector.oodle.ai/v1/prometheus/<OODLE_INSTANCE>/write"
headers = {
"X-API-KEY" = "<OODLE_API_KEY>",
}
}
}
// Example of existing prometheus forwarder
otelcol.exporter.prometheus "example" {
forward_to = [
prometheus.remote_write.existing.receiver,
prometheus.remote_write.oodle.receiver,
]
}
Support
If you need assistance or have any questions, please reach out to us through:
- The help chat widget in the bottom-right corner of this page
- Email at support@oodle.ai