DQL timeseries examples
Latest Dynatrace
Metrics on Grail enable you to pinpoint and retrieve any metric data with the help of Dynatrace Query Language. After reviewing the fundamentals of DQL queries and the timeseries command, use the examples on this page to start getting answers from your metrics.
Example 1: Average CPU usage across all hosts
In this example, you'll query the average CPU usage across all monitored hosts in your environment.
OneAgent collects CPU measurements from its host machine. These metrics are accessible through metric keys beginning with dt.host.cpu
.
Observing the aggregate CPU usage across all hosts can help you visually confirm how your infrastructure responds to and recovers from usage spikes or slow, imperceptible growth trends over time.
timeseries usage=avg(dt.host.cpu.usage)
Example 2: Average CPU usage by host, limit to top 3 hosts
In this example, you get every monitored host's average CPU usage and focus on the three hosts with the highest usage.
OneAgent collects CPU measurements from its host machine. These metrics are accessible through metric keys beginning with dt.host.cpu
.
Charting individual hosts' CPU usage helps to visualize normal and outlier usage. By focusing on the three hosts with highest CPU usage, you can begin investigating under-provisioned applications. Likewise, focusing on hosts with the lowest CPU usage may reveal over-provisioning and lead to cost-saving opportunities.
-
Query the data.
timeseries usage=avg(dt.host.cpu.usage), by:{dt.entity.host}| fieldsAdd entityName(dt.entity.host)| sort arrayAvg(usage) desc| limit 3 -
Simplify results.
A table can be easier to read than a line chart in some situations. Let's query data that works best with table output by focusing on the columns we most care about:
dt.entity.host
andusage
.timeseries usage=avg(dt.host.cpu.usage), by:{dt.entity.host}| fieldsAdd entityName(dt.entity.host)| sort arrayAvg(usage) desc| limit 3| fields dt.entity.host, dt.entity.host.name, usage=arrayAvg(usage)This is essentially the same query as above, removing the series and keeping only the series aggregation.
You can refer to the DQL documentation for a list of available
arrayXXX
functions. If you're familiar with metric expressions, you'll find these functions similar to the:fold
transformation.
Example 3: Average CPU usage by host IP Address
In this example, you'll use an in
condition to query hosts based on their IP address.
By using the in
operator with classicEntitySelector
, you can filter on ipAddress
and other host attributes.
Using the timeseries filter
parameter is more performant than chaining timeseries
with the filter
command.
timeseries usage=avg(dt.host.cpu.usage),filter: {in(dt.entity.host,classicEntitySelector("type(host),ipAddress(\"10.102.39.126\")"))}
Example 4: Number of hosts sending CPU usage data
In this example, you'll learn how to chain timeseries
with summarize
. You'll first query hosts sending CPU usage data, and then count the number of hosts in the result.
Other DQL commands can also be chained with timeseries
as demonstrated in previous examples, but unlike those examples, summarize
further aggregates the dataset returned by timeseries
. You'll find this two-step aggregation helpful as your questions become more complex and nuanced.
timeseries usage=avg(dt.host.cpu.usage), by:{dt.entity.host}| summarize count()
Example 5: Top hosts by bytes read with corresponding bytes written
In this example, you'll enrich a single result with context from another metric.
Even when focused on disk read operations, the corresponding disk writes can provide helpful context.
timeseries by:{dt.entity.host}, {bytes_read=sum(dt.host.disk.bytes_read),bytes_written=sum(dt.host.disk.bytes_written)}| sort arrayAvg(bytes_read) desc| limit 3| fieldsdt.entity.host,entityName(dt.entity.host),bytes_read=arrayAvg(bytes_read),bytes_written=arrayAvg(bytes_written)
Example 6: Available CPU by Kubernetes Node
In this example, you'll calculate the available CPU on all nodes of your hypothetical "openfeature" cluster.
To return a timeseries instead of a single value, we use the []
operator to take the difference of individual timeseries values. The result is another timeseries that you can visualize with a line chart.
The available CPU is integral for efficient resource utilization and avoiding resource contention. A timeseries visualized with a line chart is one way to show how the available CPU changes over time.
timeseries {cpu_allocatable = min(dt.kubernetes.node.cpu_allocatable),requests_cpu = max(dt.kubernetes.container.requests_cpu)},by:{dt.entity.kubernetes_cluster, dt.entity.kubernetes_node}| fieldsAdd // add friendly namesentityName(dt.entity.kubernetes_cluster),entityName(dt.entity.kubernetes_node)| fieldsAdd result = cpu_allocatable[] - requests_cpu[]| fieldsRemove cpu_allocatable, requests_cpu
Example 7: Average host CPU usage by host size
In this example, you'll learn how to use a entityAttr
command to analyze host CPU usage by host size.
OneAgent collects local context from its host: information such as how many CPUs are installed and how much memory it has. You can add this information to your query with the entityAttr
function.
Host-level information can sometimes be too fine-grained and difficult to interpret. In these situations, a well-chosen entity attribute can help you explore and analyze how individual hosts contribute to broader trends.
timeseries usage=avg(dt.host.cpu.usage), by:{dt.entity.host}| fieldsAdd usage=arrayAvg(usage)| fieldsAdd cpuCores = entityAttr(dt.entity.host, "cpuCores")| summarize by:{cpuCores}, avg(usage), count_hosts=count()
Example 8: Query multiple CPU usage metrics with a single query
In this example, you'll learn how to use the append
command to return multiple CPU metrics with a single query.
Combining queries into one command can be useful for comparing measurements from different contexts, as they will be charted together.
As you query many metrics from a single host and perform no arithmetic, the append
command here is preferred to querying multiple metrics with a single timeseries
command. The append
command is a comparatively more flexible option, as it doesn't require equivalent by
or filter
arguments, for example. Additionally, chaining append
is more efficient from a DQL perspective.
timeseries idle=avg(dt.host.cpu.idle),by:dt.entity.host,filter: dt.entity.host == "HOST-EFAB6D2FE7274823"| append [timeseries system=avg(dt.host.cpu.system),by:dt.entity.host,filter: dt.entity.host == "HOST-EFAB6D2FE7274823"]| append [timeseries user=avg(dt.host.cpu.user),by:dt.entity.host,filter: dt.entity.host == "HOST-EFAB6D2FE7274823"]
Example 9: Connection failure rate by host
In this example, you'll apply what you've learned from previous examples to calculate the failure rate and find hosts running processes with many failed connections.
This example uses the default
parameter to control for the case where there are no failures. It inserts a 0
value anywhere data is missing.
Failure rate calculations are common and critical for monitoring service-level objectives. Spotting persistent or recurring high failure rates in testing environments could indicate a deployment problem before the application reaches production.
timeseries {new = sum(dt.process.network.sessions.new),{reset = sum(dt.process.network.sessions.reset), default:0},{timeout = sum(dt.process.network.sessions.timeout), default:0}},by:{dt.entity.host}| fieldsAdd result = 100 * (reset[] + timeout[]) / new[]| filter arrayAvg(result) > 0| sort arrayAvg(result) desc
Example 10: Monitoring host availability
In this example you will monitor the availability of hosts and count those that are currently up.
You can use the timeseries command with the nonempty
parameter to calculate host availability. This parameter ensures that you get a result even when no data match the filter–such as when no hosts are up. This provides a more accurate representation of host availability.
timeseries availability = sum(dt.host.availability, default:0),nonempty:true,filter:{availability.state == "up"}
Example 11: Readiness probe
In this example you'll query log metrics to count successful and failed readiness probes by host.
You can use the union
parameter to capture all hosts, including those with no failures or no successes.
timeseriesfailure_count=sum(log.readiness_probe.failure_count, default:0),success_count=sum(log.readiness_probe.success_count, default:0),by:{dt.entity.host},union:true
The union:true
argument captures all hosts, even if they had no failures or no successes.
Example 12: Failure rate
In this example, you will query the per-second failure rate for a specific endpoint ("/api/accounts"). By using the rate
parameter, you can normalize the timeseries data to a specific duration.
Monitoring request failure rates is crucial for understanding application performance, identifying bottlenecks, and ensuring optimal user experience.
Dynatrace shows the per-minute request count by default, as Dynatrace service metrics collect one-minute granularity request data.
timeseries sum(dt.service.request.failure_count, rate:1s),filter:{startsWith(endpoint.name, "/api/accounts")}
Example 13: Capacity planning
In this example, you will query current host-disk availability and use the shift
parameter to compare it to usage 7 days ago.
Monitoring host-disk availability helps with capacity planning. If today's disk space usage is consistently higher than 7 days ago, it may signal the need for additional storage resources. Conversely, a decrease in usage might allow for resource optimization.
timeseries avail=avg(dt.host.disk.avail), by:{dt.entity.host}, from:-24h| append [timeseries avail.7d=avg(dt.host.disk.avail), by:{dt.entity.host}, shift:-7d]| filter startsWith(entityName(dt.entity.host), "prod-")
Example 14: Verify host availability and redundance
In this example you'll use the count
aggregation to track the number of hosts monitored in each AZ of AWS region us-east-1.
Applications frequently deploy hosts across multiple availability zones (AZs) to ensure high availability. Counting hosts in each AZ helps verify that the distribution is balanced and, should one AZ experience network disruptions or other issues, the workload can fail over to another AZ.
timeseries num_hosts = count(dt.host.cpu.usage),by:{aws.availability_zone},filter:{startsWith(aws.availability_zone, "us-east-1")}
Example 15: Performance optimization
In this example you'll use the percentile
aggregation to track the 90th percentile response time of the contrived /api/accounts endpoint.
Tracking the service response time percentiles helps identify bottlenecks and areas for improvement. If a specific transaction consistently exceeds this threshold, you can decide if it warrants investigation and additional optimization.
timeseries p90 = percentile(dt.service.request.response_time, 90),filter:{startsWith(endpoint.name, "/api/accounts")}
Example 16: Right-sizing deployments
In this example you'll use the if
function to label underused host-disk pairs.
Identifying overprovisioned deployments helps reduce operating costs. By removing overprovisioned infrastructure, you can determine the right size deployment for your application.
timeseries avail=avg(dt.host.disk.avail),by:{dt.entity.disk, dt.entity.host},filter:{startsWith(dt.entity.host, "my-app-")}| fieldsAdd avail=arrayAvg(avail)| fieldsAdd disk_usage=if(avail>450000000000, "underused", else: "optimal")| limit 3
Example 17: Split CPU usage by kubernetes annotations
In this example you'll split CPU usage by kubernetes annotation.
You can use kubernetes annotation app.kubernetes.io/component
to evaluate the performance of your application components. Annotations are cloud application attributes and aren't typically ingested with a metric. You should split by the cloud application and look up the relevant annotation.
Many summarize
command functions accept iterative expressions like cpu_usage[]
to preserve the timeseries.
timeseries cpu_usage = sum(dt.kubernetes.container.cpu_usage, rollup:max),by:{dt.entity.cloud_application}| fieldsAdd annotations = entityAttr(dt.entity.cloud_application, "kubernetesAnnotations")| fieldsAdd component = annotations[`app.kubernetes.io/component`]| summarize cpu_usage = sum(cpu_usage[]),by:{timeframe, interval, component}