Github user iraghumitra commented on a diff in the pull request: https://github.com/apache/metron/pull/803#discussion_r146991821 --- 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 -- Ah ok, I was able to add 999 from my full-dev. What is your suggestion on the number of meta alerts 350 or 500?. We are not validating the size when users try's to add few more alerts to meta alerts. If you confirm the possible number I will add it too. Can I limit it to 350 for now?
---