25 Sep 2024 02:48 PM
Hi,
Is there any way to create Auto-adaptive threshold/Seasonal baseline Metric events that will be triggered only if the value is greater than X?
Thanks
Solved! Go to Solution.
25 Sep 2024 03:22 PM
Do you mean a mix of thresholds and baselines?
If the baseline event does not reach threshold X?
26 Sep 2024 12:21 PM
AFAIK this is not possible, probably you can check if you can implement something using slos
29 Sep 2024 07:39 AM
@AntonPineiro Its not an option since the static threshold for one service is not relevant for another, and I have thousands of microservices.
01 Oct 2024 07:22 AM
I saw this in the metric event settings:
Anyone know what exactly it affects?
01 Oct 2024 12:08 PM
The threshold, whether static or baseline, used for monitoring the metric.
01 Oct 2024 12:27 PM
@PacoPorro thanks for your answer. Can you please elaborate?
01 Oct 2024 12:48 PM - edited 01 Oct 2024 12:49 PM
Hello @kobkob
Let's agree that:
As a conclusion
Feel free to review Seasonal Baselining
KR,
Peter.
01 Oct 2024 12:50 PM
I recommend using the Davis Anomaly Detector in the new layout as it will not incur any limits etc on your allotment of metric events. Assuming your metric does not begin with ext:
01 Oct 2024 03:11 PM
maybe you can try partition in metric selector to apply static threshold and then use baseline, f.e. for cpu util >6% (i added default to fill the gaps with data):
builtin:host.cpu.usage:splitBy():auto:partition("cpuhigh",value("gt6",gt(6))):default(6)
06 Oct 2024 01:16 PM
@rastislav_danis I think this is what I was looking for! Ill defently try it and update if it worked. Thanks a lot!