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

Commit ef84cac

Browse files
Merge pull request #1711 from splunk/repo-sync
Pulling refs/heads/main into main
2 parents b3948e6 + 261ad19 commit ef84cac

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed
-36 KB
Loading

admin/references/system-limits/sys-limits-infra.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ Main system limits
7272
* - :ref:`number-of-input-mts-per-job`
7373
- 250,000
7474

75+
.. 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`.
76+
77+
7578
.. _charts-detectors-and-signalflow-limits:
7679

7780
Charts, detectors, and SignalFlow limits

gdi/opentelemetry/support-checklist.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ End-to-end architecture information
3636
Configuration files
3737
============================
3838

39-
* Kubernetes: Run ``kubectl get configmap my-configmap -o yaml >my-configmap.yaml`` to retrieve the logs.
39+
* Kubernetes: Run ``kubectl get configmap my-configmap -o yaml >my-configmap.yaml`` to retrieve the configuration map.
4040
* Linux: View the file at ``/etc/otel/collector``.
4141
* Windows: Configuration files are located inside the ``C:\ProgramData\Splunk\OpenTelemetry Collector`` directory.
4242

synthetics/test-config/auth.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,15 +220,15 @@ Some services may not be accessible during Synthetics tests due to violations of
220220

221221
#. Add a step of type :guilabel:`Go to url`, and in :guilabel:`URL`, enter the URL of the target's authentication page.
222222

223-
#. 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``.
223+
#. 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``.
224224

225225
.. note::
226226
In the script, set the variable url to the URL of your own virtual phone number's SMS service.
227227

228228
.. code-block:: javascript
229229
230230
function getOtp() {
231-
const url = "https://api.alfa.smartlook.cloud/sms";
231+
const url = "https://your-page.example.com/sms";
232232
var request = new XMLHttpRequest();
233233
request.open("GET", url, false);
234234
request.send();
@@ -307,7 +307,7 @@ Your email service must be accessible through an API. Some services may not be a
307307

308308
#. Add a step of type :guilabel:`Go to url`, and in :guilabel:`URL`, enter the URL of the target's authentication page.
309309

310-
#. 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``.
310+
#. 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``.
311311

312312
.. note::
313313
In the script, set the variable url to the URL of your own email inbox API endpoint.

0 commit comments

Comments
 (0)