Rollup

.rollup() The .rollup() function is used to aggregate your metrics data inherently in every metrics query. However, appending the .rollup() function at the end of a query allows you to perform custom time aggregation that overrides the defaults. This function enables you to define:

Note: The Distribution Metric type does not have a rollup aggregator parameter. This metric type is aggregated both in time and space. See the documentation on rollup for distributions with percentiles to learn more.

The function takes two parameters, <AGGREGATOR> and optionally <INTERVAL>: .rollup(<AGGREGATOR>,<INTERVAL>) or .rollup(<AGGREGATOR>).

ParameterDescription
<AGGREGATOR>Can be avg, sum, min, max, or count, and defines how data points are aggregated within a given time interval. Enforced default: avg.
<INTERVAL>Time (in seconds) of the interval between two data points displayed. Optional.

You can use them individually or together, for instance .rollup(sum,120). The following bar graph displays a week’s worth of CPU usage for a host without using the .rollup() function:

smooth_1

The following bar graph displays the same metric, graphed using a day-long rollup with .rollup(avg,86400):

smooth_2

Moving rollup

FunctionDescriptionExample
moving_rollupRollup to combine the points in the last X seconds.moving_rollup(<METRIC_NAME>, <INTERVAL> , <AGGREGATOR>)

Applying the moving_rollup() function to a query allows you to combine points from the most recent specified time range—that is, the last X seconds. Like with .rollup(), <AGGREGATOR> can be sum/min/max/count/avg and defines how data points are aggregated within the given time interval.

Rollup interval: enforced vs custom

When graphing, Datadog imposes a limit on the number of points per graph. To respect this limit, Datadog rolls up data points automatically with the avg method, effectively displaying the average of all data points within a time interval for a given metric. This default time interval varies depending on how the data is being visualized. See the following chart to reference these default time intervals:

TimeframeRollup Interval, Line GraphRollup Interval, Bar GraphRollup Interval, API
The past hour20s1m20s
The past four hours1m2m1m
The past day5m20m5m
The past two days10m30m10m
The past week1hr2hr1hr
The past month2hr12hr4hr

A custom .rollup() function can be used to enforce the type of time aggregation applied (avg, min, max, count, or sum) and the time interval to rollup. However, if a custom .rollup() function is applied and uses a smaller time interval than the Datadog limit, the Datadog limit is used instead while still using the specified rollup method. For example, if you’re requesting .rollup(20) for a month-long window, data is returned at a rollup greater than 20 seconds in order to prevent returning more than allotted number of points.

Note: Queries for COUNT and RATE type metrics have the .as_count() modifier appended automatically in the UI, which sets the rollup method used to sum and disables interpolation. This .as_count() is explicitly visible at the end of the query:

as_count

For more details about how to use .as_count() and .as_rate() see the Visualize StatsD metrics blog post, or learn more about the effects of those functions with the documentation on in-application modifiers.

Rollups in monitors

Rollups should usually be avoided in monitor queries, because of the possibility of misalignment between the rollup interval and the evaluation window of the monitor. The start and end of rollup intervals are aligned to UNIX time, not to the start and end of monitor queries. Therefore, a monitor may evaluate (and trigger on) an incomplete rollup interval containing only a small sample of data. To avoid this issue, delay the evaluation of your monitor by (at least) the length of the setup rollup interval.

Other functions