Github user JonZeolla commented on a diff in the pull request:
https://github.com/apache/metron-bro-plugin-kafka/pull/2#discussion_r151825744
--- Diff: scripts/init.bro ---
@@ -18,11 +18,20 @@
module Kafka;
export {
- const topic_name: string = "bro" &redef;
- const max_wait_on_shutdown: count = 3000 &redef;
- const tag_json: bool = F &redef;
- const kafka_conf: table[string] of string = table(
- ["metadata.broker.list"] = "localhost:9092"
- ) &redef;
- const debug: string = "" &redef;
+ ## Destination kafka topic name
+ const topic_name: string = "bro" &redef;
+
+ ## Maximum wait on shutdown in milliseconds
+ const max_wait_on_shutdown: count = 3000 &redef;
+
+ ## Boolean to JSON with a log stream identifier
--- End diff --
Lol. I will update, thanks
---