SigNoz Cloud - This page is relevant for SigNoz Cloud editions.
Self-Host - This page is relevant for self-hosted SigNoz editions.

Meter Explorer Query Guide

Use these examples to analyze common cost patterns in Meter Explorer and save recurring views for later reuse.

Querying Meter Data

Meter Explorer uses the same powerful query interface as other SigNoz components, making it easy to analyze your cost data with familiar patterns and syntax.

Time Range Considerations

Important: Meter data is aggregated over hourly intervals. Queries with time ranges under 1 hour will not return any data. For real-time analysis, use time ranges of 1 hour or greater.

Query Patterns

The querying patterns for meter data are identical to standard metric querying patterns. You can use the same operators, functions, and syntax that you're familiar with from other SigNoz metrics.

For detailed information about metric querying, refer to our Metrics Management Guide.

Example Queries

1. Log Size Analysis by Service

To find the total size of log records ingested by a specific service over the last day:

signoz.meter.log.size{service.name="demo-app"}

This query will show you the total log size for the demo-app service, helping you understand which services are generating the most log data.

Log size analysis for demo-app service over the last day
Example: Log size analysis for demo-app service showing ingestion patterns over time

2. Span Count by Environment

To analyze span ingestion across different environments:

signoz.meter.span.count{deployment.environment="otel-demo"}

This helps you understand the volume of trace data being generated in your environment.

Span count analysis for otel-demo environment over the last day
Example: Span count analysis for otel-demo environment over the last day

3. Multi-Service Cost Comparison

To compare log ingestion across multiple services:

signoz.meter.log.size{group-by:service.name}
Log size analysis group by service.name over the last day
Example: Log size analysis group by service.name over the last day

4. Host-Level Analysis

To identify which hosts are generating the most telemetry data:

signoz.meter.log.size{host.name = "x"}

This aggregation helps you identify hosts that might be generating excessive log data.

Log size analysis host name: x over the last day
Example: Log size analysis host name: x over the last day

5. Ingestion ID-Based Analysis

To analyze telemetry data based on specific ingestion IDs:

signoz.meter.log.size{signoz.workspace.key.id = "01963e56-0bbb-7df5-b26c-2c4aa48b291a"}
Log size analysis for ingestion key id: 01963e56-0bbb-7df5-b26c-2c4aa48b291a over the last day
Example: Log size analysis for ingestion key id: 01963e56-0bbb-7df5-b26c-2c4aa48b291a over the last day

Next steps

Last updated: May 7, 2026

Edit on GitHub

Was this page helpful?

Your response helps us improve this page.

On this page

Is this page helpful?

Your response helps us improve this page.