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

Aiming to solve #752 and potentially also make #612 possible Any beans implementing `TagsBasedOnMethodInvocationContext` are injected and additional tags are computed using `buildTags(MethodInvocationContext context)`

type: enhancement

### Expected Behavior The application should have started without logging a warning ### Actual Behaviour After application was configured to use java 21 - at startup, the application logs this...

Hello. I use following modules: ``` micronautVersion = "2.0.0" implementation "io.micronaut:micronaut-management" implementation "io.micronaut.micrometer:micronaut-micrometer-registry-prometheus:2.0.1" ``` According to [this](https://micronaut-projects.github.io/micronaut-micrometer/latest/guide/) documentation I created MeterRegistryConfigurer to add common tag: ``` @Singleton public static class...

type: bug

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.micronaut.validation:micronaut-validation-bom](https://micronaut.io) ([source](https://togithub.com/micronaut-projects/micronaut-validation)) | `4.4.4` -> `4.5.0` |...

type: dependency-upgrade

Hi! I'm using a micrometer heavily, and currently, whenever I need to measure some method usage (timer/counter) I always need to do something like this: ```java public class UserRepository {...

type: enhancement

### Feature description Micrometers annotation [Metertag](https://github.com/micrometer-metrics/micrometer/blob/main/micrometer-core/src/main/java/io/micrometer/core/aop/MeterTag.java) is intended to add tags to metrics based on a methods parameter. It would be nice to have this feature supported.

type: enhancement

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.micronaut.sql:micronaut-sql-bom](https://micronaut.io) ([source](https://togithub.com/micronaut-projects/micronaut-sql)) | `5.5.2` -> `5.6.0` |...

type: dependency-upgrade

### Feature description micrometers `TimedAspect` has the ability to pass in additional tags built using the `ProceedingJoinPoint`, something similar would be nice I have a fork that is working on...