Skip to content

Commit eeb3d1f

Browse files
replace placeholder URLs (#4957)
1 parent 3373e06 commit eeb3d1f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

docs/en/observability/apm/act-on-data/custom-links.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,6 @@ It only appears on front-end transactions.
216216

217217
|====
218218
|Label |`View user internally`
219-
|Link |`https://internal-site.company.com/user/{{user.email}}`
219+
|Link |`https://example.com/user/{{user.email}}`
220220
|Filters |`service.name:client`
221221
|====

docs/en/observability/apm/shared-ssl-logstash-config.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For example:
2929
[source,yaml]
3030
------------------------------------------------------------------------------
3131
output.logstash:
32-
hosts: ["logs.mycompany.com:5044"]
32+
hosts: ["logs.example.com:5044"]
3333
ssl.certificate_authorities: ["/etc/ca.crt"]
3434
ssl.certificate: "/etc/client.crt"
3535
ssl.key: "/etc/client.key"
@@ -103,7 +103,7 @@ The following example uses the IP address rather than the hostname to validate t
103103
curl -v --cacert ca.crt https://192.168.99.100:5044
104104
------------------------------------------------------------------------------
105105

106-
Validation for this test fails because the certificate is not valid for the specified IP address. It's only valid for the `logs.mycompany.com`, the hostname that appears in the Subject field of the certificate.
106+
Validation for this test fails because the certificate is not valid for the specified IP address. It's only valid for the `logs.example.com`, the hostname that appears in the Subject field of the certificate.
107107

108108
[source,shell]
109109
------------------------------------------------------------------------------

docs/en/observability/apm/tab-widgets/install-agents.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ object to initialize the agent:
611611
612612
[source,html]
613613
----
614-
<script src="https://<your-cdn-host>.com/path/to/elastic-apm-rum.umd.min-<version>.js" crossorigin></script>
614+
<script src="<YOUR_URL>/path/to/elastic-apm-rum.umd.min-<VERSION>.js" crossorigin></script>
615615
<script>
616616
elasticApm.init({
617617
serviceName: '<instrumented-app>',
@@ -632,7 +632,7 @@ resources on the page, however, it will still block browsers `onload` event.
632632
var j = d.createElement(s),
633633
t = d.getElementsByTagName(s)[0]
634634
635-
j.src = 'https://<your-cdn-host>.com/path/to/elastic-apm-rum.umd.min-<version>.js'
635+
j.src = '<YOUR_URL>/path/to/elastic-apm-rum.umd.min-<VERSION>.js'
636636
j.onload = function() {elasticApm.init(c)}
637637
t.parentNode.insertBefore(j, t)
638638
})(document, 'script', {serviceName: '<instrumented-app>', serverUrl: '<apm-server-url>'})

docs/en/observability/synthetics-reference/lightweight-config/http.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ a| The HTTP proxy URL. This setting is optional.
3838
*Example*:
3939

4040
[source,yaml]
41-
http://proxy.mydomain.com:3128
41+
http://example.com:3128
4242

4343
////////////////////////
4444
username
@@ -114,7 +114,7 @@ Set `response.include_body_max_bytes` to control the maximum size of the stored
114114
check
115115
////////////////////////
116116
| [[monitor-http-check]] *`check`*
117-
a|
117+
a|
118118
////////////////////////
119119
// check.request
120120
////////////////////////

docs/en/shared/install-apm-agents/content.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ and host the file on your Server/CDN before deploying to production.
454454
455455
[source,js]
456456
----
457-
<script src="https://your-cdn-host.com/path/to/elastic-apm-rum.umd.min.js" crossorigin></script>
457+
<script src="<YOUR_URL>/path/to/elastic-apm-rum.umd.min-<VERSION>.js" crossorigin></script>
458458
<script>
459459
elasticApm.init({
460460
serviceName: 'your-app-name',

0 commit comments

Comments
 (0)