Package io.opentelemetry.api.common
Interface Labels
-
- All Known Implementing Classes:
Labels.ArrayBackedLabels
@Immutable public interface LabelsAn immutable container for labels, which are key-value pairs ofStrings.Implementations of this interface *must* be immutable and have well-defined value-based equals/hashCode implementations. If an implementation does not strictly conform to these requirements, behavior of the OpenTelemetry APIs and default SDK cannot be guaranteed.
For this reason, it is strongly suggested that you use the implementation that is provided here via the factory methods and the
ArrayBackedLabelsBuilder.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classLabels.ArrayBackedLabels
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static LabelsBuilderbuilder()Creates a newArrayBackedLabelsBuilderinstance for creating arbitraryLabels.static Labelsempty()Returns aLabelsinstance with no attributes.voidforEach(java.util.function.BiConsumer<java.lang.String,java.lang.String> consumer)Iterates over all the key-value pairs of labels contained by this instance.java.lang.Stringget(java.lang.String key)Returns the value for the givenkey, ornullif the key is not present.booleanisEmpty()Returns whether this instance is empty (contains no labels).static Labelsof(java.lang.String[] keyValueLabelPairs)static Labelsof(java.lang.String key, java.lang.String value)Returns aLabelsinstance with a single key-value pair.static Labelsof(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2)Returns aLabelsinstance with two key-value pairs.static Labelsof(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2, java.lang.String key3, java.lang.String value3)Returns aLabelsinstance with three key-value pairs.static Labelsof(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2, java.lang.String key3, java.lang.String value3, java.lang.String key4, java.lang.String value4)Returns aLabelsinstance with four key-value pairs.static Labelsof(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2, java.lang.String key3, java.lang.String value3, java.lang.String key4, java.lang.String value4, java.lang.String key5, java.lang.String value5)Returns aLabelsinstance with five key-value pairs.intsize()The number of key-value pairs of labels in this instance.LabelsBuildertoBuilder()Create aArrayBackedLabelsBuilderpre-populated with the contents of this Labels instance.
-
-
-
Method Detail
-
forEach
void forEach(java.util.function.BiConsumer<java.lang.String,java.lang.String> consumer)
Iterates over all the key-value pairs of labels contained by this instance.
-
size
int size()
The number of key-value pairs of labels in this instance.
-
get
@Nullable java.lang.String get(java.lang.String key)
Returns the value for the givenkey, ornullif the key is not present.
-
isEmpty
boolean isEmpty()
Returns whether this instance is empty (contains no labels).
-
of
static Labels of(java.lang.String key, java.lang.String value)
Returns aLabelsinstance with a single key-value pair.
-
of
static Labels of(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2)
Returns aLabelsinstance with two key-value pairs. Order of the keys is not preserved. Duplicate keys will be removed.
-
of
static Labels of(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2, java.lang.String key3, java.lang.String value3)
Returns aLabelsinstance with three key-value pairs. Order of the keys is not preserved. Duplicate keys will be removed.
-
of
static Labels of(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2, java.lang.String key3, java.lang.String value3, java.lang.String key4, java.lang.String value4)
Returns aLabelsinstance with four key-value pairs. Order of the keys is not preserved. Duplicate keys will be removed.
-
of
static Labels of(java.lang.String key1, java.lang.String value1, java.lang.String key2, java.lang.String value2, java.lang.String key3, java.lang.String value3, java.lang.String key4, java.lang.String value4, java.lang.String key5, java.lang.String value5)
Returns aLabelsinstance with five key-value pairs. Order of the keys is not preserved. Duplicate keys will be removed.
-
of
static Labels of(java.lang.String[] keyValueLabelPairs)
-
toBuilder
LabelsBuilder toBuilder()
Create aArrayBackedLabelsBuilderpre-populated with the contents of this Labels instance.
-
builder
static LabelsBuilder builder()
Creates a newArrayBackedLabelsBuilderinstance for creating arbitraryLabels.
-
-