OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) пре 1 година
..
internal 4ef08baf10 [exporter/opencensus] use generated status header (#22120) пре 1 година
testdata be499049ce [chore] Change exporter config tests to unmarshal config only for that component. (part3) (#14954) пре 2 година
Makefile af6ac5bc82 Migrate opencensusexporter from Collector core to Collector contrib (#4657) пре 3 година
README.md 562dc48d10 Link component issue badges to the respective issue page (#24642) пре 1 година
config.go 5133f4ccd6 [chore] use license shortform (#22052) пре 1 година
config_test.go 4ef08baf10 [exporter/opencensus] use generated status header (#22120) пре 1 година
doc.go 4ef08baf10 [exporter/opencensus] use generated status header (#22120) пре 1 година
factory.go 4ef08baf10 [exporter/opencensus] use generated status header (#22120) пре 1 година
factory_test.go d152a936c6 [chore] dependabot updates Tue Oct 24 15:25:38 UTC 2023 (#28572) пре 1 година
go.mod d680729c09 [chore] Prepare release 0.90.0 (#29543) пре 1 година
go.sum 40b485f08a Update core for v0.90.0 release (#29539) пре 1 година
metadata.yaml 8a4348cb00 [chore] add codeowners to metadata (#24404) пре 1 година
opencensus.go 5133f4ccd6 [chore] use license shortform (#22052) пре 1 година
opencensus_test.go 5133f4ccd6 [chore] use license shortform (#22052) пре 1 година

README.md

OpenCensus gRPC Exporter

Status
Stability beta: traces, metrics
Distributions contrib, observiq
Issues Open issues Closed issues
Code Owners @open-telemetry/collector-approvers

Exports traces and/or metrics via gRPC using OpenCensus format.

Getting Started

The following settings are required:

  • endpoint (no default): host:port to which the exporter is going to send Jaeger trace data, using the gRPC protocol. The valid syntax is described here

By default, TLS is enabled and must be configured under tls::

  • insecure (default = false): whether to enable client transport security for the exporter's connection.

As a result, the following parameters are also required under tls::

  • cert_file (no default): path to the TLS cert to use for TLS required connections. Should only be used if insecure is set to false.
  • key_file (no default): path to the TLS key to use for TLS required connections. Should only be used if insecure is set to false.

Example:

exporters:
  opencensus:
    endpoint: opencensus2:55678
    tls:
      cert_file: file.cert
      key_file: file.key
  opencensus/2:
    endpoint: opencensus2:55678
    tls:
      insecure: true

Advanced Configuration

Several helper files are leveraged to provide additional capabilities automatically: