OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) | 1 rok temu | |
---|---|---|
.. | ||
internal | 1 rok temu | |
testdata | 1 rok temu | |
Makefile | 3 lat temu | |
README.md | 1 rok temu | |
config.go | 1 rok temu | |
config_test.go | 1 rok temu | |
doc.go | 1 rok temu | |
errors.go | 1 rok temu | |
factory.go | 1 rok temu | |
factory_test.go | 1 rok temu | |
go.mod | 1 rok temu | |
go.sum | 1 rok temu | |
jaeger_agent_test.go | 1 rok temu | |
metadata.yaml | 1 rok temu | |
trace_receiver.go | 1 rok temu | |
trace_receiver_test.go | 1 rok temu |
Status | |
---|---|
Stability | beta: traces |
Distributions | core, contrib, aws, grafana, observiq, redhat, splunk, sumo |
Issues | |
Code Owners | @jpkrohling |
Receives trace data in Jaeger format.
By default, the Jaeger receiver will not serve any protocol. A protocol must be
named under the protocols
object for the jaeger receiver to start. The
below protocols are supported, each supports an optional endpoint
object configuration parameter.
grpc
(default endpoint
= 0.0.0.0:14250)thrift_binary
(default endpoint
= 0.0.0.0:6832)thrift_compact
(default endpoint
= 0.0.0.0:6831)thrift_http
(default endpoint
= 0.0.0.0:14268)Examples:
receivers:
jaeger:
protocols:
grpc:
jaeger/withendpoint:
protocols:
grpc:
endpoint: 0.0.0.0:14260
UDP protocols (currently thrift_binary
and thrift_compact
) allow setting additional
server options:
queue_size
(default 1000) sets max not yet handled requests to servermax_packet_size
(default 65_000) sets max UDP packet sizeworkers
(default 10) sets number of workers consuming the server queuesocket_buffer_size
(default 0 - no buffer) sets buffer size of connection socket in bytesExamples:
protocols:
thrift_binary:
endpoint: 0.0.0.0:6832
queue_size: 5_000
max_packet_size: 131_072
workers: 50
socket_buffer_size: 8_388_608
Several helper files are leveraged to provide additional capabilities automatically:
Since version v0.61.0, remote sampling is no longer supported by the jaeger receiver. Since version v0.59.0, the jaegerremotesapmpling extension is available that can be used instead.