slope()

The slope of the least squares fit line computed from the adjusted counter values and times input in the CounterSummary. Because the times are input as seconds, the slope provides a per-second rate of change estimate based on the least squares fit, which is often similar to the result of the rate calculation, but can more accurately reflect the usual behavior if there are infrequent, large changes in a counter.

  1. slope(
  2. summary CounterSummary
  3. ) 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

Returns

NameTypeDescription
slopeDOUBLE PRECISIONThe per second rate of change computed by taking the slope of the least squares fit of the points input in the CounterSummary

Sample usage

  1. SELECT
  2. id,
  3. bucket,
  4. slope(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