Is MongoDB sink connector compatible with Kafka Connect Reporter?

I need to get all records correctly handled by the sink task written in an output topic.
Like it’s described in the “Kafka Connect Reporter” documentation: Kafka Connect Security Basics | Confluent Documentation

“After successfully sinking a record or following an error condition, the Connect Reporter is called to submit the result report”

I tried to add those parameters to my connector configuration without any result:

reporter.bootstrap.servers=localhost:9092
reporter.result.topic.name=success-responses
reporter.result.topic.replication.factor=1

Does anybody already manage to do this ?