io.micrometer.prometheusmetrics.MicrometerCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micrometer-registry-prometheus Show documentation
Show all versions of micrometer-registry-prometheus Show documentation
Application monitoring instrumentation facade
/*
* Copyright 2017 VMware, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micrometer.prometheusmetrics;
import io.micrometer.core.instrument.Meter;
import io.micrometer.core.instrument.Tag;
import io.micrometer.core.instrument.config.NamingConvention;
import io.prometheus.metrics.model.registry.MultiCollector;
import io.prometheus.metrics.model.snapshots.DataPointSnapshot;
import io.prometheus.metrics.model.snapshots.MetricMetadata;
import io.prometheus.metrics.model.snapshots.MetricSnapshot;
import io.prometheus.metrics.model.snapshots.MetricSnapshots;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Function;
import java.util.stream.Stream;
import static java.util.stream.Collectors.toList;
/**
* {@link MultiCollector} for Micrometer.
*
* @author Jon Schneider
* @author Johnny Lim
* @author Jonatan Ivanov
*/
class MicrometerCollector implements MultiCollector {
private final Map, Child> children = new ConcurrentHashMap<>();
private final String conventionName;
private final List tagKeys;
// take name to avoid calling NamingConvention#name after the call-site has already
// done it
MicrometerCollector(String name, Meter.Id id, NamingConvention convention) {
this.conventionName = name;
this.tagKeys = id.getConventionTags(convention).stream().map(Tag::getKey).collect(toList());
}
public void add(List tagValues, Child child) {
children.put(tagValues, child);
}
public void remove(List tagValues) {
children.remove(tagValues);
}
public boolean isEmpty() {
return children.isEmpty();
}
public List getTagKeys() {
return tagKeys;
}
@Override
public MetricSnapshots collect() {
Map families = new HashMap<>();
for (Child child : children.values()) {
child.samples(conventionName, tagKeys)
.forEach(family -> families.compute(family.getConventionName(),
(name, matchingFamily) -> matchingFamily != null
? matchingFamily.addSamples(family.dataPointSnapshots) : family));
}
Collection metricSnapshots = families.values()
.stream()
.map(Family::toMetricSnapshot)
.collect(toList());
return new MetricSnapshots(metricSnapshots);
}
interface Child {
Stream> samples(String conventionName, List tagKeys);
}
static class Family {
final String conventionName;
final MetricMetadata metadata;
final List dataPointSnapshots = new ArrayList<>();
final Function, MetricSnapshot> metricSnapshotFactory;
Family(String conventionName, Function, MetricSnapshot> metricSnapshotFactory,
MetricMetadata metadata, T... dataPointSnapshots) {
this.conventionName = conventionName;
this.metricSnapshotFactory = metricSnapshotFactory;
this.metadata = metadata;
Collections.addAll(this.dataPointSnapshots, dataPointSnapshots);
}
String getConventionName() {
return conventionName;
}
Family addSamples(Collection dataPointSnapshots) {
this.dataPointSnapshots.addAll(dataPointSnapshots);
return this;
}
MetricSnapshot toMetricSnapshot() {
return metricSnapshotFactory.apply(this);
}
}
}