Repository: metron Updated Branches: refs/heads/master 64490b60f -> 4a074becc
METRON-1198 Pycapa - No such configuration property 'sasl.kerberos.principal' (nickwallen) closes apache/metron#769 Project: http://git-wip-us.apache.org/repos/asf/metron/repo Commit: http://git-wip-us.apache.org/repos/asf/metron/commit/4a074bec Tree: http://git-wip-us.apache.org/repos/asf/metron/tree/4a074bec Diff: http://git-wip-us.apache.org/repos/asf/metron/diff/4a074bec Branch: refs/heads/master Commit: 4a074beccb17eadd6c1ef0c3101f040442358643 Parents: 64490b6 Author: nickwallen <[email protected]> Authored: Mon Sep 25 16:13:43 2017 -0400 Committer: nickallen <[email protected]> Committed: Mon Sep 25 16:13:43 2017 -0400 ---------------------------------------------------------------------- metron-sensors/pycapa/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/metron/blob/4a074bec/metron-sensors/pycapa/README.md ---------------------------------------------------------------------- diff --git a/metron-sensors/pycapa/README.md b/metron-sensors/pycapa/README.md index 7b58ca1..ed929f9 100644 --- a/metron-sensors/pycapa/README.md +++ b/metron-sensors/pycapa/README.md @@ -280,10 +280,20 @@ The probe can be used in a Kerberized environment. Follow these additional step FAQs ==== -**Question**: How do I get more logs? +### How do I get more logs? Use the following two command-line arguments to get detailed logging. ``` -X debug=all --log-level DEBUG ``` + +### When I run Pycapa against a Kafka broker with Kerberos enabled, why do I get an error like "No such configuration property: 'sasl.kerberos.principal'"? + +This can be a confusing error message because `sasl.kerberos.principal` is indeed a valid property for librdkafka as defined [here](https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md). This is most likely because Pycapa is running against a version of Librdkafka without SASL support enabled. This might happen if you have accidentally installed multiple versions of Librdkafka and Pycapa is unexpectedly using the version without SASL support enabled. + +Bottom Line: Make sure that Pycapa is running against a version of Librdkafka with SASL support enabled. + + + +
