mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 09:20:10 +00:00
24 lines
528 B
Bash
Executable file
24 lines
528 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#
|
|
# Use this tool to create kafka topics wot be used with ntopng/nProbe
|
|
#
|
|
|
|
#
|
|
# See https://www.conduktor.io/kafka/kafka-topics-cli-tutorial/
|
|
#
|
|
|
|
ntop_topics=(flow event counter template snmp-ifaces option hello listening-ports)
|
|
|
|
|
|
# Set your PATH here
|
|
KAFKA_TOPICS=/home/kafka/kafka/bin/kafka-topics.sh
|
|
|
|
|
|
for topic in "${ntop_topics[@]}"
|
|
do
|
|
$KAFKA_TOPICS --bootstrap-server localhost:9092 --topic $topic --create --partitions 3 --replication-factor 1
|
|
done
|
|
|
|
|
|
$KAFKA_TOPICS --bootstrap-server localhost:9092 --list
|