Skip to content

Commit

Permalink
Add back the default constructor of QuarkusCxfMetricsFeature
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Sep 19, 2024
1 parent 5b33279 commit 7f4a1e8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ public class QuarkusCxfMetricsFeature extends MetricsFeature {
new StandardTags());
private static final MicrometerMetricsProperties micrometerMetricsProperties = new MicrometerMetricsProperties();

public QuarkusCxfMetricsFeature() {
this(Optional.empty());
}

public QuarkusCxfMetricsFeature(Optional<List<String>> tagsCustomizersRefs) {
super(new MicrometerMetricsProvider(meterRegistry, tagsProvider,
joinTagsCustomizers(tagsCustomizersRefs, operationsCustomizer, faultsCustomizer), timedAnnotationProvider,
Expand Down

0 comments on commit 7f4a1e8

Please sign in to comment.