interpolated_delta()

Calculate the change in a counter over a time period. Data points at the exact boundaries of the time period aren’t needed. The function interpolates the counter values at the boundaries from adjacent CounterSummaries if needed.

  1. interpolated_delta(
  2. summary CounterSummary,
  3. start TIMESTAMPTZ,
  4. interval INTERVAL,
  5. prev CounterSummary,
  6. next CounterSummary
  7. ) RETURNS DOUBLE PRECISION

For more information about counter aggregation functions, see the hyperfunctions documentation.

Required arguments

NameTypeDescription
summaryCounterSummaryThe input CounterSummary from a counter_agg call
startTIMESTAMPTZThe start of the interval which the delta should be computed over (if there is a preceeding point)
intervalINTERVALThe length of the interval which the delta should cover

Optional arguments

NameTypeDescription
prevCounterSummaryThe CounterSummary from the prior interval, used to interpolate the value at start. If NULL, the first timestamp in summary is used as the start of the interval.
nextCounterSummaryThe CounterSummary from the following interval, used to interpolate the value at start + interval. If NULL, the last timestamp in summary is used as the end of the interval.

Returns

NameTypeDescription
interpolated_deltaDOUBLE PRECISIONThe delta between the first and last points of the time interval. If exact values are missing in the raw data for the first and last points, these values are interpolated linearly from the neighboring CounterSummaries

Sample usage

  1. SELECT
  2. id,
  3. bucket,
  4. interpolated_delta(
  5. summary,
  6. bucket,
  7. '15 min',
  8. LAG(summary) OVER (PARTITION BY id ORDER by bucket),
  9. LEAD(summary) OVER (PARTITION BY id ORDER by bucket)
  10. )
  11. FROM (
  12. SELECT
  13. id,
  14. time_bucket('15 min'::interval, ts) AS bucket,
  15. counter_agg(ts, val) AS summary
  16. FROM foo
  17. GROUP BY id, time_bucket('15 min'::interval, ts)
  18. ) t