|
| 1 | +package otel; |
| 2 | + |
| 3 | +import io.opentelemetry.api.common.AttributeKey; |
| 4 | +import io.opentelemetry.api.common.Attributes; |
| 5 | +import io.opentelemetry.api.common.AttributesBuilder; |
| 6 | +import java.util.Map; |
| 7 | + |
| 8 | +public class AttributesUsage { |
| 9 | + // Establish static constant for attribute keys and reuse to avoid allocations |
| 10 | + private static final AttributeKey<String> SHOP_ID = AttributeKey.stringKey("com.acme.shop.id"); |
| 11 | + private static final AttributeKey<String> SHOP_NAME = |
| 12 | + AttributeKey.stringKey("com.acme.shop.name"); |
| 13 | + private static final AttributeKey<Long> CUSTOMER_ID = |
| 14 | + AttributeKey.longKey("com.acme.customer.id"); |
| 15 | + private static final AttributeKey<String> CUSTOMER_NAME = |
| 16 | + AttributeKey.stringKey("com.acme.customer.name"); |
| 17 | + |
| 18 | + public static void attributesUsage() { |
| 19 | + // Use a varargs initializer and pre-allocated attribute keys. This is the most efficient way to |
| 20 | + // create attributes. |
| 21 | + Attributes attributes = |
| 22 | + Attributes.of( |
| 23 | + SHOP_ID, |
| 24 | + "abc123", |
| 25 | + SHOP_NAME, |
| 26 | + "opentelemetry-demo", |
| 27 | + CUSTOMER_ID, |
| 28 | + 123L, |
| 29 | + CUSTOMER_NAME, |
| 30 | + "Jack"); |
| 31 | + |
| 32 | + // ...or use a builder. |
| 33 | + attributes = |
| 34 | + Attributes.builder() |
| 35 | + .put(SHOP_ID, "abc123") |
| 36 | + .put(SHOP_NAME, "opentelemetry-demo") |
| 37 | + .put(CUSTOMER_ID, 123) |
| 38 | + .put(CUSTOMER_NAME, "Jack") |
| 39 | + // Optionally initialize attribute keys on the fly |
| 40 | + .put(AttributeKey.stringKey("com.acme.string-key"), "value") |
| 41 | + .put(AttributeKey.booleanKey("com.acme.bool-key"), true) |
| 42 | + .put(AttributeKey.longKey("com.acme.long-key"), 1L) |
| 43 | + .put(AttributeKey.doubleKey("com.acme.double-key"), 1.1) |
| 44 | + .put(AttributeKey.stringArrayKey("com.acme.string-array-key"), "value1", "value2") |
| 45 | + .put(AttributeKey.booleanArrayKey("come.acme.bool-array-key"), true, false) |
| 46 | + .put(AttributeKey.longArrayKey("come.acme.long-array-key"), 1L, 2L) |
| 47 | + .put(AttributeKey.doubleArrayKey("come.acme.double-array-key"), 1.1, 2.2) |
| 48 | + // Optionally omit initializing AttributeKey |
| 49 | + .put("com.acme.string-key", "value") |
| 50 | + .put("com.acme.bool-key", true) |
| 51 | + .put("come.acme.long-key", 1L) |
| 52 | + .put("come.acme.double-key", 1.1) |
| 53 | + .put("come.acme.string-array-key", "value1", "value2") |
| 54 | + .put("come.acme.bool-array-key", true, false) |
| 55 | + .put("come.acme.long-array-key", 1L, 2L) |
| 56 | + .put("come.acme.double-array-key", 1.1, 2.2) |
| 57 | + .build(); |
| 58 | + |
| 59 | + // Attributes has a variety of methods for manipulating and reading data. |
| 60 | + // Read an attribute key: |
| 61 | + String shopIdValue = attributes.get(SHOP_ID); |
| 62 | + // Inspect size: |
| 63 | + int size = attributes.size(); |
| 64 | + boolean isEmpty = attributes.isEmpty(); |
| 65 | + // Convert to a map representation: |
| 66 | + Map<AttributeKey<?>, Object> map = attributes.asMap(); |
| 67 | + // Iterate through entries, printing each to the template: <key> (<type>): <value>\n |
| 68 | + attributes.forEach( |
| 69 | + (attributeKey, value) -> |
| 70 | + System.out.printf( |
| 71 | + "%s (%s): %s%n", attributeKey.getKey(), attributeKey.getType(), value)); |
| 72 | + // Convert to a builder, remove the com.acme.customer.id and any entry whose key starts with |
| 73 | + // com.acme.shop, and build a new instance: |
| 74 | + AttributesBuilder builder = attributes.toBuilder(); |
| 75 | + builder.remove(CUSTOMER_ID); |
| 76 | + builder.removeIf(attributeKey -> attributeKey.getKey().startsWith("com.acme.shop")); |
| 77 | + Attributes trimmedAttributes = builder.build(); |
| 78 | + } |
| 79 | +} |
0 commit comments