You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[exporter/signalfx] Add option to send histograms in OTLP format (open-telemetry#31197)
**Description:**
This PR introduces a new config `send_otlp_histograms` to the `signalfx`
exporter. When the option is enabled. the exporter will send histograms
in OTLP format to the Splunk Observability backend.
**Link to tracking Issue:**
[26298](open-telemetry#26298)
Copy file name to clipboardExpand all lines: exporter/signalfxexporter/README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,8 @@ will be replaced with a `_`.
145
145
api_tls:
146
146
ca_file: "/etc/opt/certs/ca.pem"
147
147
```
148
-
- `drop_histogram_buckets`: (default = `false`) if set to true, histogram buckets will not be translated into datapoints with `_bucket` suffix but will be dropped instead, only datapoints with `_sum`, `_count`, `_min` (optional) and `_max` (optional) suffixes will be sent.
148
+
- `drop_histogram_buckets`: (default = `false`) if set to true, histogram buckets will not be translated into datapoints with `_bucket` suffix but will be dropped instead, only datapoints with `_sum`, `_count`, `_min` (optional) and `_max` (optional) suffixes will be sent. Please note that this option does not apply to histograms sent in OTLP format with `send_otlp_histograms` enabled.
149
+
- `send_otlp_histograms`: (default: `false`) if set to true, any histogram metrics receiver by the exporter will be sent to Splunk Observability backend in OTLP format without conversion to SignalFx format. This can only be enabled if the Splunk Observability environment (realm) has the new Histograms feature rolled out. Please note that histograms sent in OTLP format do not apply to the exporter configurations `include_metrics` and `exclude_metrics`.
149
150
In addition, this exporter offers queued retry which is enabled by default.
150
151
Information about queued retry configuration parameters can be found
0 commit comments