Uses of Interface
io.opentelemetry.api.common.KeyValue
-
Packages that use KeyValue Package Description io.opentelemetry.api.common This package contains code common across the OpenTelemetry APIs, includingAttributes
and classes/utilities for interacting with them.io.opentelemetry.exporter.internal.otlp Utilities for working with the OTLP format. -
-
Uses of KeyValue in io.opentelemetry.api.common
Classes in io.opentelemetry.api.common that implement KeyValue Modifier and Type Class Description (package private) class
AutoValue_KeyValueImpl
(package private) class
KeyValueImpl
Fields in io.opentelemetry.api.common with type parameters of type KeyValue Modifier and Type Field Description private java.util.List<KeyValue>
KeyValueList. value
Methods in io.opentelemetry.api.common that return KeyValue Modifier and Type Method Description static KeyValue
KeyValue. of(java.lang.String key, Value<?> value)
Methods in io.opentelemetry.api.common that return types with arguments of type KeyValue Modifier and Type Method Description (package private) static Value<java.util.List<KeyValue>>
KeyValueList. create(KeyValue... value)
(package private) static Value<java.util.List<KeyValue>>
KeyValueList. createFromMap(java.util.Map<java.lang.String,Value<?>> value)
java.util.List<KeyValue>
KeyValueList. getValue()
static Value<java.util.List<KeyValue>>
Value. of(KeyValue... value)
static Value<java.util.List<KeyValue>>
Value. of(java.util.Map<java.lang.String,Value<?>> value)
Methods in io.opentelemetry.api.common with parameters of type KeyValue Modifier and Type Method Description (package private) static Value<java.util.List<KeyValue>>
KeyValueList. create(KeyValue... value)
static Value<java.util.List<KeyValue>>
Value. of(KeyValue... value)
Constructor parameters in io.opentelemetry.api.common with type arguments of type KeyValue Constructor Description KeyValueList(java.util.List<KeyValue> value)
-
Uses of KeyValue in io.opentelemetry.exporter.internal.otlp
Methods in io.opentelemetry.exporter.internal.otlp with parameters of type KeyValue Modifier and Type Method Description static KeyValueMarshaler
KeyValueMarshaler. createForKeyValue(KeyValue keyValue)
Returns Marshaler for the given KeyValue.int
KeyValueStatelessMarshaler. getBinarySerializedSize(KeyValue value, MarshalerContext context)
void
KeyValueStatelessMarshaler. writeTo(Serializer output, KeyValue value, MarshalerContext context)
Method parameters in io.opentelemetry.exporter.internal.otlp with type arguments of type KeyValue Modifier and Type Method Description (package private) static MarshalerWithSize
KeyValueListAnyValueMarshaler. create(java.util.List<KeyValue> values)
int
KeyValueListAnyValueStatelessMarshaler. getBinarySerializedSize(java.util.List<KeyValue> value, MarshalerContext context)
void
KeyValueListAnyValueStatelessMarshaler. writeTo(Serializer output, java.util.List<KeyValue> value, MarshalerContext context)
-