You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The change types currently shown in the log categories data grid are more or less passed through from the change_point aggregation. These types are sometimes hard to interpret as a human or an LLM. Additionally, they are sensitive to small variations in the distribution of the histogram when the document count is low, which leads to confusing flapping between types like spike and step.
📓 Summary
The change types currently shown in the log categories data grid are more or less passed through from the
change_point
aggregation. These types are sometimes hard to interpret as a human or an LLM. Additionally, they are sensitive to small variations in the distribution of the histogram when the document count is low, which leads to confusing flapping between types likespike
andstep
.✔️ Acceptance criteria
rare
: present in fewer than 1/5th of the bucketsstationary
by counting bucketsnew
: a detected change point before which all buckets are empty, but after which less than 1/2 of the buckets are emptystep_change
,distribution_change
,trend_change
by counting buckets of the two parts of the histogramdisappeared
: a detected change point before which less than 1/2 of the buckets are empty, but after which all buckets are emptystep_change
,distribution_change
,trend_change
by counting buckets of the two parts of the histogramdecreased
: a detected change point before which the average doc count per bucket was larger than afterstep_change
,distribution_change
,trend_change
by counting buckets of the two parts of the histogramnon_stationary
with a decreasing trend valueincreased
: a detected change point after which the average doc count per bucket was larger than beforestep_change
,distribution_change
,trend_change
by counting buckets of the two parts of the histogramnon_stationary
with an increasing trend valuespike
/dip
remain as beforenone
: no change was detectedunknown
: Elasticsearch returned a change type we don't know how to handle (i.e. due to it being a newer version)💡 Implementation hints
Known change types and their attributes as returned by Elasticsearch
Change point detection algorithm of the
change_point
aggregationThe text was updated successfully, but these errors were encountered: