Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,6 @@ It only appears on front-end transactions.

|====
|Label |`View user internally`
|Link |`https://internal-site.company.com/user/{{user.email}}`
|Link |`https://example.com/user/{{user.email}}`
|Filters |`service.name:client`
|====
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For example:
[source,yaml]
------------------------------------------------------------------------------
output.logstash:
hosts: ["logs.mycompany.com:5044"]
hosts: ["logs.example.com:5044"]
ssl.certificate_authorities: ["/etc/ca.crt"]
ssl.certificate: "/etc/client.crt"
ssl.key: "/etc/client.key"
Expand Down Expand Up @@ -103,7 +103,7 @@ The following example uses the IP address rather than the hostname to validate t
curl -v --cacert ca.crt https://192.168.99.100:5044
------------------------------------------------------------------------------

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.
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.

[source,shell]
------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ object to initialize the agent:

[source,html]
----
<script src="https://<your-cdn-host>.com/path/to/elastic-apm-rum.umd.min-<version>.js" crossorigin></script>
<script src="<YOUR_URL>/path/to/elastic-apm-rum.umd.min-<VERSION>.js" crossorigin></script>
<script>
elasticApm.init({
serviceName: '<instrumented-app>',
Expand All @@ -632,7 +632,7 @@ resources on the page, however, it will still block browsers `onload` event.
var j = d.createElement(s),
t = d.getElementsByTagName(s)[0]

j.src = 'https://<your-cdn-host>.com/path/to/elastic-apm-rum.umd.min-<version>.js'
j.src = '<YOUR_URL>/path/to/elastic-apm-rum.umd.min-<VERSION>.js'
j.onload = function() {elasticApm.init(c)}
t.parentNode.insertBefore(j, t)
})(document, 'script', {serviceName: '<instrumented-app>', serverUrl: '<apm-server-url>'})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ a| The HTTP proxy URL. This setting is optional.
*Example*:

[source,yaml]
http://proxy.mydomain.com:3128
http://example.com:3128

////////////////////////
username
Expand Down Expand Up @@ -114,7 +114,7 @@ Set `response.include_body_max_bytes` to control the maximum size of the stored
check
////////////////////////
| [[monitor-http-check]] *`check`*
a|
a|
////////////////////////
// check.request
////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion docs/en/shared/install-apm-agents/content.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ and host the file on your Server/CDN before deploying to production.

[source,js]
----
<script src="https://your-cdn-host.com/path/to/elastic-apm-rum.umd.min.js" crossorigin></script>
<script src="<YOUR_URL>/path/to/elastic-apm-rum.umd.min-<VERSION>.js" crossorigin></script>
<script>
elasticApm.init({
serviceName: 'your-app-name',
Expand Down