OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) | há 1 ano atrás | |
---|---|---|
.. | ||
internal | há 1 ano atrás | |
testdata | há 1 ano atrás | |
Makefile | há 3 anos atrás | |
README.md | há 1 ano atrás | |
config.go | há 1 ano atrás | |
config_test.go | há 1 ano atrás | |
doc.go | há 1 ano atrás | |
factory.go | há 1 ano atrás | |
factory_test.go | há 1 ano atrás | |
go.mod | há 1 ano atrás | |
go.sum | há 1 ano atrás | |
metadata.yaml | há 1 ano atrás | |
testutils_test.go | há 1 ano atrás | |
zipkin.go | há 1 ano atrás | |
zipkin_test.go | há 1 ano atrás |
Status | |
---|---|
Stability | beta: traces |
Distributions | core, contrib, observiq |
Issues | |
Code Owners | @MovieStoreGuy, @astencel-sumo, @crobert-1 |
Exports data to a Zipkin back-end. By default, this exporter requires TLS and offers queued retry capabilities.
The following settings are required:
endpoint
(no default): URL to which the exporter is going to send Zipkin trace data. For example: http://localhost:9411/api/v2/spans
.The following settings are optional:
format
(default = json
): The format to sent events in. Can be set to json
or proto
.default_service_name
(default = <missing service name>
): What to name
services missing this information.To use TLS, specify https://
as the protocol scheme in the URL passed to the endpoint
property.
See Advanced Configuration for more TLS options.
Example:
exporters:
zipkin/nontls:
endpoint: "http://some.url:9411/api/v2/spans"
format: proto
default_service_name: unknown-service
zipkin/withtls:
endpoint: "https://some.url:9411/api/v2/spans"
zipkin/tlsnoverify:
endpoint: "https://some.url:9411/api/v2/spans"
tls:
insecure_skip_verify: true
Several helper files are leveraged to provide additional capabilities automatically: