-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change default channel size to 4096
- Loading branch information
Showing
9 changed files
with
166 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
# DNS-collector with Kafka | ||
|
||
- Copy folder [./docs/_integration/kafka] and start the docker stack: | ||
|
||
```bash | ||
sudo docker compose up -d | ||
``` | ||
|
||
- Go to Apache Kafka interface through `http://127.0.0.1:8080` | ||
|
||
- The `dnscollector` topics should be available. | ||
|
||
- Finally, run DNScollector from source: | ||
|
||
```bash | ||
go run . -config docs/_integration/kafka/config.yml | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
global: | ||
trace: | ||
verbose: true | ||
|
||
multiplexer: | ||
collectors: | ||
- name: tap | ||
dnstap: | ||
listen-ip: 0.0.0.0 | ||
listen-port: 6000 | ||
chan-buffer-size: 4096 | ||
loggers: | ||
- name: kafka | ||
kafkaproducer: | ||
remote-address: 127.0.0.1 | ||
remote-port: 9092 | ||
connect-timeout: 5 | ||
retry-interval: 10 | ||
flush-interval: 30 | ||
tls-support: false | ||
tls-insecure: false | ||
sasl-support: false | ||
sasl-mechanism: PLAIN | ||
sasl-username: false | ||
sasl-password: false | ||
mode: flat-json | ||
buffer-size: 100 | ||
topic: "dnscollector" | ||
partition: 0 | ||
chan-buffer-size: 4096 | ||
compression: none | ||
|
||
routes: | ||
- from: [ tap ] | ||
to: [ kafka ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
version: '3.8' | ||
services: | ||
kafka-ui: | ||
image: provectuslabs/kafka-ui:v0.7.1 | ||
container_name: kafka-ui | ||
environment: | ||
DYNAMIC_CONFIG_ENABLED: true | ||
KAFKA_CLUSTERS_0_NAME: local | ||
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:29092 | ||
KAFKA_CLUSTERS_0_METRICS_PORT: 9997 | ||
ports: | ||
- 8080:8080 | ||
depends_on: | ||
- kafka | ||
|
||
zookeeper: | ||
image: confluentinc/cp-zookeeper:7.6.0 | ||
hostname: zookeeper | ||
container_name: zookeeper | ||
ports: | ||
- "2181:2181" | ||
environment: | ||
ZOOKEEPER_CLIENT_PORT: 2181 | ||
ZOOKEEPER_TICK_TIME: 2000 | ||
|
||
kafka: | ||
image: confluentinc/cp-kafka:7.6.0 | ||
container_name: kafka | ||
depends_on: | ||
- zookeeper | ||
ports: | ||
- "9092:9092" | ||
- "9997:9997" | ||
environment: | ||
KAFKA_BROKER_ID: 1 | ||
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181' | ||
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT | ||
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092 | ||
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | ||
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0 | ||
KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1 | ||
KAFKA_CONFLUENT_BALANCER_TOPIC_REPLICATION_FACTOR: 1 | ||
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1 | ||
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1 | ||
KAFKA_JMX_PORT: 9997 | ||
KAFKA_JMX_HOSTNAME: kafka | ||
volumes: | ||
- "./data:/var/lib/kafka/data" | ||
|
||
|
||
kafka-init-topics: | ||
image: confluentinc/cp-kafka:7.6.0 | ||
container_name: kafka-init-topic | ||
volumes: | ||
- ./message.json:/data/message.json | ||
depends_on: | ||
- kafka | ||
command: "bash -c 'echo Waiting for Kafka to be ready... && \ | ||
cub kafka-ready -b kafka:29092 1 30 && \ | ||
kafka-topics --create --topic dnscollector --partitions 2 --replication-factor 1 --if-not-exists --bootstrap-server kafka:29092 < /data/message.json'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters