Hello everyone,
i was reading through the docs and became curious
Say i create two detectors.
One detector is high_sum(a) over b
The other detector is high_sum(a) by c.
Now, if i define exclude_frequent = over for the first detector, then it will exclude frequently occurring values in b from triggering anomalies completely?
Consequently, it would make no sense to define exclude_frequent = over with the second detector high_sum(a) by c since over_field is empty?
Thus in case of high_sum(a) by c we would need to set exclude_frequent = by to make it exclude frequent values in c from triggering anomalies?
Am i understanding this correctly?