-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hi team,
have tried to connect to SASL cluster getting error.
my kafka cluster has SASL-SCRAM-sha512 with truststore file
npx superstream-kafka-analyzer --config config.json
Debug: Loading config from: config.json
✅ Configuration loaded from: /root/config/config.json
Debug: Config loaded successfully, skipping prompts
📊 Executing Kafka Analysis
⠋ Connecting to Kafka cluster...🔐 Setting up apache authentication with SCRAM-SHA-512...
❌ Failed to connect to Kafka cluster: Failed to connect: brokers should not be null
❌ Analysis failed: Failed to connect: brokers should not be null
Disconnected from Kafka cluster
❌ Application Error: Failed to connect: brokers should not be null
Following is my config file
{
"kafka": {
"bootstrap_servers": ["hostaname1:6667", "hostaname2:6667", "hostanem3:6667"],
"clientId": "superstream-analyzer",
"vendor": "apache",
"useSasl": true,
"sasl": {
"mechanism": "SCRAM-SHA-512",
"username": "admin",
"password": "n1e6mkym1z"
}
},
"file": {
"outputDir": "./kafka-analysis",
"formats": ["html"],
"includeMetadata": true,
"includeTimestamp": true
},
"email": "[email protected]"
}