Oodle AI
Send logs, metrics, and traces to Oodle using the OpenTelemetry Protocol (OTLP) HTTP exporter.
Oodle provides a unified observability platform for managing all types of telemetry data. Each telemetry type uses dedicated receivers optimized for its specific data model. Metrics are automatically converted to Prometheus format for visualization and querying.
Supported Telemetry Types
Traces
✓
Metrics
✓
Logs
✓
Prerequisites
Before configuring the Oodle (OTLP) destination, ensure you have:
A running Oodle instance
Your Oodle instance name
An Oodle API key for authentication
Network connectivity from your Bindplane agent to the Oodle instance
At least one telemetry type selected (logs, metrics, or traces)
For help with Oodle setup, see the Oodle documentation.
Configuration
Basic Configuration
The minimum configuration requires the Oodle instance name and API key. You can select which telemetry types to export.
Parameters:
Choose Telemetry Type
Selector
Logs, Metrics, Traces
Select which types of telemetry to export
Yes
Oodle Instance Name
String
-
Oodle instance name to send telemetry to
Yes
API Token
String
-
API Token for authenticating with the Oodle API
Yes
Advanced Configuration
General Settings
Settings for controlling log processing and timeout behavior.
Drop Raw Copy
Boolean
true
Drop the raw copy of the log record stored in log.record.original
No
Timeout
Integer
30
Timeout in seconds for sending batches to Oodle
Yes
Retry and Queuing
This destination supports the following retry and queuing settings:
Enable Retry on Failure
Boolean
true
Enable retry on failure
Initial Interval
Integer
5
Initial retry interval in seconds
Max Interval
Integer
30
Maximum retry interval in seconds
Max Elapsed Time
Integer
300
Maximum total retry time in seconds
Enable Sending Queue
Boolean
true
Enable sending queue for buffering
Number of Consumers
Integer
10
Number of queue consumers
Queue Size
Integer
5000
Maximum queue size in batches
Enable Persistent Queuing
Boolean
true
Enable persistent disk-based queuing
Persistent Queue Directory
String
${OIQ_OTEL_COLLECTOR_HOME}/storage
Directory for persistent queue storage
Synchronize Persistent Queue to Disk
Boolean
false
Synchronize persistent queue to disk for data integrity
For more information, see Retry and Queuing Configuration.
Examples
Basic Configuration (All Telemetry Types)
This example configures the destination to send logs, metrics, and traces to Oodle.
apiVersion: bindplane.observiq.com/v1
kind: Destination
metadata:
id: oodle
name: Oodle
spec:
type: oodle
parameters:
- name: telemetry_types
value: ['Logs', 'Metrics', 'Traces']
- name: oodle_instance_name
value: 'my-instance'
- name: api_token
value: 'your-api-token-here'Logs and Metrics Only
This example configures the destination to send only logs and metrics.
apiVersion: bindplane.observiq.com/v1
kind: Destination
metadata:
id: oodle-logs-metrics
name: Oodle (Logs & Metrics)
spec:
type: oodle
parameters:
- name: telemetry_types
value: ['Logs', 'Metrics']
- name: oodle_instance_name
value: 'my-instance'
- name: api_token
value: 'your-api-token-here'
- name: drop_raw_copy
value: true
- name: retry_on_failure_enabled
value: true
- name: sending_queue_enabled
value: trueProduction Configuration with Persistent Queuing
This example demonstrates a high-reliability configuration for production environments.
apiVersion: bindplane.observiq.com/v1
kind: Destination
metadata:
id: oodle-production
name: Oodle (Production)
spec:
type: oodle
parameters:
- name: telemetry_types
value: ['Logs', 'Metrics', 'Traces']
- name: oodle_instance_name
value: 'my-instance'
- name: api_token
value: 'your-api-token-here'
- name: drop_raw_copy
value: true
- name: timeout
value: 30
- name: retry_on_failure_enabled
value: true
- name: retry_on_failure_initial_interval
value: 5
- name: retry_on_failure_max_interval
value: 30
- name: retry_on_failure_max_elapsed_time
value: 300
- name: sending_queue_enabled
value: true
- name: sending_queue_num_consumers
value: 10
- name: sending_queue_queue_size
value: 5000
- name: persistent_queue_enabled
value: true
- name: persistent_queue_fsync
value: trueTraces Only
This example configures the destination for distributed tracing only.
apiVersion: bindplane.observiq.com/v1
kind: Destination
metadata:
id: oodle-traces
name: Oodle (Traces Only)
spec:
type: oodle
parameters:
- name: telemetry_types
value: ['Traces']
- name: oodle_instance_name
value: 'my-instance'
- name: api_token
value: 'your-api-token-here'
- name: retry_on_failure_enabled
value: true
- name: sending_queue_enabled
value: true
- name: persistent_queue_enabled
value: trueConfiguration Tips
Telemetry Type Selection
All telemetry types (default): Export logs, metrics, and traces for comprehensive observability
Custom selection: Choose only the telemetry types you need to optimize resource usage
Flexible configuration: Can be changed at any time without redeploying
Instance Name and API Token
Instance name must match your Oodle instance identifier
API token provides secure authentication
Keep API token secure; use environment variables or secret management systems
Store credentials in a secure location and never commit them to version control
Raw Copy Handling
Enable Drop Raw Copy to reduce storage for log telemetry
Disable only if you need the original raw log record for debugging
Default behavior (enabled) is recommended for production environments
Metrics in Oodle
Metrics are automatically converted from OTLP to Prometheus format
Metric names are normalized to meet Prometheus requirements
Use the Explore Metrics tab in Oodle with PromQL queries for visualization
Resource attributes are mapped to Prometheus labels for better filtering
Security Best Practices
Store API tokens securely using environment variables or secret management systems
Regularly rotate API tokens per your security policy
Use Oodle's principle of least privilege for token permissions
Monitor token usage for suspicious activity
Never share API tokens outside your organization
Performance Tuning
Increase Queue Size for high-volume telemetry collection
Adjust Number of Consumers based on available CPU and network bandwidth
Enable Persistent Queuing for mission-critical data
Enable Synchronize Persistent Queue to Disk in critical environments for data durability
Multi-Telemetry Considerations
Each telemetry type is routed to its appropriate Oodle receiver automatically
Compression is applied automatically to all telemetry types
Retry and queue settings apply uniformly across all selected types
Custom resource attributes can be added via resource processors in your configuration
Troubleshooting
Connection Refused or Timeout
Symptoms: Telemetry is not being sent; connection timeout errors in logs.
Solutions:
Verify Oodle instance is running and accessible
Verify the instance name is correct
Test network connectivity to Oodle:
telnet <instance-name>.collector.oodle.ai 443Verify firewall rules allow outbound HTTPS traffic
Check that the API token is valid
Authentication Failures
Symptoms: "401 Unauthorized" or authentication errors in logs.
Solutions:
Verify the API token is correct and valid
Check that the token hasn't expired
Ensure the token has appropriate permissions for your Oodle instance
Verify both the instance name and API token are correctly configured
Check Oodle logs for authentication errors
Telemetry Not Appearing
Symptoms: Telemetry is sent but doesn't appear in Oodle UI or queries.
Solutions:
Verify the telemetry type is included in the configuration
Check that sources are generating telemetry
Verify proper routing and processing of telemetry data
Check Oodle's ingestion logs for errors or rejections
Ensure the instance name matches the one used in Oodle
High Queue Depth
Symptoms: Sending queue is consistently full; telemetry may be dropped if persistent queuing is disabled.
Solutions:
Verify Oodle instance can handle the telemetry volume
Check for network latency or bandwidth issues
Increase Queue Size to buffer more telemetry
Increase Number of Consumers to process batches faster
Enable Persistent Queuing to prevent data loss during outages
Consider distributing telemetry across multiple Oodle instances
Performance Issues
Symptoms: High CPU or memory usage; slow telemetry ingestion.
Solutions:
Monitor Bindplane agent CPU and memory usage
Consider reducing telemetry volume at the source (sampling, filtering)
Disable Synchronize Persistent Queue to Disk if enabled (unless data integrity is critical)
Verify network connectivity and latency to Oodle
Consider batching at the source to reduce telemetry frequency
Data Loss
Symptoms: Telemetry is dropped after restarts or network outages.
Solutions:
Enable Persistent Queuing
Verify persistent queue directory exists and has write permissions
Monitor queue size to ensure it's not overflowing
Enable Retry on Failure to handle transient failures
Check available disk space for persistent queue storage
For critical environments, enable Synchronize Persistent Queue to Disk
Review logs for exporter errors or capacity issues
Related Resources
Last updated
Was this helpful?