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

Commit a21f86d

Browse files
authored
Merge pull request #2576 from splunk/repo-sync
Pulling refs/heads/main into main
2 parents 9dde196 + f231c26 commit a21f86d

File tree

2 files changed

+14
-59
lines changed

2 files changed

+14
-59
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,46 +26,46 @@ The following runtime metrics are automatically collected and exported:
2626
* - Metric
2727
- Type
2828
- Description
29-
* - ``runtime.go.cgo.calls`` (Experimental)
29+
* - ``process.runtime.go.cgo.calls`` (Experimental)
3030
- Gauge
3131
- Number of cgo calls made by the current process.
32-
* - ``runtime.go.gc.count`` (Experimental)
32+
* - ``process.runtime.go.gc.count`` (Experimental)
3333
- Cumulative counter
3434
- Number of completed garbage collection cycles
35-
* - ``runtime.go.gc.pause_ns`` (Experimental)
35+
* - ``process.runtime.go.gc.pause_ns`` (Experimental)
3636
- Cumulative counter (histogram)
3737
- Amount of nanoseconds in GC stop-the-world pauses
38-
* - ``runtime.go.gc.pause_total_ns`` (Experimental)
38+
* - ``process.runtime.go.gc.pause_total_ns`` (Experimental)
3939
- Cumulative counter
4040
- Cumulative nanoseconds in GC stop-the-world pauses since the program started
41-
* - ``runtime.go.goroutines`` (Experimental)
41+
* - ``process.runtime.go.goroutines`` (Experimental)
4242
- Gauge
4343
- Number of goroutines that currently exist
44-
* - ``runtime.go.lookups`` (Experimental)
44+
* - ``process.runtime.go.lookups`` (Experimental)
4545
- Cumulative counter
4646
- Number of pointer lookups performed by the runtime
47-
* - ``runtime.go.mem.heap_alloc`` (Experimental)
47+
* - ``process.runtime.go.mem.heap_alloc`` (Experimental)
4848
- Gauge
4949
- Bytes of allocated heap objects
50-
* - ``runtime.go.mem.heap_idle`` (Experimental)
50+
* - ``process.runtime.go.mem.heap_idle`` (Experimental)
5151
- Gauge
5252
- Bytes in idle (unused) spans
53-
* - ``runtime.go.mem.heap_inuse`` (Experimental)
53+
* - ``process.runtime.go.mem.heap_inuse`` (Experimental)
5454
- Gauge
5555
- Bytes in in-use spans
56-
* - ``runtime.go.mem.heap_objects`` (Experimental)
56+
* - ``process.runtime.go.mem.heap_objects`` (Experimental)
5757
- Gauge
5858
- Number of allocated heap objects
59-
* - ``runtime.go.mem.heap_released`` (Experimental)
59+
* - ``process.runtime.go.mem.heap_released`` (Experimental)
6060
- Gauge
6161
- Bytes of idle spans whose physical memory has been returned to the OS
62-
* - ``runtime.go.mem.heap_sys`` (Experimental)
62+
* - ``process.runtime.go.mem.heap_sys`` (Experimental)
6363
- Gauge
6464
- Bytes of heap memory obtained from the OS
65-
* - ``runtime.go.mem.live_objects`` (Experimental)
65+
* - ``process.runtime.go.mem.live_objects`` (Experimental)
6666
- Gauge
6767
- Number of live objects is the number of cumulative Mallocs - Frees
68-
* - ``runtime.uptime`` (Experimental)
68+
* - ``process.runtime.uptime`` (Experimental)
6969
- Cumulative counter
7070
- Milliseconds since application was initialized
7171

gdi/opentelemetry/collector-windows/deployments-windows-chef.rst

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -48,51 +48,6 @@ To install the Collector, include the ``splunk_otel_collector::default`` recipe
4848
}
4949
}
5050
51-
Configure automatic discovery for SignalFx .NET
52-
=================================================================
53-
54-
You can automatically instrument your .NET applications along with the Collector installation using automatic discovery. Automatic discovery removes the need to install and configure the SignalFx .NET agent separately. See :ref:`discovery_mode` for more information.
55-
56-
The cookbook accepts the attributes described in the following table:
57-
58-
.. list-table::
59-
:widths: 20 50 30
60-
:header-rows: 1
61-
62-
* - Name
63-
- Description
64-
- Default value
65-
* - ``with_signalfx_dotnet_instrumentation``
66-
- Whether to install or manage automatic discovery for .NET. When set to ``true``, the ``signalfx-dotnet-tracing`` MSI package will be downloaded and installed, and the Windows registry will be updated based on other configuration options. To learn more, see :ref:`windows-backend-auto-discovery`
67-
- ``false``
68-
* - ``signalfx_dotnet_auto_instrumentation_version``
69-
- Version of the ``signalfx-dotnet-tracing`` MSI package to download and install.
70-
- ``1.1.0``
71-
* - ``signalfx_dotnet_auto_instrumentation_msi_url``
72-
- Specify the URL to download the MSI from a custom host, for example ``https://my.host/signalfx-dotnet-tracing-1.0.0-x64.msi``. If specified, the ``signalfx_dotnet_auto_instrumentation_version`` option is ignored.
73-
- ``https://github.com/signalfx/signalfx-dotnet-tracing/releases/download/v{{ signalfx_dotnet_auto_instrumentation_version }}/signalfx-dotnet-tracing-{{ signalfx_dotnet_auto_instrumentation_version }}-x64.msi``
74-
* - ``signalfx_dotnet_auto_instrumentation_iisreset``
75-
- By default, the ``iisreset.exe`` command will be executed after installation/configuration in order for any changes to take effect for IIS applications. Set this option to ``false`` to skip this step if IIS is managed separately or is not applicable.
76-
- ``false``
77-
* - ``signalfx_dotnet_auto_instrumentation_system_wide``
78-
- Whether to configure automatic discovery for all .NET applications on the node. When set to ``true``, all attributes and environment variables are added to the ``HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment`` registry key.
79-
- ``false``
80-
* - ``signalfx_dotnet_auto_instrumentation_environment``
81-
- Sets the deployment environment variable that is reported to Splunk APM, for example ``production``. The value is assigned to the ``SIGNALFX_ENV`` environment variable in the Windows registry.
82-
- ``''``
83-
* - ``signalfx_dotnet_auto_instrumentation_service_name``
84-
- Sets the service name for the instrumented application, for example, ``my-service``. The value is assigned to the ``SIGNALFX_SERVICE_NAME`` environment variable in the Windows registry.
85-
- ``''``
86-
* - ``signalfx_dotnet_auto_instrumentation_enable_profiler``
87-
- Activates or deactivates AlwaysOn Profiling. The value will be assigned to the ``SIGNALFX_PROFILER_ENABLED`` environment variable in the Windows registry.
88-
- ``false``
89-
* - ``signalfx_dotnet_auto_instrumentation_enable_profiler_memory``
90-
- Activates or deactivates AlwaysOn Memory Profiling. The value will be assigned to the ``SIGNALFX_PROFILER_MEMORY_ENABLED`` environment variable in the Windows registry.
91-
- ``false``
92-
* - ``signalfx_dotnet_auto_instrumentation_additional_options``
93-
- Hash of additional options to be added to the Windows registry in addition to the options above. To learn more, see :ref:`advanced-dotnet-configuration`.
94-
- ``{}``
95-
9651
Additional environment variables
9752
======================================================
9853

0 commit comments

Comments
 (0)