Uses of Interface
io.opentelemetry.api.common.Value
-
Packages that use Value 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.api.incubator.events io.opentelemetry.api.incubator.logs io.opentelemetry.api.logs API for writing log appenders.io.opentelemetry.exporter.internal.otlp Utilities for working with the OTLP format.io.opentelemetry.sdk.logs The OpenTelemetry SDK implementation of logging.io.opentelemetry.sdk.logs.data The data format to model logs for export.io.opentelemetry.sdk.logs.internal -
-
Uses of Value in io.opentelemetry.api.common
Classes in io.opentelemetry.api.common that implement Value Modifier and Type Class Description (package private) class
KeyValueList
(package private) class
ValueArray
(package private) class
ValueBoolean
(package private) class
ValueBytes
(package private) class
ValueDouble
(package private) class
ValueLong
(package private) class
ValueString
Fields in io.opentelemetry.api.common declared as Value Modifier and Type Field Description private Value<?>
AutoValue_KeyValueImpl. value
Fields in io.opentelemetry.api.common with type parameters of type Value Modifier and Type Field Description private java.util.List<Value<?>>
ValueArray. value
Methods in io.opentelemetry.api.common that return Value Modifier and Type Method Description (package private) static Value<java.util.List<KeyValue>>
KeyValueList. create(KeyValue... value)
(package private) static Value<java.util.List<Value<?>>>
ValueArray. create(Value<?>... value)
(package private) static Value<java.util.List<Value<?>>>
ValueArray. create(java.util.List<Value<?>> value)
(package private) static Value<java.lang.Boolean>
ValueBoolean. create(boolean value)
(package private) static Value<java.nio.ByteBuffer>
ValueBytes. create(byte[] value)
(package private) static Value<java.lang.Double>
ValueDouble. create(double value)
(package private) static Value<java.lang.Long>
ValueLong. create(long value)
(package private) static Value<java.lang.String>
ValueString. create(java.lang.String value)
(package private) static Value<java.util.List<KeyValue>>
KeyValueList. createFromMap(java.util.Map<java.lang.String,Value<?>> value)
Value<?>
AutoValue_KeyValueImpl. getValue()
Value<?>
KeyValue. getValue()
Returns the value.static Value<java.lang.Boolean>
Value. of(boolean value)
Returns anValue
for theboolean
value.static Value<java.nio.ByteBuffer>
Value. of(byte[] value)
Returns anValue
for thebyte[]
value.static Value<java.lang.Double>
Value. of(double value)
Returns anValue
for thedouble
value.static Value<java.lang.Long>
Value. of(long value)
Returns anValue
for thelong
value.static Value<java.util.List<KeyValue>>
Value. of(KeyValue... value)
static Value<java.util.List<Value<?>>>
Value. of(Value<?>... value)
static Value<java.lang.String>
Value. of(java.lang.String value)
Returns anValue
for theString
value.static Value<java.util.List<Value<?>>>
Value. of(java.util.List<Value<?>> value)
static Value<java.util.List<KeyValue>>
Value. of(java.util.Map<java.lang.String,Value<?>> value)
Methods in io.opentelemetry.api.common that return types with arguments of type Value Modifier and Type Method Description (package private) static Value<java.util.List<Value<?>>>
ValueArray. create(Value<?>... value)
(package private) static Value<java.util.List<Value<?>>>
ValueArray. create(java.util.List<Value<?>> value)
java.util.List<Value<?>>
ValueArray. getValue()
static Value<java.util.List<Value<?>>>
Value. of(Value<?>... value)
static Value<java.util.List<Value<?>>>
Value. of(java.util.List<Value<?>> value)
Methods in io.opentelemetry.api.common with parameters of type Value Modifier and Type Method Description (package private) static KeyValueImpl
KeyValueImpl. create(java.lang.String key, Value<?> value)
(package private) static Value<java.util.List<Value<?>>>
ValueArray. create(Value<?>... value)
static KeyValue
KeyValue. of(java.lang.String key, Value<?> value)
static Value<java.util.List<Value<?>>>
Value. of(Value<?>... value)
Method parameters in io.opentelemetry.api.common with type arguments of type Value Modifier and Type Method Description (package private) static Value<java.util.List<Value<?>>>
ValueArray. create(java.util.List<Value<?>> value)
(package private) static Value<java.util.List<KeyValue>>
KeyValueList. createFromMap(java.util.Map<java.lang.String,Value<?>> value)
static Value<java.util.List<Value<?>>>
Value. of(java.util.List<Value<?>> value)
static Value<java.util.List<KeyValue>>
Value. of(java.util.Map<java.lang.String,Value<?>> value)
Constructors in io.opentelemetry.api.common with parameters of type Value Constructor Description AutoValue_KeyValueImpl(java.lang.String key, Value<?> value)
Constructor parameters in io.opentelemetry.api.common with type arguments of type Value Constructor Description ValueArray(java.util.List<Value<?>> value)
-
Uses of Value in io.opentelemetry.api.incubator.events
Methods in io.opentelemetry.api.incubator.events with parameters of type Value Modifier and Type Method Description EventBuilder
DefaultEventLogger.NoOpEventBuilder. put(java.lang.String key, Value<?> value)
EventBuilder
EventBuilder. put(java.lang.String key, Value<?> value)
Put the givenkey
andvalue
in the payload. -
Uses of Value in io.opentelemetry.api.incubator.logs
Methods in io.opentelemetry.api.incubator.logs with parameters of type Value Modifier and Type Method Description LogRecordBuilder
ExtendedDefaultLogger.NoopLogRecordBuilder. setBody(Value<?> body)
-
Uses of Value in io.opentelemetry.api.logs
Methods in io.opentelemetry.api.logs with parameters of type Value Modifier and Type Method Description LogRecordBuilder
DefaultLogger.NoopLogRecordBuilder. setBody(Value<?> body)
default LogRecordBuilder
LogRecordBuilder. setBody(Value<?> body)
Set the bodyValue
. -
Uses of Value in io.opentelemetry.exporter.internal.otlp
Methods in io.opentelemetry.exporter.internal.otlp with parameters of type Value Modifier and Type Method Description static MarshalerWithSize
AnyValueMarshaler. create(Value<?> value)
int
AnyValueStatelessMarshaler. getBinarySerializedSize(Value<?> value, MarshalerContext context)
void
AnyValueStatelessMarshaler. writeTo(Serializer output, Value<?> value, MarshalerContext context)
Method parameters in io.opentelemetry.exporter.internal.otlp with type arguments of type Value Modifier and Type Method Description (package private) static MarshalerWithSize
ArrayAnyValueMarshaler. createAnyValue(java.util.List<Value<?>> values)
int
ArrayAnyValueStatelessMarshaler. getBinarySerializedSize(java.util.List<Value<?>> value, MarshalerContext context)
void
ArrayAnyValueStatelessMarshaler. writeTo(Serializer output, java.util.List<Value<?>> value, MarshalerContext context)
-
Uses of Value in io.opentelemetry.sdk.logs
Fields in io.opentelemetry.sdk.logs declared as Value Modifier and Type Field Description private Value<?>
SdkLogRecordBuilder. body
private Value<?>
SdkReadWriteLogRecord. body
private Value<?>
AutoValue_SdkLogRecordData. bodyValue
Methods in io.opentelemetry.sdk.logs that return Value Modifier and Type Method Description Value<?>
AutoValue_SdkLogRecordData. getBodyValue()
abstract Value<?>
SdkLogRecordData. getBodyValue()
Methods in io.opentelemetry.sdk.logs with parameters of type Value Modifier and Type Method Description (package private) static SdkLogRecordData
SdkLogRecordData. create(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, long epochNanos, long observedEpochNanos, SpanContext spanContext, Severity severity, java.lang.String severityText, Value<?> body, Attributes attributes, int totalAttributeCount)
(package private) static SdkReadWriteLogRecord
SdkReadWriteLogRecord. create(LogLimits logLimits, Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, long timestampEpochNanos, long observedTimestampEpochNanos, SpanContext spanContext, Severity severity, java.lang.String severityText, Value<?> body, AttributesMap attributes)
Create the log record with the given configuration.SdkLogRecordBuilder
SdkLogRecordBuilder. setBody(Value<?> value)
Constructors in io.opentelemetry.sdk.logs with parameters of type Value Constructor Description AutoValue_SdkLogRecordData(Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, long timestampEpochNanos, long observedTimestampEpochNanos, SpanContext spanContext, Severity severity, java.lang.String severityText, Attributes attributes, int totalAttributeCount, Value<?> bodyValue)
SdkReadWriteLogRecord(LogLimits logLimits, Resource resource, InstrumentationScopeInfo instrumentationScopeInfo, long timestampEpochNanos, long observedTimestampEpochNanos, SpanContext spanContext, Severity severity, java.lang.String severityText, Value<?> body, AttributesMap attributes)
-
Uses of Value in io.opentelemetry.sdk.logs.data
Methods in io.opentelemetry.sdk.logs.data that return Value Modifier and Type Method Description default Value<?>
LogRecordData. getBodyValue()
Returns theValue
representation of the log body, of null if unset. -
Uses of Value in io.opentelemetry.sdk.logs.internal
Fields in io.opentelemetry.sdk.logs.internal with type parameters of type Value Modifier and Type Field Description private java.util.Map<java.lang.String,Value<?>>
SdkEventBuilder. payload
Methods in io.opentelemetry.sdk.logs.internal with parameters of type Value Modifier and Type Method Description EventBuilder
SdkEventBuilder. put(java.lang.String key, Value<?> value)
-