We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 642dc0a commit 6f16442Copy full SHA for 6f16442
span-normalizer/span-normalizer-constants/src/main/java/org/hypertrace/core/semantic/convention/constants/deployment/OTelDeploymentSemanticConventions.java
@@ -0,0 +1,16 @@
1
+package org.hypertrace.core.semantic.convention.constants.deployment;
2
+
3
+/** OTEL specific attributes for deployment */
4
+public enum OTelDeploymentSemanticConventions {
5
+ DEPLOYMENT_ENVIRONMENT("deployment.environment");
6
7
+ private final String value;
8
9
+ OTelDeploymentSemanticConventions(String value) {
10
+ this.value = value;
11
+ }
12
13
+ public String getValue() {
14
+ return value;
15
16
+}
0 commit comments