public GaugeManager()

in src/main/java/org/apache/sling/commons/metrics/internal/GaugeManager.java [41:47]


    public GaugeManager(BundleContext context, MetricRegistry registry, BundleMetricsMapper mapper) {
        this.registry = registry;
        this.mapper = mapper;
        this.bundleContext = context;
        this.tracker = new ServiceTracker<>(context, Gauge.class, this);
        tracker.open();
    }