Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Binary file modified _images/synthetics/auth-basic-html-steps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions admin/references/system-limits/sys-limits-infra.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gdi/opentelemetry/support-checklist.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions synthetics/test-config/auth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ 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.

.. 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();
Expand Down Expand Up @@ -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.
Expand Down