From 5379d8c4f44f0bb10760a13cdef4618bd83803b7 Mon Sep 17 00:00:00 2001 From: Jon Zeolla Date: Tue, 4 Apr 2017 21:10:45 -0400 Subject: [PATCH] Use backticks instead of indentation for codeblocks --- metron-sensors/bro-plugin-kafka/README.md | 26 ++++++++++++++--------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/metron-sensors/bro-plugin-kafka/README.md b/metron-sensors/bro-plugin-kafka/README.md index e9646e95e8..8c8787573f 100644 --- a/metron-sensors/bro-plugin-kafka/README.md +++ b/metron-sensors/bro-plugin-kafka/README.md @@ -13,22 +13,28 @@ library for Kafka. This plugin has been tested against the latest release of librdkafka, which at the time of this writing is v0.9.4. In order to support interacting with a kerberized kafka, you will need libsasl2 installed - # curl -L https://github.com/edenhill/librdkafka/archive/v0.9.4.tar.gz | tar xvz - # cd librdkafka-0.9.4/ - # ./configure --enable-sasl - # make - # sudo make install +``` +# curl -L https://github.com/edenhill/librdkafka/archive/v0.9.4.tar.gz | tar xvz +# cd librdkafka-0.9.4/ +# ./configure --enable-sasl +# make +# sudo make install +``` Then compile this Bro plugin using the following commands. - # ./configure --bro-dist=$BRO_SRC - # make - # sudo make install +``` +# ./configure --bro-dist=$BRO_SRC +# make +# sudo make install +``` Run the following command to ensure that the plugin was installed successfully. - # bro -N Bro::Kafka - Bro::Kafka - Writes logs to Kafka (dynamic, version 0.1) +``` +# bro -N Bro::Kafka +Bro::Kafka - Writes logs to Kafka (dynamic, version 0.1) +``` Activation ----------