diff --git a/data-visualization/charts/chart-analytics-reference.rst b/data-visualization/charts/chart-analytics-reference.rst index 0d6f92e2f..90be04cd9 100644 --- a/data-visualization/charts/chart-analytics-reference.rst +++ b/data-visualization/charts/chart-analytics-reference.rst @@ -1,15 +1,18 @@ .. _analytics-ref: ************************************************************ -Functions reference for Splunk Observability Cloud +Analytics reference for Splunk Observability Cloud ************************************************************ .. meta:: - :description: You can run calculations on Splunk observability data and visualize their output in charts using SignalFlow analytics functions. The following page describes each analytics function of SignalFlow. + :description: You can run calculations on Splunk observability data and visualize their output in charts using SignalFlow analytics methods. The following page describes each analytics method of SignalFlow. -You can run calculations on observability data and visualize the output in :ref:`charts ` using :ref:`SignalFlow ` analytics functions. To use analytics functions in your charts select :strong:`Add Analytics` in the :strong:`Plot Editor` tab. +Splunk Observability Cloud uses the analytics language SignalFlow to power all charts and detectors. You can run calculations on observability data and visualize the output in charts using SignalFlow analytics methods. To use analytics in your charts, select :guilabel:`Add Analytics` in the :guilabel:`Plot Editor` tab. + +Only SignalFlow methods are available in the chart builder view. To use SignalFlow functions, select :guilabel:`View SignalFlow` to see the SignalFlow program. For more information on writing SignalFlow programs, see the :new-page:`Analyze data using SignalFlow ` topic in the Splunk Observability Cloud Developer Guide. + +Use the following list to learn more about each SignalFlow analytics method, including sample calculations. -Use the following list to learn more about each SignalFlow analytics function, including sample calculations. To use analytics functions in SignalFlow programs, see the :new-page:`SignalFlow Functions and Methods ` topic in the Splunk Observability Cloud Developer Guide. .. hlist:: :columns: 3 diff --git a/gdi/get-data-in/application/otel-dotnet/troubleshooting/common-dotnet-troubleshooting.rst b/gdi/get-data-in/application/otel-dotnet/troubleshooting/common-dotnet-troubleshooting.rst index 1a14366dc..d943fcba3 100644 --- a/gdi/get-data-in/application/otel-dotnet/troubleshooting/common-dotnet-troubleshooting.rst +++ b/gdi/get-data-in/application/otel-dotnet/troubleshooting/common-dotnet-troubleshooting.rst @@ -245,6 +245,19 @@ To resolve this issue, :ref:`install the .NET instrumentation using the NuGet pa Alternatively, you can update to the latest version of .NET, as this reduces the likelihood of dependency version conflicts. +Fixing Assembly Permissions IIS +====================================== + +When using the .NET Framework with an IIS-hosted application, you might encounter crashes with an event similar to the following: + +.. code-block:: bash + + [Exception] System.IO.FileLoadException + [Message] "Loading this assembly would produce a different grant set from other instances." + +To resolve this issue, create a new ``DWARD`` value called ``LoaderOptimization`` and set its value to ``1`` under the registry key ``HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework``. +This allows different versions of the same application to load into different domains, though it might increase CPU and memory usage. + Uninstall the instrumentation ======================================