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
After some experimentation I've been able to successfully integrate this into my application, thank you!
After the "Configuration" section and before the "Capture" section in the README's Quick Start can I recommend adding a simple example of how to start a segment and subsegment for those developers who aren't working with HTTPS based services:
// Start a segment:ctx, seg:=xray.BeginSegment(context.Background(), "my-service-name")
ctx, subSeg:=xray.BeginSubsegment(ctx, "Some unit of work")
// ...// some unit of work here// ...subSeg.Close(nil)
// Close the segmentseg.Close(nil)
The text was updated successfully, but these errors were encountered:
After some experimentation I've been able to successfully integrate this into my application, thank you!
After the "Configuration" section and before the "Capture" section in the README's Quick Start can I recommend adding a simple example of how to start a segment and subsegment for those developers who aren't working with HTTPS based services:
The text was updated successfully, but these errors were encountered: