OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) | 1 年之前 | |
---|---|---|
.. | ||
internal | 1 年之前 | |
testdata | 2 年之前 | |
Makefile | 3 年之前 | |
README.md | 1 年之前 | |
config.go | 1 年之前 | |
config_test.go | 1 年之前 | |
doc.go | 1 年之前 | |
factory.go | 1 年之前 | |
factory_test.go | 1 年之前 | |
go.mod | 1 年之前 | |
go.sum | 1 年之前 | |
metadata.yaml | 1 年之前 | |
opencensus.go | 1 年之前 | |
opencensus_test.go | 1 年之前 |
Status | |
---|---|
Stability | beta: traces, metrics |
Distributions | contrib, observiq |
Issues | |
Code Owners | @open-telemetry/collector-approvers |
Exports traces and/or metrics via gRPC using OpenCensus format.
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
hereBy 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
Several helper files are leveraged to provide additional capabilities automatically: