Closed DivaCtyWest closed 1 month ago
The split divisor was not "," but yu are right that makes more sense to use comma.
Fix done, new packages will be available in about 1h from now.
Thanks @lucaderi . Do you know if this will be applied to other ntop utilities (especially Cento)?
Environment:
What happened: Attempted to pass multiple librdkafka parameters to the Kafka exporter but only the first one is observed.
How did you reproduce it?
ntopng -i wlan0 -F kafka;broker;topic;security.protocol=SASL_SSL,debug=all
I would expect librdkafka to generate increased logging but there isn't any. However, if the options are switched so thatdebug=all
comes first, then the extra logging appears.ntopng -i wlan0 -F kafka;broker;topic;debug=all,security.protocol=SASL_SSL
This makes me think that the extra Kafka options aren't being passed correctly. The documentation suggests that multiple parameters are supported and are to be separated with commas.Debug Information: When
debug=all
is appliedlibrdkafka
will display the parameters it has been initialised with:Note that the
security.protocol
parameter doesn't appear. This seems to confirm that not all extra parameters are passed tolibrdkafka
.