File tree Expand file tree Collapse file tree
libdd-data-pipeline/src/telemetry Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,19 +96,22 @@ impl TelemetryClientBuilder {
9696 self
9797 }
9898
99- /// Sets the instrumentation session id sent as the `dd-session-id` header on telemetry requests.
99+ /// Sets the instrumentation session id sent as the `dd-session-id` header on telemetry
100+ /// requests.
100101 pub fn set_session_id ( mut self , id : & str ) -> Self {
101102 self . session_id = Some ( id. to_string ( ) ) ;
102103 self
103104 }
104105
105- /// Sets the root session id sent as the `dd-root-session-id` header (only with a valid session id).
106+ /// Sets the root session id sent as the `dd-root-session-id` header (only with a valid session
107+ /// id).
106108 pub fn set_root_session_id ( mut self , id : & str ) -> Self {
107109 self . root_session_id = Some ( id. to_string ( ) ) ;
108110 self
109111 }
110112
111- /// Sets the parent session id sent as the `dd-parent-session-id` header (only with a valid session id).
113+ /// Sets the parent session id sent as the `dd-parent-session-id` header (only with a valid
114+ /// session id).
112115 pub fn set_parent_session_id ( mut self , id : & str ) -> Self {
113116 self . parent_session_id = Some ( id. to_string ( ) ) ;
114117 self
You can’t perform that action at this time.
0 commit comments