Skip to content

Commit

Permalink
Merge pull request #897 from splunk/repo-sync
Browse files Browse the repository at this point in the history
Pulling refs/heads/main into main
  • Loading branch information
theletterf authored Sep 7, 2023
2 parents 5ecd53d + dc672f2 commit 914a494
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ The Splunk Distribution of OpenTelemetry .NET can collect the following runtime
* - ``process.runtime.dotnet.gc.committed_memory.size``
- Gauge
- Amount of committed virtual memory for the managed GC heap, as observed during the last garbage collection. Only available for .NET 6 and higher.
* - ``process.runtime.dotnet.gc.duration``
- Cumulative counter
- The total amount of time paused in GC since the process start. Only available for .NET 7 and higher.
* - ``process.runtime.dotnet.monitor.lock_contention.count``
- Cumulative counter
- Contentions count when trying to acquire a monitor lock since the process started.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Traces instrumentations
* - ASP.NET Core
- See :ref:`dotnet-otel-versions`
- ``ASPNETCORE``
* - Azure SDK |br| (Not supported on .NET Framework)
* - Azure SDK
- ``Azure.`` prefixed packages, released after October 1, 2021
- ``AZURE``
* - Elastic.Clients.Elasticsearch
Expand Down Expand Up @@ -73,7 +73,7 @@ Traces instrumentations
- 2.0.0 and higher
- ``MYSQLCONNECTOR``
* - MySql.Data |br| (Not supported on .NET Framework)
- 6.10.7 to 8.0.32
- 8.1.0 and higher
- ``MYSQLDATA``
* - Npgsql
- 6.0.0 and higher
Expand All @@ -90,7 +90,7 @@ Traces instrumentations
* - StackExchange.Redis |br| (Not supported on .NET Framework)
- 2.0.405 to 3.0.0
- ``STACKEXCHANGEREDIS``
* - System.ServiceModel |br| (Not supported on .NET Framework)
* - System.ServiceModel |br| (Service side not supported on .NET)
- 4.7.0 and higher |br| of ``System.ServiceModel.Primitives``
- ``WCFCLIENT`` for client side instrumentation and |br| ``WCFSERVICE`` for service side instrumentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To create custom spans and traces, follow these steps:

.. code:: xml
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.2" />
3. Create an ``ActivitySource`` instance:

Expand Down Expand Up @@ -56,7 +56,7 @@ To create custom metrics, follow these steps:

.. code:: xml
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="7.0.2" />
2. Create a ``Meter`` instance:

Expand Down

0 comments on commit 914a494

Please sign in to comment.