Github user cestella commented on a diff in the pull request:
https://github.com/apache/incubator-metron/pull/66#discussion_r58729524
--- Diff:
metron-streaming/Metron-Common/src/main/java/org/apache/metron/bolt/BulkMessageWriterBolt.java
---
@@ -81,8 +81,7 @@ public void execute(Tuple tuple) {
sensorMessageMap.put(sensorType, messageList);
} else {
try {
- String esType = sensorType + "_doc";
- bulkMessageWriter.write(esType, configurations, tupleList,
messageList);
+ bulkMessageWriter.write(sensorType, configurations, tupleList,
messageList);
--- End diff --
Yeah, I moved the _doc modification down into the ES writer rather than
having it at the bolt level. Should still work with the UI.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---