I hope you're doing well.
I've been trying to create a Kafka Connect configuration in JSON to connect to an OPC UA server. However, I'm not seeing the expected topic appear in Conduktor. Could you help me troubleshoot this issue or suggest some ways to investigate what's going wrong?
"connector.class": "org.apache.plc4x.kafka.Plc4xSourceConnector",
"default.topic": "opc39",
"jobs": "job",
"jobs.job.interval": "1000",
"jobs.job.tags": "alarm",
"jobs.job.tags.alarm": "ns=2;s=Studio.Tags.Application",
"key.converter": "org.apache.kafka.connect.storage.StringConverter",
"key.converter.schemas.enable": "false",
"sources": "opcserver",
"sources.opcserver.bufferSize": "1000",
"sources.opcserver.connectionString": "opcua:tcp://IP_Adresse_Server:Port?discovery=true",
"sources.opcserver.jobReferences": "job",
"sources.opcserver.pollReturnInterval": "5000",
"tasks.max": "1",
"value.converter": "org.apache.kafka.connect.storage.StringConverter",
"value.converter.schemas.enable": "false"
Hey!
I hope you're doing well.
I've been trying to create a Kafka Connect configuration in JSON to connect to an OPC UA server. However, I'm not seeing the expected topic appear in Conduktor. Could you help me troubleshoot this issue or suggest some ways to investigate what's going wrong?
Thanks !
This is my code JSON :
}