I am trying to use QuestDB as a replacement for InfluxDB but looks like it is not working.
MicrometerMetricsOptions options = new MicrometerMetricsOptions()
.setInfluxDbOptions(new VertxInfluxDbOptions().setUri("http://localhost:9009").setDb("qdb").setEnabled(true))
.setEnabled(true);
Vertx vertx = Vertx.vertx(new VertxOptions().setMetricsOptions(options));
I took the DB name as qdb from quest postgres example given. Removing it doesn't make any change.
Can someone assist in what should be the settings to use with vert.x / Quarkus / Micrometer.