Schema Registry JMX metrics and DataDog integration

I have a AWS EC2 instance running schema-registry. I want to send all JMX metrics to DataDog.
I have integrated with DataDog, but metrics that I configure in metrics.yaml are only being sent to DataDog.
How can we send all metrics without explicitly mentioning them?

Metric.yaml -

- include:
      domain: kafka.schema.registry
      bean:
        - kafka.rest:type=jersey-metrics
        - kafka.schema.registry:type=jersey-metrics
      attribute:

        subjects.versions.get-schema.request-error-count:
          alias: confluent.$domain.jersey.$attribute
          metric_type: gauge

Link I am following:
https://docs.confluent.io/4.1.1/schema-registry/docs/monitoring.html

In my experience, you’d need to explicitly map Mbeans to Datadog metric names (list them all).

You may get a better answer from Datadog support since this question doesn’t seem to be unique to the Schema Registry.