forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add OpenTelemetry Metrics and refactor quarkus-opentelemetry and rela…
…ted tests to work with it. OTel Metrics off by default
- Loading branch information
Showing
94 changed files
with
2,704 additions
and
726 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
.../deployment/src/main/java/io/quarkus/opentelemetry/deployment/metric/MetricProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
package io.quarkus.opentelemetry.deployment.metric; | ||
|
||
import java.util.Collection; | ||
import java.util.HashSet; | ||
import java.util.Set; | ||
import java.util.function.BooleanSupplier; | ||
import java.util.function.Function; | ||
|
||
import org.jboss.jandex.AnnotationInstance; | ||
import org.jboss.jandex.AnnotationTarget; | ||
import org.jboss.jandex.DotName; | ||
import org.jboss.jandex.FieldInfo; | ||
import org.jboss.jandex.IndexView; | ||
import org.jboss.jandex.MethodInfo; | ||
|
||
import io.opentelemetry.sdk.metrics.export.MetricExporter; | ||
import io.opentelemetry.sdk.metrics.export.MetricReader; | ||
import io.quarkus.arc.deployment.AdditionalBeanBuildItem; | ||
import io.quarkus.arc.deployment.UnremovableBeanBuildItem; | ||
import io.quarkus.arc.processor.DotNames; | ||
import io.quarkus.deployment.annotations.BuildProducer; | ||
import io.quarkus.deployment.annotations.BuildStep; | ||
import io.quarkus.deployment.annotations.BuildSteps; | ||
import io.quarkus.deployment.builditem.CombinedIndexBuildItem; | ||
import io.quarkus.opentelemetry.runtime.config.build.OTelBuildConfig; | ||
import io.quarkus.opentelemetry.runtime.metrics.cdi.MetricsProducer; | ||
|
||
@BuildSteps(onlyIf = MetricProcessor.MetricEnabled.class) | ||
public class MetricProcessor { | ||
private static final DotName METRIC_EXPORTER = DotName.createSimple(MetricExporter.class.getName()); | ||
private static final DotName METRIC_READER = DotName.createSimple(MetricReader.class.getName()); | ||
private static final DotName METRIC_PROCESSOR = DotName.createSimple(MetricProcessor.class.getName()); | ||
|
||
@BuildStep | ||
UnremovableBeanBuildItem ensureProducersAreRetained( | ||
CombinedIndexBuildItem indexBuildItem, | ||
BuildProducer<AdditionalBeanBuildItem> additionalBeans) { | ||
|
||
additionalBeans.produce(AdditionalBeanBuildItem.builder() | ||
.setUnremovable() | ||
.addBeanClass(MetricsProducer.class) | ||
.build()); | ||
|
||
IndexView index = indexBuildItem.getIndex(); | ||
|
||
// Find all known SpanExporters and SpanProcessors | ||
Collection<String> knownClasses = new HashSet<>(); | ||
knownClasses.add(METRIC_EXPORTER.toString()); | ||
index.getAllKnownImplementors(METRIC_EXPORTER) | ||
.forEach(classInfo -> knownClasses.add(classInfo.name().toString())); | ||
|
||
knownClasses.add(METRIC_READER.toString()); | ||
index.getAllKnownImplementors(METRIC_READER) | ||
.forEach(classInfo -> knownClasses.add(classInfo.name().toString())); | ||
|
||
knownClasses.add(METRIC_PROCESSOR.toString()); | ||
index.getAllKnownImplementors(METRIC_PROCESSOR) | ||
.forEach(classInfo -> knownClasses.add(classInfo.name().toString())); | ||
|
||
Set<String> retainProducers = new HashSet<>(); | ||
|
||
for (AnnotationInstance annotation : index.getAnnotations(DotNames.PRODUCES)) { | ||
AnnotationTarget target = annotation.target(); | ||
switch (target.kind()) { | ||
case METHOD: | ||
MethodInfo method = target.asMethod(); | ||
String returnType = method.returnType().name().toString(); | ||
if (knownClasses.contains(returnType)) { | ||
retainProducers.add(method.declaringClass().name().toString()); | ||
} | ||
break; | ||
case FIELD: | ||
FieldInfo field = target.asField(); | ||
String fieldType = field.type().name().toString(); | ||
if (knownClasses.contains(fieldType)) { | ||
retainProducers.add(field.declaringClass().name().toString()); | ||
} | ||
break; | ||
default: | ||
break; | ||
} | ||
} | ||
|
||
return new UnremovableBeanBuildItem(new UnremovableBeanBuildItem.BeanClassNamesExclusion(retainProducers)); | ||
} | ||
|
||
public static class MetricEnabled implements BooleanSupplier { | ||
OTelBuildConfig otelBuildConfig; | ||
|
||
public boolean getAsBoolean() { | ||
return otelBuildConfig.metrics().enabled() | ||
.map(new Function<Boolean, Boolean>() { | ||
@Override | ||
public Boolean apply(Boolean enabled) { | ||
return otelBuildConfig.enabled() && enabled; | ||
} | ||
}) | ||
.orElseGet(() -> otelBuildConfig.enabled()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.