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

Commit d6e23cb

Browse files
authored
Merge pull request #2349 from splunk/repo-sync
Pulling refs/heads/main into main
2 parents e8d316b + 405d0f5 commit d6e23cb

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

gdi/get-data-in/rum/browser/install-rum-browser.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Opt out of error.message collection
226226
To avoid collecting ``error.message`` responses, deactivate the errors instrumentation as in the following example:
227227

228228
.. code-block:: html
229-
:emphasize-lines: 7
229+
:emphasize-lines: 8
230230

231231
<script src="https://cdn.signalfx.com/o11y-gdi-rum/latest/splunk-otel-web.js" crossorigin="anonymous"></script>
232232
<script>

gdi/get-data-in/serverless/aws/otel-lambda-layer/instrumentation/dotnet-lambdas.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can instrument a .NET AWS Lambda function to send traces to Splunk Observabi
1414
* :new-page:`OpenTelemetry.Instrumentation.AWS <https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWS>`
1515
* :new-page:`OpenTelemetry.Instrumentation.AWSLambda <https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda>`
1616
* :new-page:`OpenTelemetry.Instrumentation.Http <https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Http>`
17-
* :new-page:`OpenTelemetry.ResourceDetectors.AWS <https://www.nuget.org/packages/OpenTelemetry.ResourceDetectors.AWS>`
17+
* :new-page:`OpenTelemetry.Resources.AWS <https://www.nuget.org/packages/OpenTelemetry.Resources.AWS/>`
1818

1919
To instrument a .NET function in AWS Lambda for Splunk APM, follow these steps:
2020

@@ -26,7 +26,6 @@ To instrument a .NET function in AWS Lambda for Splunk APM, follow these steps:
2626
using OpenTelemetry;
2727
using OpenTelemetry.Exporter;
2828
using OpenTelemetry.Instrumentation.AWSLambda;
29-
using OpenTelemetry.ResourceDetectors.AWS;
3029
using OpenTelemetry.Resources;
3130
using OpenTelemetry.Trace;
3231
using System.Diagnostics;
@@ -72,8 +71,8 @@ To instrument a .NET function in AWS Lambda for Splunk APM, follow these steps:
7271
.ConfigureResource(configure => configure
7372
.AddService(serviceName, serviceVersion: "1.0.0")
7473
// Different resource detectors can be found at
75-
// https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.ResourceDetectors.AWS#usage
76-
.AddDetector(new AWSEBSResourceDetector()))
74+
// https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Resources.AWS#usage
75+
.AddAWSEBSDetector())
7776
.AddOtlpExporter(opts =>
7877
{
7978
opts.Endpoint = new Uri($"https://ingest.{realm}.signalfx.com/v2/trace/otlp");

synthetics/test-config/global-variables.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Define a global variables once, then you can use the variable across all of your
1212

1313
How can you use global variables?
1414
===================================
15-
Global variables are stored securely in the Splunk Synthetic Monitoring platform, but the keys and values of all global variables in your account are visible to all users with Manager or Administrator access.
15+
Global variables are stored securely in the Splunk Synthetic Monitoring platform, but the keys and values of all global variables in your account are visible to all users.
1616

1717
To preserve your account's security, don't use production credentials, real credit card information, or other sensitive data in global variables for your checks. Instead, try using placeholder credentials to test workflows that require information to be entered during a test.
1818

@@ -26,9 +26,6 @@ When you :strong:`conceal` a global variable, its value is permanently concealed
2626

2727
To preserve security, the value of a concealed global variable is never revealed to any user of the account after it has been created and saved. The value is scrubbed from the Splunk Synthetic Monitoring UI, from test results, and from alert messages.
2828

29-
Prerequisites
30-
================
31-
You need administrator access in Splunk Synthetic Monitoring to create and reference global variables.
3229

3330
Create a global variable
3431
===============================

synthetics/test-config/private-locations.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,6 @@ When using runner, it's important to correctly configure the proxy settings to a
190190

191191
- By default, the runner will set the ``NO_PROXY`` variable in the Dockerfile to include ``127.0.0.1``. If you override ``NO_PROXY``, you must ensure that ``127.0.0.1`` and ``localhost`` are still present, or browser tests may fail.
192192

193-
4. :strong:`Startup Check`:
194-
195-
- The runner includes a startup check to validate that ``NO_PROXY`` contains ``127.0.0.1`` and ``localhost``. If these are missing, you might encounter unexpected behavior in test execution.
196-
197193

198194

199195

0 commit comments

Comments
 (0)