Grafana Alloy
Oodle has native support for Open Telemetry Logs.
To send logs 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 otelcol.exporter.otlphttp
component
to your Alloy configuration to send logs to Oodle:
otelcol.exporter.otlphttp "oodle_logs" {
client {
endpoint = "https://<OODLE_INSTANCE>-logs.collector.oodle.ai"
headers = {
"X-OODLE-INSTANCE" = "<OODLE_INSTANCE>",
"X-API-KEY" = "<OODLE_API_KEY>",
}
compression = "gzip"
}
logs_endpoint =
"https://<OODLE_INSTANCE>-logs.collector.oodle.ai/ingest/otel/v1/logs"
}
// Example of existing logs processor
otelcol.processor.attributes "add_environment" {
action {
// Existing config
}
output {
logs = [
otelcol.exporter.loki.default.input,
otelcol.exporter.otlphttp.oodle_logs.input,
]
}
}
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