Github user justinleet commented on a diff in the pull request:
https://github.com/apache/metron/pull/803#discussion_r147152861
--- 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 --
@james-sirota You'd know a bit more about the practical usage pattern than
I would. Do you have any input on this limit? I'm guessing we could/should
probably drop it a bit to give ourselves a bit more safety factor (e.g. 200?),
assuming that fits a practical pattern.
---