Once your RabbitMQ monitoring is configured with OpenTelemetry, your metrics will appear across multiple locations in New Relic. This guide shows you where to find your data and how to query it effectively.
Navigate to your RabbitMQ data
Your RabbitMQ metrics appear in several places across the New Relic platform, each optimized for different use cases:
1. Entity explorer
Best for: Quick health checks and entity relationships
- Go to one.newrelic.com > All capabilities > On host integrations
- View automatically created RabbitMQ entities from your metrics
2. Pre-built dashboards
Best for: Comprehensive monitoring and visualization
- Go to one.newrelic.com > Dashboards > Recommended dashboards (View all)
- Search for "OpenTelemetry RabbitMQ"
3. Third-party services
Best for: Integration-focused monitoring
- Go to one.newrelic.com > All capabilities > Infrastructure > Third-party services
- Search for "RabbitMQ" to quickly find your monitored instances
Query your RabbitMQ data
All RabbitMQ metrics include the instrumentation.provider = 'opentelemetry' attribute. Here are some useful queries:
View all available metrics
SELECT count(*)FROM MetricWHERE metricName LIKE 'rabbitmq.%' AND instrumentation.provider = 'opentelemetry'FACET metricNameSINCE 10 minutes agoMonitor queue depths
SELECT latest(rabbitmq.queue.message.count)FROM MetricWHERE instrumentation.provider = 'opentelemetry'FACET rabbitmq.queue.nameTIMESERIESTrack consumer lag
SELECT latest(rabbitmq.queue.message.unacknowledged)FROM MetricWHERE instrumentation.provider = 'opentelemetry' AND rabbitmq.queue.name = 'your-queue-name'TIMESERIESAvailable metrics
The integration collects these categories of metrics:
Category | What it measures | Example metrics |
|---|---|---|
Queue metrics | Message flow and queue health |
|
Connection metrics | Client connectivity |
|
For complete details, see the Metrics reference.
What's next?
Now that you can find and query your RabbitMQ data, enhance your monitoring setup:
Learn more:
- Overview - Learn about RabbitMQ integration architecture and deployment options
- Metrics reference - Complete metrics list with NRQL query examples
Enhance monitoring:
- Configure alerts - Set up alerts for queue depths, memory usage, and connection counts
- Build dashboards - Create custom dashboards to visualize your RabbitMQ metrics