Hi,
I am able to enable default metrics using vertx.metrics.options.enabled System property. As quarkus VertxOptions doesn't expose metricsOptions, I was looking for some system property to tell that I need micrometer option to be enabled.
I looked at VertxOptions file and I can see
this.metricsOptions = other.getMetricsOptions() != null ? new MetricsOptions(other.getMetricsOptions()) : null;
So Is there any way that I can enable micrometer using System property ?
Thanks,
Himanshu