forked from open-telemetry/opentelemetry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResourceBuilder.java
More file actions
199 lines (180 loc) · 5.32 KB
/
ResourceBuilder.java
File metadata and controls
199 lines (180 loc) · 5.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.sdk.resources;
import io.opentelemetry.api.common.AttributeKey;
import io.opentelemetry.api.common.Attributes;
import io.opentelemetry.api.common.AttributesBuilder;
import java.util.function.Predicate;
import javax.annotation.Nullable;
/**
* A builder for {@link Resource} that allows adding key-value pairs and copying attributes from
* other {@link Attributes} or {@link Resource} instances.
*
* @since 1.1.0
*/
public class ResourceBuilder {
private final AttributesBuilder attributesBuilder = Attributes.builder();
@Nullable private String schemaUrl;
/**
* Puts a String attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, String value) {
if (key != null && value != null) {
attributesBuilder.put(key, value);
}
return this;
}
/**
* Puts a long attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, long value) {
if (key != null) {
attributesBuilder.put(key, value);
}
return this;
}
/**
* Puts a double attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, double value) {
if (key != null) {
attributesBuilder.put(key, value);
}
return this;
}
/**
* Puts a boolean attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, boolean value) {
if (key != null) {
attributesBuilder.put(key, value);
}
return this;
}
/**
* Puts a String array attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, String... values) {
if (key != null && values != null) {
attributesBuilder.put(key, values);
}
return this;
}
/**
* Puts a Long array attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, long... values) {
if (key != null && values != null) {
attributesBuilder.put(key, values);
}
return this;
}
/**
* Puts a Double array attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, double... values) {
if (key != null && values != null) {
attributesBuilder.put(key, values);
}
return this;
}
/**
* Puts a Boolean array attribute into this.
*
* <p>Note: It is strongly recommended to use {@link #put(AttributeKey, Object)}, and pre-allocate
* your keys, if possible.
*
* @return this Builder
*/
public ResourceBuilder put(String key, boolean... values) {
if (key != null && values != null) {
attributesBuilder.put(key, values);
}
return this;
}
/** Puts a {@link AttributeKey} with associated value into this. */
public <T> ResourceBuilder put(AttributeKey<T> key, T value) {
if (key != null && key.getKey() != null && !key.getKey().isEmpty() && value != null) {
attributesBuilder.put(key, value);
}
return this;
}
/** Puts a {@link AttributeKey} with associated value into this. */
public ResourceBuilder put(AttributeKey<Long> key, int value) {
if (key != null && key.getKey() != null && !key.getKey().isEmpty()) {
attributesBuilder.put(key, value);
}
return this;
}
/** Puts all {@link Attributes} into this. */
public ResourceBuilder putAll(Attributes attributes) {
if (attributes != null) {
attributesBuilder.putAll(attributes);
}
return this;
}
/** Puts all attributes from {@link Resource} into this. */
public ResourceBuilder putAll(Resource resource) {
if (resource != null) {
attributesBuilder.putAll(resource.getAttributes());
}
return this;
}
/** Remove all attributes that satisfy the given predicate from {@link Resource}. */
public ResourceBuilder removeIf(Predicate<AttributeKey<?>> filter) {
attributesBuilder.removeIf(filter);
return this;
}
/**
* Assign an OpenTelemetry schema URL to the resulting Resource.
*
* @param schemaUrl The URL of the OpenTelemetry schema being used to create this Resource.
* @return this
* @since 1.4.0
*/
public ResourceBuilder setSchemaUrl(String schemaUrl) {
this.schemaUrl = schemaUrl;
return this;
}
/** Create the {@link Resource} from this. */
public Resource build() {
return Resource.create(attributesBuilder.build(), schemaUrl);
}
}