- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
This FAQ is useful for users who query percentiles on distributions over a given timeframe, or users who want to query percentiles for specific intervals within a given timeframe.
Time aggregation (.rollup(<aggregator>, <time interval>)
and how it works with distributions with percentile aggregations has changed.
No - your existing queries are unaffected. The .rollup <aggregator>
parameter has been removed because it had no effect on query results but caused user confusion for how the resulting value was calculated.
You no longer need to specify an additional time aggregator (as in .rollup(avg)
) when you’ve already selected p50
, p75
, p90
, p95
, or p99
. You only need to specify a rollup <time interval>
which determines the interval of time your data is aggregated over.
Old UI
New UI
The rollup <aggregator>
parameter has no effect on distribution metrics queried with percentiles. That is, these two queries would both return the same 99th percentile value calculated over one-minute rollup intervals.
Query #1: p99:distribution.rollup(avg, 60)
Query #2: p99:distribution.rollup(60)
Unlike COUNT, GAUGE, and RATE metric types which aggregate first in time and then in space the distribution metric type is stored as DDSketches. Distributions with percentiles are merged in time and space at the same time. By selecting p99 by
, you’re aggregating the distribution metric by the 99th percentile in time and space.
Example: Suppose you’re graphing on a dashboard timeframe of the Past 4 hours, p99:distribution.rollup(60). Datadog merges the sketch data server-side to represent a rollup interval of a minute (for every minute within the dashboard timeframe of 4 hours). After the rollup is calculated, Datadog calculates a 99th percentile value for each minute interval.