Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
Fix Issue #224
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhemmarchand committed Jan 28, 2021
1 parent 01ec412 commit 88ab54b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ https://trackme.readthedocs.io/en/latest/configuration.html
- Fix - Issue #219 - Outliers detection - dropdown for alert on upper is not pref-filled with the actual setting of the entity
- Fix - Issue #220 - Audit scheduling - in some environments, status=success is replaced it search time by completed (internal scheduler) which is not expected by the searches
- Fix - Issue #221 - Data sources - Tags are not preserved following actions in the UI
- Fix - Issue #224 - Outliers - Switching an entity between different periods may lead the outliers generation to be failing
- Change: Icons change

Version 1.2.30
Expand Down
4 changes: 3 additions & 1 deletion trackme/default/macros.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,9 @@ definition = mstats stdev(trackme.eventcount_4h) as stdev, avg(trackme.eventcoun
| eval object=case(isnull(object) AND object_category="data_source", data_name, isnull(object) AND object_category="data_host", data_host, isnotnull(object), object)\
\
| stats first(stdev) as stdev, first(avg) as avg, first(OutlierTimePeriod) as OutlierTimePeriod, first(OutlierMinEventCount) as OutlierMinEventCount,\
first(OutlierLowerThresholdMultiplier) as OutlierLowerThresholdMultiplier, first(OutlierUpperThresholdMultiplier) as OutlierUpperThresholdMultiplier by object_category, object
first(OutlierLowerThresholdMultiplier) as OutlierLowerThresholdMultiplier, first(OutlierUpperThresholdMultiplier) as OutlierUpperThresholdMultiplier by object_category, object\
\
| where isnotnull(OutlierTimePeriod)
args = period
iseval = 0

Expand Down

0 comments on commit 88ab54b

Please sign in to comment.