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
{{ message }}
This repository was archived by the owner on Oct 3, 2023. It is now read-only.
* Controlling the global default `Sampler` via [TraceConfig](https://github.com/census-instrumentation/opencensus-specs/blob/master/trace/TraceConfig.md).
125
+
* Pass a specific `Sampler` as an option to the HTTP plugin. Plugins should support setting
126
+
a sampler per HTTP request.
127
+
128
+
In the following Go example, incoming and outgoing request objects can
129
+
dynamically inspected to set a sampler.
130
+
131
+
For outgoing requests:
132
+
133
+
```
134
+
type Transport struct {
135
+
// GetStartOptions allows to set start options per request.
0 commit comments