Uses of Class
io.opentelemetry.sdk.metrics.internal.view.AttributesProcessor
-
Packages that use AttributesProcessor Package Description io.opentelemetry.sdk.metrics The SDK implementation of metrics.io.opentelemetry.sdk.metrics.internal Internal SDK implementation classes.io.opentelemetry.sdk.metrics.internal.state io.opentelemetry.sdk.metrics.internal.view View related internal classes. -
-
Uses of AttributesProcessor in io.opentelemetry.sdk.metrics
Fields in io.opentelemetry.sdk.metrics declared as AttributesProcessor Modifier and Type Field Description private AttributesProcessor
AutoValue_View. attributesProcessor
private AttributesProcessor
ViewBuilder. processor
Methods in io.opentelemetry.sdk.metrics that return AttributesProcessor Modifier and Type Method Description (package private) AttributesProcessor
AutoValue_View. getAttributesProcessor()
(package private) abstract AttributesProcessor
View. getAttributesProcessor()
Returns the attribute processor used for this view.Methods in io.opentelemetry.sdk.metrics with parameters of type AttributesProcessor Modifier and Type Method Description (package private) ViewBuilder
ViewBuilder. addAttributesProcessor(AttributesProcessor attributesProcessor)
Add an attribute processor.(package private) static View
View. create(java.lang.String name, java.lang.String description, Aggregation aggregation, AttributesProcessor attributesProcessor, int cardinalityLimit)
Constructors in io.opentelemetry.sdk.metrics with parameters of type AttributesProcessor Constructor Description AutoValue_View(java.lang.String name, java.lang.String description, Aggregation aggregation, AttributesProcessor attributesProcessor, int cardinalityLimit)
-
Uses of AttributesProcessor in io.opentelemetry.sdk.metrics.internal
Methods in io.opentelemetry.sdk.metrics.internal with parameters of type AttributesProcessor Modifier and Type Method Description private static void
SdkMeterProviderUtil. addAttributesProcessor(ViewBuilder viewBuilder, AttributesProcessor attributesProcessor)
-
Uses of AttributesProcessor in io.opentelemetry.sdk.metrics.internal.state
Fields in io.opentelemetry.sdk.metrics.internal.state declared as AttributesProcessor Modifier and Type Field Description private AttributesProcessor
AsynchronousMetricStorage. attributesProcessor
private AttributesProcessor
DefaultSynchronousMetricStorage. attributesProcessor
Constructors in io.opentelemetry.sdk.metrics.internal.state with parameters of type AttributesProcessor Constructor Description AsynchronousMetricStorage(RegisteredReader registeredReader, MetricDescriptor metricDescriptor, Aggregator<T,U> aggregator, AttributesProcessor attributesProcessor, int maxCardinality)
DefaultSynchronousMetricStorage(RegisteredReader registeredReader, MetricDescriptor metricDescriptor, Aggregator<T,U> aggregator, AttributesProcessor attributesProcessor, int maxCardinality)
-
Uses of AttributesProcessor in io.opentelemetry.sdk.metrics.internal.view
Subclasses of AttributesProcessor in io.opentelemetry.sdk.metrics.internal.view Modifier and Type Class Description (package private) class
AdviceAttributesProcessor
private static class
AttributesProcessor.AppendingAttributesProcessor
Processor which appends a static set ofAttributes
.private static class
AttributesProcessor.AttributeKeyFilteringProcessor
Processor which filters attributes according to aAttributeKey.getKey()
Predicate
.private static class
AttributesProcessor.BaggageAppendingAttributesProcessor
Processor which appends entries fromBaggage
with keys that match a predicate.private static class
AttributesProcessor.JoinedAttributesProcessor
AAttributesProcessor
that runs a sequence of processors.(package private) class
NoopAttributesProcessor
Fields in io.opentelemetry.sdk.metrics.internal.view declared as AttributesProcessor Modifier and Type Field Description private AttributesProcessor
AutoValue_RegisteredView. viewAttributesProcessor
Fields in io.opentelemetry.sdk.metrics.internal.view with type parameters of type AttributesProcessor Modifier and Type Field Description private java.util.Collection<AttributesProcessor>
AttributesProcessor.JoinedAttributesProcessor. processors
Methods in io.opentelemetry.sdk.metrics.internal.view that return AttributesProcessor Modifier and Type Method Description static AttributesProcessor
AttributesProcessor. append(Attributes attributes)
Creates a processor which appends (exactly) the given attributes.static AttributesProcessor
AttributesProcessor. appendBaggageByKeyName(java.util.function.Predicate<java.lang.String> nameFilter)
Creates a processor which appends values fromBaggage
.static AttributesProcessor
AttributesProcessor. filterByKeyName(java.util.function.Predicate<java.lang.String> nameFilter)
Creates a processor which filters down attributes from a measurement.AttributesProcessor
AutoValue_RegisteredView. getViewAttributesProcessor()
abstract AttributesProcessor
RegisteredView. getViewAttributesProcessor()
The view'sAttributesProcessor
.static AttributesProcessor
AttributesProcessor. noop()
No-op version of attributes processor, returns what it gets.(package private) AttributesProcessor
AttributesProcessor.JoinedAttributesProcessor. prepend(AttributesProcessor other)
AttributesProcessor
AttributesProcessor.JoinedAttributesProcessor. then(AttributesProcessor other)
AttributesProcessor
AttributesProcessor. then(AttributesProcessor other)
Joins this attribute processor with another that operates after this one.Methods in io.opentelemetry.sdk.metrics.internal.view with parameters of type AttributesProcessor Modifier and Type Method Description static RegisteredView
RegisteredView. create(InstrumentSelector selector, View view, AttributesProcessor viewAttributesProcessor, int cardinalityLimit, SourceInfo viewSourceInfo)
(package private) AttributesProcessor
AttributesProcessor.JoinedAttributesProcessor. prepend(AttributesProcessor other)
AttributesProcessor
AttributesProcessor.JoinedAttributesProcessor. then(AttributesProcessor other)
AttributesProcessor
AttributesProcessor. then(AttributesProcessor other)
Joins this attribute processor with another that operates after this one.Constructors in io.opentelemetry.sdk.metrics.internal.view with parameters of type AttributesProcessor Constructor Description AutoValue_RegisteredView(InstrumentSelector instrumentSelector, View view, AttributesProcessor viewAttributesProcessor, int cardinalityLimit, SourceInfo viewSourceInfo)
Constructor parameters in io.opentelemetry.sdk.metrics.internal.view with type arguments of type AttributesProcessor Constructor Description JoinedAttributesProcessor(java.util.Collection<AttributesProcessor> processors)
-