diff --git a/_images/synthetics/auth-basic-html-steps.png b/_images/synthetics/auth-basic-html-steps.png
index 85e334729..b6dda49ba 100644
Binary files a/_images/synthetics/auth-basic-html-steps.png and b/_images/synthetics/auth-basic-html-steps.png differ
diff --git a/admin/references/system-limits/sys-limits-infra.rst b/admin/references/system-limits/sys-limits-infra.rst
index 29b83f2a4..14f773816 100644
--- a/admin/references/system-limits/sys-limits-infra.rst
+++ b/admin/references/system-limits/sys-limits-infra.rst
@@ -72,6 +72,9 @@ Main system limits
* - :ref:`number-of-input-mts-per-job`
- 250,000
+.. note:: In most cases, you should use the default system limits. To adjust the limit values for your org, contact Splunk Observability Cloud Support. See :ref:`support`.
+
+
.. _charts-detectors-and-signalflow-limits:
Charts, detectors, and SignalFlow limits
diff --git a/gdi/opentelemetry/support-checklist.rst b/gdi/opentelemetry/support-checklist.rst
index 5ad9aa602..41cea431f 100644
--- a/gdi/opentelemetry/support-checklist.rst
+++ b/gdi/opentelemetry/support-checklist.rst
@@ -36,7 +36,7 @@ End-to-end architecture information
Configuration files
============================
-* Kubernetes: Run ``kubectl get configmap my-configmap -o yaml >my-configmap.yaml`` to retrieve the logs.
+* Kubernetes: Run ``kubectl get configmap my-configmap -o yaml >my-configmap.yaml`` to retrieve the configuration map.
* Linux: View the file at ``/etc/otel/collector``.
* Windows: Configuration files are located inside the ``C:\ProgramData\Splunk\OpenTelemetry Collector`` directory.
diff --git a/synthetics/test-config/auth.rst b/synthetics/test-config/auth.rst
index 3dbb3571a..e28749dab 100644
--- a/synthetics/test-config/auth.rst
+++ b/synthetics/test-config/auth.rst
@@ -220,7 +220,7 @@ Some services may not be accessible during Synthetics tests due to violations of
#. Add a step of type :guilabel:`Go to url`, and in :guilabel:`URL`, enter the URL of the target's authentication page.
-#. Add a step of type :guilabel:`Save return value from JavaScript`, and in the code field, paste the following JavaScript. This script retrieves data from a specified URL using ``XMLHttpRequest`` and extracts the OTP from that data. You configure your test to save this OTP in a global variable named ``otp``.
+#. Add a step of type :guilabel:`Save return value from JavaScript`, and in the :guilabel:`code` field, paste the following JavaScript. This script retrieves data from a specified URL using ``XMLHttpRequest`` and extracts the OTP from that data. You configure your test to save this OTP in a global variable named ``otp``.
.. note::
In the script, set the variable url to the URL of your own virtual phone number's SMS service.
@@ -228,7 +228,7 @@ Some services may not be accessible during Synthetics tests due to violations of
.. code-block:: javascript
function getOtp() {
- const url = "https://api.alfa.smartlook.cloud/sms";
+ const url = "https://your-page.example.com/sms";
var request = new XMLHttpRequest();
request.open("GET", url, false);
request.send();
@@ -307,7 +307,7 @@ Your email service must be accessible through an API. Some services may not be a
#. Add a step of type :guilabel:`Go to url`, and in :guilabel:`URL`, enter the URL of the target's authentication page.
-#. Add a step of type :guilabel:`Save return value from JavaScript`, and in the code field, paste the following JavaScript. This script retrieves data from a specified URL using ``XMLHttpRequest`` and extracts the OTP from that data. You configure your test to save this OTP in a custom variable named ``otp``.
+#. Add a step of type :guilabel:`Save return value from JavaScript`, and in the :guilabel:`code` field, paste the following JavaScript. This script retrieves data from a specified URL using ``XMLHttpRequest`` and extracts the OTP from that data. You configure your test to save this OTP in a custom variable named ``otp``.
.. note::
In the script, set the variable url to the URL of your own email inbox API endpoint.