File tree 3 files changed +28
-5
lines changed
3 files changed +28
-5
lines changed Original file line number Diff line number Diff line change
1
+ caracat :
2
+ # src_ipv6_addr: "2001:19f0:6801:7bf:5400:5ff:fe3b:306b"
3
+ integrity_check : false
4
+
5
+ kafka :
6
+ brokers : " redpanda.nxthdr.dev:9092"
7
+
8
+ auth_protocol : SASL_PLAINTEXT
9
+ auth_sasl_username : " saimiris"
10
+ auth_sasl_password : " DT9hMjMU8fvsj7Kj"
11
+ auth_sasl_mechanism : SCRAM-SHA-512
12
+
13
+ in_topics : saimiris-targets
14
+ in_group_id : saimiris-prober-36ygtdqgzb
15
+
16
+ out_topic : saimiris-results
17
+
18
+
19
+ prober :
20
+ id : " 36ygtdqgzb"
Original file line number Diff line number Diff line change @@ -135,7 +135,9 @@ impl ReceiveLoop {
135
135
// e.g. ReceiverError::CaptureError(...)
136
136
match error. downcast_ref :: < pcap:: Error > ( ) {
137
137
Some ( error) => match error {
138
- pcap:: Error :: TimeoutExpired => { }
138
+ pcap:: Error :: TimeoutExpired => {
139
+ trace ! ( "pcap timeout_expired" ) ;
140
+ }
139
141
_ => error ! ( "{:?}" , error) ,
140
142
} ,
141
143
None => {
@@ -147,6 +149,7 @@ impl ReceiveLoop {
147
149
}
148
150
149
151
if * stopped_thr. lock ( ) . unwrap ( ) {
152
+ trace ! ( "Stopping receive loop" ) ;
150
153
break ;
151
154
}
152
155
}
Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ services:
2
2
redpanda :
3
3
image : redpandadata/redpanda:latest
4
4
volumes :
5
- - ./config/redpanda/entrypoint.sh:/entrypoint.sh:ro
6
- - ./config/redpanda/redpanda.yml:/etc/redpanda/redpanda.yaml:ro
5
+ - ./config/redpanda/entrypoint.sh:/entrypoint.sh:ro
6
+ - ./config/redpanda/redpanda.yml:/etc/redpanda/redpanda.yaml:ro
7
7
ports :
8
- - " 9092:9092"
8
+ - " 9092:9092"
9
9
networks :
10
10
testbed :
11
11
ipv4_address : 10.0.0.100
12
12
13
13
clickhouse :
14
14
image : clickhouse/clickhouse-server:latest
15
15
volumes :
16
- - ./config/clickhouse/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
16
+ - ./config/clickhouse/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
17
17
networks :
18
18
testbed :
19
19
ipv4_address : 10.0.0.200
You can’t perform that action at this time.
0 commit comments