Skip to content

Commit 6f16442

Browse files
refactor: add otel deployment env constant (#124)
1 parent 642dc0a commit 6f16442

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)