idelta_left() and idelta_right()

The instantaneous change in the counter at the left (earlier) and right (later) side of the time range.

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

idelta_left()

The instantaneous change in the counter at the left (earlier) side of the time range. Essentially, the first value subtracted from the second value seen in the time range (handling resets appropriately). This can be especially useful for fast moving counters.

  1. idelta_left(
  2. summary CounterSummary
  3. ) RETURNS DOUBLE PRECISION

Required arguments

NameTypeDescription
summaryCounterSummaryThe input CounterSummary from a counter_agg call

Returns

NameTypeDescription
idelta_leftDOUBLE PRECISIONThe instantaneous delta computed from the left (earlier) side of the CounterSummary

Sample usage

  1. SELECT
  2. id,
  3. bucket,
  4. idelta_left(summary)
  5. FROM (
  6. SELECT
  7. id,
  8. time_bucket('15 min'::interval, ts) AS bucket,
  9. counter_agg(ts, val) AS summary
  10. FROM foo
  11. GROUP BY id, time_bucket('15 min'::interval, ts)
  12. ) t

idelta_right()

The instantaneous change in the counter at the right (later) side of the time range. Essentially, the penultimate value subtracted from the last value seen in the time range (handling resets appropriately). This can be especially useful for fast moving counters.

  1. idelta_right(
  2. summary CounterSummary
  3. ) RETURNS DOUBLE PRECISION

Required arguments

NameTypeDescription
summaryCounterSummaryThe input CounterSummary from a counter_agg call

Returns

NameTypeDescription
idelta_rightDOUBLE PRECISIONThe instantaneous delta computed from the right (later) side of the CounterSummary

Sample usage

  1. SELECT
  2. id,
  3. bucket,
  4. idelta_right(summary)
  5. FROM (
  6. SELECT
  7. id,
  8. time_bucket('15 min'::interval, ts) AS bucket,
  9. counter_agg(ts, val) AS summary
  10. FROM foo
  11. GROUP BY id, time_bucket('15 min'::interval, ts)
  12. ) t