Github user justinleet commented on a diff in the pull request:
https://github.com/apache/metron/pull/803#discussion_r146964503
--- Diff:
metron-interface/metron-alerts/src/app/alerts/alerts-list/tree-view/tree-view.component.ts
---
@@ -337,12 +343,67 @@ export class TreeViewComponent extends
TableViewComponent implements OnChanges {
});
}
+ canCreateMetaAlert(count: number) {
+ if (count > 999) {
--- End diff --
Given the practical restriction detailed at
https://issues.apache.org/jira/browse/METRON-1279, does this limit need to be
lowered? I've seen ~350 work without issues, personally. Obviously, given the
way the update works, I'm not sure we can ever guarantee a fixed limit, but
even 500 seems really likely to blow up.
---