Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit e199d20

Browse files
Finished
1 parent 28b217b commit e199d20

File tree

6 files changed

+55
-3
lines changed

6 files changed

+55
-3
lines changed

gdi/opentelemetry/components.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,9 @@ The Splunk Distribution of OpenTelemetry Collector includes and supports the com
262262
* - :ref:`kafka-exporter` (``kafka``)
263263
- Exports metrics, logs, and traces to Kafka using a synchronous producer.
264264
- Metrics, logs, traces
265+
* - :ref:`loadbalancing-exporter` (``loadbalancing``)
266+
- Exports spans, metrics and logs depending on the ``routing_key`` configured.
267+
- Metrics, logs, traces
265268
* - :ref:`logging-exporter` (``logging``)
266269
- Exports data to the console. By default, ``logging`` doesn't send its output to Windows Event Viewer. Run the Splunk Distribution of OpenTelemetry Collector directly from the PowerShell terminal to send output to the Windows Event Viewer.
267270
- Metrics, logs, traces
@@ -271,6 +274,9 @@ The Splunk Distribution of OpenTelemetry Collector includes and supports the com
271274
* - :ref:`otlphttp-exporter` (``otlphttp``)
272275
- Exports data in OTLP format over the HTTP protocol.
273276
- Metrics, logs, traces
277+
* - :ref:`pulsar-exporter` (``pulsar``)
278+
- Exports logs, metrics, and traces to Pulsar.
279+
- Metrics, logs, traces -
274280
* - :ref:`signalfx-exporter` (``signalfx``)
275281
- Sends metrics, events, and trace correlation to Splunk Observability Cloud.
276282
- Logs (events), metrics, traces (trace to metric correlation only)
@@ -302,6 +308,8 @@ The Splunk Distribution of OpenTelemetry Collector includes and supports the com
302308
- Detects and reports container endpoints discovered through the Docker API. Only containers that are in the state of ``Running`` and not ``Paused`` emit endpoints.
303309
* - :ref:`ecs-observer-extension` (``ecs_observer``)
304310
- Uses the ECS and EC2 API to discover Prometheus scrape targets from all running tasks and filter them based on service names, task definitions, and container labels. Only compatible with the Prometheus receiver.
311+
* - :ref:`ecstask-observer-extension` (``ecs_task_observer``)
312+
- Detects and reports container endpoints for the running ECS task of which your Collector instance is a member.
305313
* - :ref:`file-storage-extension` (``file_storage``)
306314
- Persists state to the local file system. Requires read and write access to a diectory.
307315
* - :ref:`health-check-extension` (``health_check``)

gdi/opentelemetry/components/a-components-exporters.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ Collector components: Exporters
1414

1515
awss3-exporter
1616
file-exporter
17-
kafka-exporter
17+
kafka-exporter
18+
loadbalancing-exporter
1819
logging-exporter
1920
otlp-exporter
20-
otlphttp-exporter
21+
otlphttp-exporter
22+
pulsar-exporter
2123
signalfx-exporter
2224
splunk-apm-exporter
2325
splunk-hec-exporter
@@ -27,9 +29,11 @@ The following exporters are available in the Splunk Distribution of OpenTelemetr
2729
* :ref:`awss3-exporter`
2830
* :ref:`file-exporter`
2931
* :ref:`kafka-exporter`
32+
* :ref:`loadbalancing-exporter`
3033
* :ref:`logging-exporter`
3134
* :ref:`otlp-exporter`
32-
* :ref:`otlphttp-exporter`
35+
* :ref:`otlphttp-exporter`
36+
* :ref:`pulsar-exporter`
3337
* :ref:`signalfx-exporter`
3438
* :ref:`splunk-apm-exporter`
3539
* :ref:`splunk-hec-exporter`

gdi/opentelemetry/components/a-components-extensions.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Collector components: Extensions
1515
basic-auth-extension
1616
docker-observer-extension
1717
ecs-observer-extension
18+
ecstask-observer-extension
1819
file-storage-extension
1920
health-check-extension
2021
host-observer-extension
@@ -34,6 +35,7 @@ The following extensions are available:
3435
* :ref:`basic-auth-extension`
3536
* :ref:`docker-observer-extension`
3637
* :ref:`ecs-observer-extension`
38+
* :ref:`ecstask-observer-extension`
3739
* :ref:`file-storage-extension`
3840
* :ref:`health-check-extension`
3941
* :ref:`host-observer-extension`
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.. _ecstask-observer-extension:
2+
3+
**********************************
4+
ECS task observer extension
5+
**********************************
6+
7+
.. meta::
8+
:description: The ECS task observer extension detects and reports container endpoints for the running ECS task of which your Collector instance is a member.
9+
10+
The Splunk Distribution of the OpenTelemetry Collector supports the ECS task observer extension. Documentation is planned for a future release.
11+
12+
To find information about this component in the meantime, see :new-page:`ECS task observer extension <https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/observer/ecstaskobserver>` on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.. _loadbalancing-exporter:
2+
3+
****************************
4+
Load balancing exporter
5+
****************************
6+
7+
.. meta::
8+
:description: The load balancing exporter exports spans, metrics and logs depending on the routing_key configured.
9+
10+
The Splunk Distribution of the OpenTelemetry Collector supports the Load balancing exporter. Documentation is planned for a future release.
11+
12+
To find information about this component in the meantime, see :new-page:`Load balancing exporter <https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/loadbalancingexporter>` on GitHub.
13+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.. _pulsar-exporter:
2+
3+
****************************
4+
Pulsar exporter
5+
****************************
6+
7+
.. meta::
8+
:description: The Pulsar exporter exports logs, metrics, and traces to Pulsar.
9+
10+
The Splunk Distribution of the OpenTelemetry Collector supports the Pulsar exporter. Documentation is planned for a future release.
11+
12+
To find information about this component in the meantime, see :new-page:`Pulsar exporter <https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/loadbalancingexporter>` on GitHub.
13+

0 commit comments

Comments
 (0)