micronaut-micrometer icon indicating copy to clipboard operation
micronaut-micrometer copied to clipboard

Integration between Micronaut and Micrometer

Results 61 micronaut-micrometer issues
Sort by recently updated
recently updated
newest added

### Expected Behavior Counter is published when annotation `@Counted` is used and method is hit, similar to behavour seen when using `@Timed` ### Actual Behaviour Counter is not being intercepted...

### Issue description Create a [`test-suite-graal`](https://github.com/micronaut-projects/micronaut-security/tree/master/test-suite-graal) module which verifies GraalVM integration. https://github.com/micronaut-graal-tests/micronaut-prometheus-graal

relates-to: graal

### Feature description It would be nice if `stackdriver.projectId` was not required similar to how it is not required for the `micrometer-gcp` libraries. This is especially helpful for local development...

type: enhancement
info: good first issue

### Expected Behavior In the case I configure `micronaut.metrics.tags.*` I expect those tags being added to every Micrometer meter being created. ### Actual Behaviour In some cases the meters created...

### Expected Behavior **Get request to /prometheus endpoint:** > ##HELP http_server_requests_seconds ##TYPE http_server_requests_seconds summary http_server_requests_seconds_count{exception="ConversionErrorException",method="POST",status="400",uri="root",} 2.0 http_server_requests_seconds_sum{exception="ConversionErrorException",method="POST",status="400",uri="root",} 0.055199125 http_server_requests_seconds_count{exception="ClassCastException",method="POST",status="500",uri="root",} 1.0 http_server_requests_seconds_sum{exception="ClassCastException",method="POST",status="500",uri="root",} 0.266171375 http_server_requests_seconds_count{exception="none",method="GET",status="200",uri="/prometheus",} 6.0 http_server_requests_seconds_sum{exception="none",method="GET",status="200",uri="/prometheus",} 0.15734971 HELP http_server_requests_seconds_max TYPE http_server_requests_seconds_max...

### Issue description Not sure if it's intended, but the composite registry is repeatedly reconfigured. In the MeterRegistryFactory: ``` for (MeterRegistry registry : registries) { compositeMeterRegistry.add(registry); for (MeterRegistryConfigurer configurer :...

### Expected Behavior _No response_ ### Actual Behaviour Getting the OutOfMemoryError in event loop thread as below, while creating allocating the memory to byte buffer array. Error Logs : ```...

### Feature description We configure separate event loops for clients. Any suggestion on how we can get metrics on number of pending tasks /in use threads for client loop. Something...

type: enhancement

Hi! `OPTIONS`-requests do not get `URI_TEMPLATE` set which results in an ever growing list of `uri` tags for `http.server.request` metrics and may cause OOM in the end for routes with...

type: improvement
info: good first issue

### Expected Behavior Not failing ### Actual Behaviour Is failing ### Steps To Reproduce Add Micronaut Micrometer with R2DBC without r2dbc pool ### Environment Information _No response_ ### Example Application...

type: bug