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

OpenCensus Go exporters for OpenCensus Agent

Results 10 opencensus-go-exporter-ocagent issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to use ocagent with latest census-instrumentation/opencensus-proto (v0.3.0) but there is a slight api discrepency: ``` Testing in: /builddir/build/BUILD/opencensus-go-exporter-ocagent-0.7.0/_build/src PATH: /builddir/build/BUILD/opencensus-go-exporter-ocagent-0.7.0/_build/bin:/builddir/.local/bin:/builddir/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin GOPATH: /builddir/build/BUILD/opencensus-go-exporter-ocagent-0.7.0/_build:/usr/share/gocode GO111MODULE: off command: go test...

feature-request

we are using oc-agent version as below, and we are running oc-agent on kubernetes environment. omnition/opencensus-agent:0.1.6 and a problem noticed is, even when the pod is killed (so no more...

bug

The [ParentSpanId field](https://github.com/census-instrumentation/opencensus-proto/blob/5cec5ea58c3efa81fa808f2bd38ce182da9ee731/gen-go/trace/v1/trace.pb.go#L158-L160) of [tracepb.Span](https://github.com/census-instrumentation/opencensus-proto/blob/5cec5ea58c3efa81fa808f2bd38ce182da9ee731/gen-go/trace/v1/trace.pb.go#L137) must be empty for the root span. This causes issues when combined with [opentelemetry-collector](https://github.com/open-telemetry/opentelemetry-collector) and the jaeger gRPC exporter.

cla: yes

Please answer these questions before submitting a bug report. ### What version of the Exporter are you using? v0.6.0 ### What version of OpenCensus are you using? N/A ### What...

bug

This originally came from trying to use the example from opencensus-service. Currently there is no way to get information about dropped data, this can be an option to add some...

P1

### What version of the Exporter are you using? version = "v0.5.0" ### What version of OpenCensus are you using? version = "v0.19.0" ### What version of Go are you...

bug
P1

For [interoperability test](https://github.com/census-ecosystem/opencensus-experiments/tree/master/interoptest) OC-Agent is used to send spans to test-coordinator. If test-coordinator is restarted then then a new tcp connection is established and the old one is in TIME_WAIT...

bug

NewUnstartedExporter is yet another flavor of an exporter and not starting automatically can be an option. Consider having something like this instead: ``` func WithNoAutoStart() ExporterOption ```

Functional options are a considered disadvantageous due their complexity, read https://middlemost.com/object-lifecycle/ for more and consider about exporting some fields on the Exporter type instead. ```go type Exporter struct { Addr...

discussion

If a user decides to make more than one exporter in the same process, we need to distinguish such scenarios by updating their identifier. This could happen as a bug...