Skip to content

Commit 2fa37fd

Browse files
committed
Merge remote-tracking branch 'origin/bugfix/v10.5.15/False-positive-alerts-displayed-in-dashboard-overview' into bugfix/v10.5.15/False-positive-alerts-displayed-in-dashboard-overview
2 parents 97c581d + a875ca0 commit 2fa37fd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backend/src/main/java/com/park/utmstack/util/AlertUtil.java

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public Long countAlertsByStatus(int status) {
3333

3434
List<FilterType> filters = new ArrayList<>();
3535
filters.add(new FilterType(Constants.alertStatus, OperatorType.IS, status));
36+
filters.add(new FilterType(Constants.alertTags, OperatorType.DOES_NOT_CONTAIN, Constants.FALSE_POSITIVE_TAG));
3637

3738
SearchRequest.Builder srb = new SearchRequest.Builder();
3839
srb.query(SearchUtil.toQuery(filters))

0 commit comments

Comments
 (0)