Frequency aggregation

Howdy,

Given: each event with timestamp is already in an index.

Problem:
I am looking for a way to aggregate (percentile) the frequency of events.
For example, between the hours of 8am and 5pm, what is the load in that time for n days? (1 event every x seconds 99% of the time)

Solution?:
I am thinking the following:

  1. query the events between 8am and 5pm for each day in the range
  2. calculate the frequency of the events (I am hoping there is some help on this)
  3. aggregate the frequency for all of the n days (a bucket)
  4. then get the percentile - and render in kibana (how to render percentiles in kibana is most helpful)

Any insights tips or help before I start a bruit force approach would be helpful.
Thanks

2 Likes

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.