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

Commit 34c9378

Browse files
Merge pull request #1747 from splunk/repo-sync
Pulling refs/heads/main into main
2 parents 9b81663 + 75b8df0 commit 34c9378

26 files changed

+1096
-178
lines changed

_images/gdi/AWS_PL_region1.jpg

75.1 KB
Loading

_images/gdi/AWS_PL_region1.png

50.2 KB
Loading

_images/gdi/AWS_PL_region2.png

150 KB
Loading

_images/gdi/AWS_PL_region3.png

60.8 KB
Loading

_images/logs/CreateUser.png

-5.41 KB
Loading

_includes/gdi/otel-receivers-table.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
* - :ref:`apache-spark-receiver` (``apachespark``)
1313
- Fetches metrics for an Apache Spark cluster through the Apache Spark REST API.
1414
- Metrics
15+
* - :ref:`activedirectory-ds-receiver` (``active_directory_ds``)
16+
- Metrics
17+
- Scrapes metrics relating to an Active Directory domain controller using the Windows Performance Counters.
1518
* - :ref:`awsecscontainermetrics-receiver` (``awsecscontainermetrics``)
1619
- Reads task metadata and docker stats from Amazon ECS and generates resource usage metrics.
1720
- Metrics

_includes/requirements/ios.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Splunk RUM for Mobile supports the following versions:
22

33
* iOS 15 and higher
4-
* iPadOS 13 and higher
4+
* iPadOS 15 and higher
55

66
Splunk RUM supports Apple Silicon.

gdi/get-data-in/application/go/configuration/advanced-go-otel-configuration.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The following settings are specific to the Splunk Distribution of OpenTelemetry
5353
* - ``SPLUNK_ACCESS_TOKEN``
5454
- A Splunk authentication token that lets exporters send data directly to Splunk Observability Cloud. Unset by default. Not required unless you need to send data to the Splunk Observability Cloud ingest endpoint. See :ref:`admin-tokens`.
5555
* - ``SPLUNK_REALM``
56-
- The name of your organization's realm, for example, ``us0``. When you set the realm, telemetry is sent directly to the ingest endpoint of Splunk Observability Cloud, bypassing the Splunk Distribution of OpenTelemetry Collector.
56+
- The name of your organization's realm, for example, ``us0``. When you set the realm, telemetry is sent directly to the ingest endpoint of Splunk Observability Cloud, bypassing the Splunk Distribution of OpenTelemetry Collector. This setting applies only to metrics and traces and does not work for logs.
5757
* - ``SPLUNK_TRACE_RESPONSE_HEADER_ENABLED``
5858
- Lets you add server trace information to HTTP response headers using the ``net/http`` instrumentation package. For more information, see :ref:`server-trace-information-go`. The default value is ``true``.
5959
* - ``OTEL_LOG_LEVEL``
@@ -104,6 +104,8 @@ The following settings control trace exporters and their endpoints:
104104
- The traces exporter to use. The default value is ``otlp``. Acceptable values are ``otlp`` and ``none``. Setting ``none`` deactivates trace exports.
105105
* - ``OTEL_METRICS_EXPORTER``
106106
- The metrics exporter to use. The default value is ``otlp``. Accepted values are ``otlp`` and ``none``. Setting ``none`` deactivates metric exports.
107+
* - ``OTEL_LOGS_EXPORTER``
108+
- The logs exporter to use. The default value is ``none``. Accepted values are ``otlp`` and ``none``. Setting ``none`` deactivates logs exports.
107109
* - ``OTEL_METRIC_EXPORT_INTERVAL``
108110
- Interval, in milliseconds, between the start of two export attempts. The default value is ``60000``.
109111
* - ``OTEL_METRIC_EXPORT_TIMEOUT``
@@ -114,7 +116,9 @@ The following settings control trace exporters and their endpoints:
114116
- The OTLP endpoint for traces. The default value is ``http://localhost:4317``.
115117
* - ``OTEL_EXPORTER_OTLP_METRICS_ENDPOINT``
116118
- The OTLP endpoint. The default value is ``http://localhost:4317``.
117-
119+
* - ``OTEL_EXPORTER_OTLP_LOGS_ENDPOINT``
120+
- The OTLP endpoint. The default value is ``http://localhost:4317``.
121+
118122
To send data directly to Splunk Observability Cloud, see :ref:`export-directly-to-olly-cloud-go`.
119123

120124
.. _trace-sampling-settings-go-otel:

gdi/get-data-in/application/go/instrumentation/instrument-go-application.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ The following example shows how to update a deployment to expose environment var
169169
Send data directly to Splunk Observability Cloud
170170
==================================================================
171171

172-
By default, all telemetry is sent to the local instance of the Splunk Distribution of OpenTelemetry Collector.
172+
By default, all telemetry is sent to the local OpenTelemetry Collector before being forwarded to Splunk Observability Cloud.
173+
It is also possible to send data directly to Splunk Observability Cloud without using the OpenTelemetry Collector.
174+
.. note:: Sending data directly to Splunk Observability Cloud is supported only for traces and metrics. Logs cannot be sent using this method.
173175

174176
If you need to send data directly to Splunk Observability Cloud, set the following environment variables:
175177

gdi/get-data-in/application/otel-dotnet/instrumentation/instrument-dotnet-application.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,19 +419,19 @@ To deploy the .NET zero-code instrumentation in Kubernetes, follow these steps:
419419

420420
.. code-block:: shell
421421
422-
splunk-launch.sh dotnet <application>.
422+
splunk-launch.sh dotnet <application>.
423423
424424
**For Windows:**
425425

426426
.. code-block:: powershell
427427
428-
splunk-launch.cmd dotnet <application>.
428+
splunk-launch.cmd dotnet <application>.
429429
430430
Example:
431431

432432
.. code-block:: docker
433433
434-
ENTRYPOINT ["./splunk-launch.sh", "dotnet", "myapp.dll"]
434+
ENTRYPOINT ["./splunk-launch.sh", "dotnet", "myapp.dll"]
435435
436436
#. Configure the Kubernetes Downward API to expose environment variables to Kubernetes resources. The following example demonstrates how to update a deployment to expose environment variables by adding the agent configuration under the ``.spec.template.spec.containers.env`` section:
437437

0 commit comments

Comments
 (0)