You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Dispose closes the underlying span, this sets its duration and sends it to the agent (if you don't call Dispose the data will never be sent to Datadog)
187
-
scope.Dispose();
174
+
//Close closes the underlying span, this sets its duration and sends it to the agent (if you don't call Close the data will never be sent to Datadog)
175
+
scope.Close();
188
176
```
189
177
190
178
You may add custom tags by calling `Span.SetTag`:
@@ -198,24 +186,7 @@ You should not have to explicitly declare parent/children relationship between y
0 commit comments