You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by ce...@apache.org on 2016/03/21 18:05:47 UTC

[05/43] incubator-metron git commit: METRON-52: Bro Plugin Header has comma instead of colon (dlyle65535 via cestella) closes apache/incubator-metron#31

METRON-52: Bro Plugin Header has comma instead of colon (dlyle65535 via cestella) closes apache/incubator-metron#31


Project: http://git-wip-us.apache.org/repos/asf/incubator-metron/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-metron/commit/a712fe69
Tree: http://git-wip-us.apache.org/repos/asf/incubator-metron/tree/a712fe69
Diff: http://git-wip-us.apache.org/repos/asf/incubator-metron/diff/a712fe69

Branch: refs/heads/Metron_0.1BETA
Commit: a712fe69dc54bac9ac8205c14d8d37fc29f7e6a1
Parents: a1464cc
Author: dlyle65535 <dl...@gmail.com>
Authored: Thu Feb 25 09:38:39 2016 -0500
Committer: cstella <ce...@gmail.com>
Committed: Thu Feb 25 09:38:39 2016 -0500

----------------------------------------------------------------------
 bro-plugin-kafka/src/MetronJSON.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-metron/blob/a712fe69/bro-plugin-kafka/src/MetronJSON.cc
----------------------------------------------------------------------
diff --git a/bro-plugin-kafka/src/MetronJSON.cc b/bro-plugin-kafka/src/MetronJSON.cc
index 0597eff..ec84bec 100644
--- a/bro-plugin-kafka/src/MetronJSON.cc
+++ b/bro-plugin-kafka/src/MetronJSON.cc
@@ -40,7 +40,7 @@ bool MetronJSON::Describe(ODesc* desc, int num_fields,
     // prepend the stream name
     desc->AddRaw("\"");
     desc->AddRaw(stream_name);
-    desc->AddRaw("\", ");
+    desc->AddRaw("\": ");
 
     // append the JSON formatted log record itself
     JSON::Describe(desc, num_fields, fields, vals);