Jump to: navigation, search

Ceilometer/AlarmEvaluatorJuno

< Ceilometer
Revision as of 15:04, 16 May 2014 by Nsaje (talk | contribs) (Created page with "====Statistics over sliding windows==== Statistics where increments/decrements are possible: * count, * sum, * average, * stddev Statistics with special implementation: *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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