Haiden
Haiden
When you specify the replacement bean using `@Singleton` I would assume it would then remove all non-singletons of said type and thus replace your qualified bean. Also in this example,...
not sure if what I described above is your use case, but if so this along the lines of what I was describing ```java import io.micronaut.context.annotation.*; import jakarta.inject.Inject; import jakarta.inject.Named;...
@graemerocher with the intent being to have one annotated method in an abstract class and all classes possibly having a different cron schedule in the annotation, so I'm not sure...
@bjor-joh I am definitely late to the party here but just came across this issue now. You should be able to get things working using Micronaut's `@Import` (which they say...
I'm a little late here but I have started something similar that would likely also accomplish this but also not change the underlying tags for everyone who uses this library:...
Just now realizing this is probably also helpful / can support `@Counted` annotations as well, so will move a few more things around to support that
bringing attention to @graemerocher 's comment [here](https://github.com/micronaut-projects/micronaut-micrometer/pull/749#issuecomment-2086362889), this seems like something that could be done here as well? Perhaps not all `@Timed` or `@Counted` annotations really need/want all tags provided...
> you can inject it into the constructor of the tagger, for example if you need the `MeterRegistry` you just add a constructor argument for it Even if doing something...
> would be a matter of adding a filter to the stream based on the types that are resolved from the annotation that makes sense, would that then mean we...
> yeah I guess we would have our own version kind of like how we have both Jakarta `@Transactional` and our own one another thought that came to mind: could...