OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) | пре 1 година | |
---|---|---|
.. | ||
internal | пре 1 година | |
testdata | пре 2 година | |
Makefile | пре 2 година | |
README.md | пре 1 година | |
config.go | пре 1 година | |
config_test.go | пре 1 година | |
exporter.go | пре 1 година | |
exporter_test.go | пре 1 година | |
factory.go | пре 1 година | |
factory_test.go | пре 1 година | |
go.mod | пре 1 година | |
go.sum | пре 1 година | |
metadata.yaml | пре 1 година |
Status | |
---|---|
Stability | alpha: traces |
Distributions | contrib |
Issues | |
Code Owners | @jpkrohling, @hickeyma |
The Instana Exporter converts OpenTelemetry trace data and then sends it to the Instana Backend.
The following exporter configuration parameters are supported.
Parameter | Description |
---|---|
endpoint | The Instana backend endpoint that the Exporter connects to. It depends on your region and how it is hosted. It starts with https://serverless- for SaaS. Otherwise, it starts with https:// . It corresponds to the Instana environment variable INSTANA_ENDPOINT_URL |
agent_key | Your Instana Agent key. The same agent key can be used for host agents and serverless monitoring. It corresponds to the Instana environment variable INSTANA_AGENT_KEY |
tls/ca_file | [Optional] Certificate authority file for an Instana backend connection where the backend uses a self signed certificate. |
These parameters match the Instana Serverless Monitoring environment variables and can be found here.
The code snippet below shows how your configuration file should look like:
[...]
exporters:
instana:
endpoint: ${env:INSTANA_ENDPOINT_URL}
agent_key: ${env:INSTANA_AGENT_KEY}
[...]
service:
pipelines:
traces:
exporters: [instana]
[...]
receivers:
otlp:
protocols:
grpc:
http:
processors:
batch:
exporters:
instana:
endpoint: ${env:INSTANA_ENDPOINT_URL}
agent_key: ${env:INSTANA_AGENT_KEY}
tls:
ca_file: someCA.pem # Optional. Certificate authority file for Instana backend connection.
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [instana]