Send summary export to kafka

Is there a way I can send Summary export to kafka?

I tried this but dint help.
k6 run --summary-export kafka=brokers=kafka:9092,topic=k6-summary,format=json /scripts/script.js

You currently can’t send the end-of-test summary to kafka, sorry. You can only send the raw HTTP metric measurements k6 makes to a kafka queue: Apache Kafka

For now, you can use --summary-export to save the summary as a JSON file and after k6 exits, use some other tool to ship the .json file to kafka.

Eventually, we’ll likely support what you want, but we have to implement a few prerequisites first. Follow How to access built-in metrics after the test completion · Issue #351 · grafana/k6 · GitHub, Test summary accessible inside the teardown function · Issue #647 · grafana/k6 · GitHub and Stress test kafka stream application · Issue #999 · grafana/k6 · GitHub for updates. We plan to work on the first 2 very soon, and a plugin for basic synchonous kafka support is also probably likely to happen soon after we have plugins (currently WIP).

Thanks @ned for your response