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

Commit c405277

Browse files
Merge pull request #2295 from splunk/bhillmer-fix-external-links
fix broken links
2 parents 77d9f08 + cf4049e commit c405277

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

alerts-detectors-notifications/alert-condition-reference/custom-threshold.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ When specifying compound conditions, AND conditions are applied before OR condit
2525

2626
.. note:: For a compound condition to trigger an alert, all the values involved in the condition must be non-null.
2727

28-
If you need to build more complex conditions than this alert condition supports, such as "a AND (b OR c) AND d", or "a AND NOT b", you can do so by using the :new-page:`Splunk Observability Cloud API <https://dev.splunk.com/observability/docs/detectors/detectors_events_alerts#Detectors>` to create the detector.
28+
If you need to build more complex conditions than this alert condition supports, such as "a AND (b OR c) AND d", or "a AND NOT b", you can do so by using the :new-page:`Splunk Observability Cloud API <https://dev.splunk.com/observability/docs/detectors/detector_examples>` to create the detector.
2929

3030

3131
.. _compare-signals:

alerts-detectors-notifications/create-detectors-for-alerts.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,12 @@ Create a detector using the API
8282

8383
Using the API to create a detector provides a number of capabilities that are not available in the UI, letting you build detectors with more advanced rules and conditions. You can view these detectors in the UI. The program text appears in place of the signals displayed in standard detectors.
8484

85-
- For general information on creating detectors using the API, see the :new-page:`Detect Anomalies with Detectors <https://dev.splunk.com/observability/docs/detectors/detectors_events_alerts/>` topic in the Splunk Observability Cloud Developer Guide.
85+
- For general information on creating detectors using the API, see the :new-page:`Detect Anomalies with Detectors <https://dev.splunk.com/observability/docs/detectors>` topic in the Splunk Observability Cloud Developer Guide.
8686

8787
- For information on using the UI to edit detectors created using the API, see :ref:`v2-detector-signalflow`.
8888

89-
.. note:: If a detector display includes a SignalFlow tab, you are viewing a detector created programmatically using the :new-page:`Splunk Observability Cloud Detectors API <https://dev.splunk.com/observability/reference/api/detectors/latest>`. If you are familiar with that API, you can use the detector display to view and edit the detector code and make changes to the detector rules.
89+
.. note:: If a detector display includes a SignalFlow tab, you are viewing a detector created programmatically using the :new-page:`Splunk Observability Cloud Detectors API <https://dev.splunk.com/observability/reference/api/detectors/latest>`. If you are familiar with that API, you can use the detector display to
90+
view and edit the detector code and make changes to the detector rules.
9091

9192

9293
.. _build-rules:

data-visualization/charts/chart-analytics-reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Functions reference for Splunk Observability Cloud
99

1010
You can run calculations on observability data and visualize the output in :ref:`charts <data-visualization-charts>` using :ref:`SignalFlow <get-started-signalflow>` analytics functions. To use analytics functions in your charts select :strong:`Add Analytics` in the :strong:`Plot Editor` tab.
1111

12-
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 <https://dev.splunk.com/observability/docs/signalflow/function_method_list>` topic in the Splunk Observability Cloud Developer Guide.
12+
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 <https://dev.splunk.com/observability/docs/signalflow>` topic in the Splunk Observability Cloud Developer Guide.
1313

1414
.. hlist::
1515
:columns: 3

sp-oncall/admin/get-started/custom-outbound-webhooks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ example, the condition occurs when the state_message contains the phrase “esca
135135

136136
In the “Transform these alert fields” portion, we'll create a new field called “vo-webhook-field” and populate it with part of the destination URL you're sending the webhook to.
137137

138-
In this example, the full destination URL we're hoping to send to is “https://dev.oscato.com/2tn6xfh” so we'll put “oscato.com” as the vo-webhook-field value.
138+
In this example, the full destination URL we're hoping to send to is “\https://dev.oscato.com/2tn6xfh” so we'll put “oscato.com” as the vo-webhook-field value.
139139

140140
Next, you'll navigate to Outgoing Webhooks under :guilabel:`Integrations`, then :guilabel:`Outgoing Webhooks`. Select :guilabel:`Add Webhook`.
141141

sp-oncall/spoc-integrations/hipchat-integration.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ by posting to this URL”. Copy this URL to your clipboard. The URL
125125
contains two items we will need to use in later parts of this article,
126126
the room ID and the authentication token. Find them in bold here:
127127

128-
https://**YOUR_DOMAIN**.hipchat.com/v2/room/**ROOM_ID**/notification?auth_token=\ **AUTH_TOKEN_HERE**
128+
\https://**YOUR_DOMAIN**.hipchat.com/v2/room/**ROOM_ID**/notification?auth_token=\ **AUTH_TOKEN_HERE**
129129

130130
Save your new custom integration.
131131

@@ -162,11 +162,10 @@ sending to multiple rooms based on alert type, you will need to replace
162162
the “room id” and “auth token” variables with the alert fields you
163163
created in the Rules Engine. For example:
164164

165-
https://**YOUR_DOMAIN**.hipchat.com/v2/room/:math:`{{ALERT.room\_id}}/notification?auth\_token=`\ {{ALERT.auth_token}}
165+
\https://**YOUR_DOMAIN**.hipchat.com/v2/room/:math:`{{ALERT.room\_id}}/notification?auth\_token=`\ {{ALERT.auth_token}}
166166

167167
For the payload section, you can add a number of different variables.
168-
For more information see the HipChat documentation
169-
`here <https://www.hipchat.com/docs/apiv2/method/send_room_notification>`__.
168+
For more information see the HipChat documentation.
170169
In our example we are sending a simple colored message that contains
171170
alert information found in the “entity_display_name” field.
172171

sp-oncall/spoc-integrations/new-twilio.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Requirements
2727

2828
- A Twilio account
2929
- Splunk On-Call Versions: Getting Started, Growth, or Enterprise
30-
- At this time, trial Twilio accounts require all phone numbers the integration might end up calling. Follow the phone number verification process for all Splunk On-Call VictorOps users' phone numbers. See :new-page:`https://support.twilio.com/hc/en-us/articles/223180048-Adding-a-Verified-Phone-Number-or-Caller-ID-with-Twilio`. To see how this integration works before verifying numbers or purchasing a Twilio phone number, contact Splunk On-Call Support.
30+
- At this time, trial Twilio accounts require all phone numbers the integration might end up calling. Follow the phone number verification process for all Splunk On-Call VictorOps users' phone numbers. Search "How to Add and Remove a Verified Phone Number or Caller ID with Twilio" in Twilio documentation. To see how this integration works before verifying numbers or purchasing a Twilio phone number, contact Splunk On-Call Support.
3131

3232
Twilio integration overview
3333
===============================
@@ -349,7 +349,7 @@ The caller hears "Trying next on-call representative, Trying next on-call repres
349349
This might be because a trial Twilio account is being used instead of a paid Twilio account. You have to verify phone numbers in Twilio before they can be
350350
called. Additionally, even with a paid Twilio account, phone numbers in certain countries (such as Slovakia) need to be verified in Twilio numbers before calling them.
351351

352-
To verify the numbers you're calling, follow the documented steps in :new-page:`Add a Verified Caller ID via the Console Site<https://support.twilio.com/hc/en-us/articles/223180048-Adding-a-verified-outbound-caller-ID-with-Twilio>`.
352+
To verify the numbers you're calling, search for "Add a Verified Caller ID via the Console Site" in Twillio documentaiton and follow the documented steps.
353353

354354
Problem 2: There is a missing configuration value. Please contact your administrator to fix the problem.
355355
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -404,7 +404,7 @@ This message means the team attempting to be notified either doesn't exist, or h
404404
This might be because a trial Twilio account is being used instead of a paid Twilio account. You have to verify phone numbers in Twilio before they can be
405405
called. Additionally, even with a paid Twilio account, phone numbers in certain countries (such as Slovakia) need to be verified in Twilio numbers before calling them.
406406

407-
To verify the numbers you're calling, follow the documented steps in :new-page:`Add a Verified Caller ID via the Console Site<https://support.twilio.com/hc/en-us/articles/223180048-Adding-a-verified-outbound-caller-ID-with-Twilio>`.
407+
To verify the numbers you're calling, search for "Add a Verified Caller ID via the Console Site" in Twilio documentation and follow the documented steps.
408408

409409
Problem 11: An application error has occurred. Goodbye.
410410
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

sp-oncall/spoc-integrations/splunking-victorops-data.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ all instance of <org_slug>.
456456
*Body*:
457457

458458
{ “sourcetype”: “\_json”, “event”: { “slug”: “<org_slug>”, “link”:
459-
“https://portal.victorops.com/client/<org_slug>/popoutIncident?incidentName=\ :math:`{{STATE.INCIDENT\_NAME}}", "type": "incident", "alertService": "`\ {{ALERT.service}}”,
459+
\https://portal.victorops.com/client/<org_slug>/popoutIncident?incidentName=\ :math:`{{STATE.INCIDENT\_NAME}}", "type": "incident", "alertService": "`\ {{ALERT.service}}”,
460460
“hostName”:
461461
:math:`{{ALERT.host\_name}}", "service": "`\ {{ALERT.service}}”,
462462
“ENTITY_TYPE”:

synthetics/test-config/private-locations.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,11 @@ In environments where direct internet access is restricted, you can route synthe
146146

147147
* HTTP_PROXY: Specifies the proxy server for HTTP traffic.
148148

149-
* Example: export HTTP_PROXY="http://proxy.example.com:8080"
149+
* Example: export HTTP_PROXY="\http://proxy.example.com:8080"
150150

151151
* HTTPS_PROXY: Specifies the proxy server for HTTPS traffic.
152152

153-
* Example: export HTTPS_PROXY="https://proxy.example.com:8443"
153+
* Example: export HTTPS_PROXY="\https://proxy.example.com:8443"
154154

155155
* NO_PROXY: Specifies a comma-separated list of domains or IP addresses that should bypass the proxy.
156156

@@ -165,7 +165,7 @@ For example, here is what a command might look like after you modify it to fit y
165165
166166
In this example:
167167

168-
HTTP_PROXY and HTTPS_PROXY are set to route traffic through a proxy at http://172.17.0.1:1234.
168+
HTTP_PROXY and HTTPS_PROXY are set to route traffic through a proxy at \http://172.17.0.1:1234.
169169

170170
NO_PROXY is configured to bypass the proxy for local addresses and specific domains like .signalfx.com and .amazonaws.com.
171171

0 commit comments

Comments
 (0)