We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97c581d + a875ca0 commit 2fa37fdCopy full SHA for 2fa37fd
backend/src/main/java/com/park/utmstack/util/AlertUtil.java
@@ -33,6 +33,7 @@ public Long countAlertsByStatus(int status) {
33
34
List<FilterType> filters = new ArrayList<>();
35
filters.add(new FilterType(Constants.alertStatus, OperatorType.IS, status));
36
+ filters.add(new FilterType(Constants.alertTags, OperatorType.DOES_NOT_CONTAIN, Constants.FALSE_POSITIVE_TAG));
37
38
SearchRequest.Builder srb = new SearchRequest.Builder();
39
srb.query(SearchUtil.toQuery(filters))
0 commit comments