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á 1 ano atrás | |
README.md | há 1 ano atrás | |
config.go | há 1 ano atrás | |
config_test.go | há 1 ano atrás | |
encoder.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 | |
integration_test.go | há 1 ano atrás | |
log_bulk_indexer.go | há 1 ano atrás | |
logger.go | há 1 ano atrás | |
metadata.yaml | há 1 ano atrás | |
sso_log_exporter.go | há 1 ano atrás | |
sso_model.go | há 1 ano atrás | |
sso_trace_exporter.go | há 1 ano atrás | |
trace_bulk_indexer.go | há 1 ano atrás |
Status | |
---|---|
Stability | alpha: traces |
development: logs | |
Distributions | [] |
Issues | |
Code Owners | @Aneurysm9, @MitchellGale, @MaxKsyunz, @YANG-DB |
OpenSearch exporter supports sending OpenTelemetry signals as documents to OpenSearch.
The documents are sent using observability catalog schema.
dataset
(default=default
) a user-provided label to classify source of telemetry. It is used to construct the name of the destination index or data stream.namespace
(default=namespace
) a user-provided label to group telemetry. It is used to construct the name of the destination index or data stream.OpenSearch export supports standard HTTP client settings.
http.endpoint
(required) <url>:<port>
of OpenSearch node to send data to.Supports standard TLS settings as part of HTTP settings. See TLS Configuration/Client Settings.
retry_on_failure
: See retry_on_failuretimeout
: See timeoutbulk_action
(optional): the action for ingesting data. Only create
and index
are allowed here.
extensions:
basicauth/client:
client_auth:
username: username
password: password
exporters:
opensearch/trace:
http:
endpoint: https://opensearch.example.com:9200
auth:
authenticator: basicauth/client
# ······
service:
pipelines:
traces:
receivers: [otlp]
exporters: [opensearch/trace]
processors: [batch]