opencensus-go icon indicating copy to clipboard operation
opencensus-go copied to clipboard

A stats collection and distributed tracing framework

Results 107 opencensus-go issues
Sort by recently updated
recently updated
newest added

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...

feature-request

### 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...

bug

**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...

feature-request

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...

cla: yes

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`

cla: yes

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...

bug

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...

feature-request

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...

bug

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...