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 ID. Go toSettingsicon ->API Keyspage in your Oodle UI to find out. (Oodle UI links: ap1, us1)OODLE_API_KEY: Your Oodle API key for authentication. Go toSettingsicon ->API Keysin your Oodle UI to choose an appropriate key. (Oodle UI links: ap1, us1)
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,
]
}
Steps
You can find the Alloy Config config changes by following these steps:
- Login to the Oodle UI, then navigate to Settings page
- Click on the Alloy tile
- Choose an appropriate API key from the list on top of the drawer
- Select the Metrics tab
Follow the steps in the Alloy tile drawer to send metrics to Oodle
Support
If you need assistance or have any questions, please reach out to us through:
- The help chat widget available on the Support link in the sidebar
- Email at support@oodle.ai