Jonatan Ivanov
Jonatan Ivanov
If I understand your request correctly, I think you should be able to do this by setting the `dateFormat` and the `indexDateSeparator` to empty string. Micrometer does something like this...
I don't think this was an intended use-case; it's more like a side-effect due to how `DateTimeFormatter` works. I think we can add tests and document this behavior to ensure...
If I do this: ```java PrometheusMeterRegistry registry = new PrometheusMeterRegistry(PrometheusConfig.DEFAULT); Counter.builder("test.counter") .tag("test.tag", "0") .register(registry) .increment(); System.out.println(registry.scrape()); ``` I get this: ``` # HELP test_counter_total # TYPE test_counter_total counter test_counter_total{test_tag="0",} 1.0...
I'm not sure I understand what you are trying to say.
Hi, This is great to hear and it's an interesting addition to Micrometer. My only concern is testing and troubleshooting this. Do you happen to know if we can get...
Ok, please let us know if you have questions/need help.
@lucdc I don't think so but we de-prioritized it. Please upvote the issue (👍🏼) to help us in prioritizing it.
`KafkaMetrics` creates one thread per client (consumer/producer), how many clients do you create/bind `KafkaMetrics` to? Could you please provide us a minimal sample project to reproduce this issue so we...
@lmcdasi Your example does not show your Micrometer usage which would be great to see in this case. My guess is that you create a lot of KafkaMetrics instances but...
I needed to revert this change because I think it broke the build: - 1.6 and 1.7 were ok - 1.8 was failing (it seems some timing issue) - main...