OpenTelemetry Bot d680729c09 [chore] Prepare release 0.90.0 (#29543) | hace 1 año | |
---|---|---|
.. | ||
internal | hace 1 año | |
testdata | hace 2 años | |
Makefile | hace 5 años | |
README.md | hace 1 año | |
config.go | hace 1 año | |
config_test.go | hace 1 año | |
doc.go | hace 1 año | |
factory.go | hace 1 año | |
factory_test.go | hace 1 año | |
go.mod | hace 1 año | |
go.sum | hace 1 año | |
metadata.yaml | hace 1 año | |
receiver.go | hace 1 año | |
receiver_test.go | hace 1 año | |
signalfxv2_event_to_logdata.go | hace 1 año | |
signalfxv2_event_to_logdata_test.go | hace 1 año |
Status | |
---|---|
Stability | beta: metrics, logs |
Distributions | contrib, splunk, sumo |
Issues | |
Code Owners | @dmitryax |
The SignalFx receiver accepts:
The following settings are required:
endpoint
(default = 0.0.0.0:9943
): Address and port that the SignalFx
receiver should bind to.The following settings are optional:
access_token_passthrough
: (default = false
) Whether to preserve incoming
access token (X-Sf-Token
header value) as
"com.splunk.signalfx.access_token"
metric resource attribute. Should only be
used in tandem with identical configuration option for SignalFx
exporter to preserve datapoint
origin. Usage of any other exporter in a metric pipeline with this configuration
option enabled will reveal all organization access tokens contained in this attribute.tls_settings
(no default): This is an optional object used to specify if
TLS should be used for incoming connections. Both key_file
and cert_file
are required to support incoming TLS connections.
cert_file
: Specifies the certificate file to use for TLS connection.key_file
: Specifies the key file to use for TLS connection.Example:
receivers:
signalfx:
signalfx/advanced:
access_token_passthrough: true
tls:
cert_file: /test.crt
key_file: /test.key
The full list of settings exposed for this receiver are documented here with detailed sample configurations here.
:warning: When enabling the SignalFx receiver or exporter, configure both the
metrics
andlogs
pipelines.
service:
pipelines:
metrics:
receivers: [signalfx]
processors: [memory_limiter, batch]
exporters: [signalfx]
logs:
receivers: [signalfx]
processors: [memory_limiter, batch]
exporters: [signalfx]