File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
datadog-library-config-ffi/src Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,10 @@ pub enum MetadataKind {
23
23
TracerVersion = 2 ,
24
24
Hostname = 3 ,
25
25
ServiceName = 4 ,
26
- ServiceVersion = 5 ,
27
- ProcessTags = 6 ,
28
- ContainerId = 7 ,
26
+ ServiceEnv = 5 ,
27
+ ServiceVersion = 6 ,
28
+ ProcessTags = 7 ,
29
+ ContainerId = 8 ,
29
30
}
30
31
31
32
/// Allocates and returns a pointer to a new `TracerMetadata` object on the heap.
@@ -93,6 +94,7 @@ pub unsafe extern "C" fn ddog_tracer_metadata_set(
93
94
MetadataKind :: TracerVersion => metadata. tracer_version = str_value,
94
95
MetadataKind :: Hostname => metadata. hostname = str_value,
95
96
MetadataKind :: ServiceName => metadata. service_name = Some ( str_value) ,
97
+ MetadataKind :: ServiceEnv => metadata. service_env = Some ( str_value) ,
96
98
MetadataKind :: ServiceVersion => metadata. service_version = Some ( str_value) ,
97
99
MetadataKind :: ProcessTags => metadata. process_tags = Some ( str_value) ,
98
100
MetadataKind :: ContainerId => metadata. container_id = Some ( str_value) ,
You can’t perform that action at this time.
0 commit comments