Jump to: navigation, search

Difference between revisions of "Ceilometer/AlarmEvaluatorJuno"

(Created page with "====Statistics over sliding windows==== Statistics where increments/decrements are possible: * count, * sum, * average, * stddev Statistics with special implementation: *...")
(No difference)

Revision as of 15:04, 16 May 2014

Statistics over sliding windows

Statistics where increments/decrements are possible:

  • count,
  • sum,
  • average,
  • stddev

Statistics with special implementation:

  • min/max : needs O(log n) space (probably in DB), where n = window size
  • percentile : classical statistics query
  • cardinality : approximate algorithm, extremely efficient