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: