opencensus-go
opencensus-go copied to clipboard
A stats collection and distributed tracing framework
Does Datadog tracing and Opencensus tracing work well together? For example, take the following code: ```golang import ( "context" "log" datadog "github.com/DataDog/opencensus-go-exporter-datadog" opencensustrace "go.opencensus.io/trace" "gopkg.in/DataDog/dd-trace-go.v1/ddtrace/tracer" ) func main() { exporter,...
**Is your feature request related to a problem? Please describe.** In the GRPC client, I am trying to access the span created by the stats handler from inside the interceptor...
### What version of OpenCensus are you using? From `go.mod`: `go.opencensus.io v0.22.0` `contrib.go.opencensus.io/exporter/stackdriver v0.12.2` ### What version of Go are you using? ``` > go version go version go1.12.5 linux/amd64...
**Is your feature request related to a problem? Please describe.** Under load or when recording a number of metrics, the worker channel buffer can fill up and block the calling...
Updates `ochttp.Transport` to accept an optional `FormatStatsPath` which is supplied to `ochttp.statsTransport`. `FormatStatsPath` can override a request URL's path parameter to reduce cardinality for stats similar to `FormatSpanName`. This should...
Is there any reason why we aren't converting http status code (500) to a trace.Status code? The `http.StatusInternalServerError` has a corresponding trace status code `trace.StatusCodeInternal`
Please answer these questions before submitting a bug report. ### What version of OpenCensus are you using? go.opencensus.io v0.22.4 ### What version of Go are you using? go version go1.14.3...
The original intention was to have full compatibility from OpenCensus to OpenTelemetry. There is now a bridge to connect OpenTracing into OpenTelemetry, but because OpenCensus was not created with an...
Please answer these questions before submitting a bug report. ### What version of OpenCensus are you using? 0.22.4 ### What version of Go are you using? 1.14.2 ### What did...
I have a Java application and a Go application running separately. I had a span A in the Java application and I printed it's trace id and span id, and...