Github user cestella commented on the issue: https://github.com/apache/incubator-metron/pull/449 @nickwallen Hmm, how about the following, with `profile` and `triage` here being entirely user specifiable to break up the various ways you write: ``` { "profiles": [ { "profile": "test", "foreach": "'global'", "onlyif": "source.type == 'squid'", "update": { "stats": "STATS_ADD(stats, LENGTH(url))" }, "result": { "profile" : { "output" : "stats", "if" : "STATS_COUNT(stats) > 0)", "writer" : "hbase" }, "triage" : { "output" : "{ 'mean' : STATS_MEAN(stats), 'stddev' : STATS_SD(stats) }", "if" : "STATS_COUNT(stats) > 0 && STATS_SD(stats) > 10", "writer" : "kafka" } } } ] } ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---