Skip to content

Commit 22c1109

Browse files
update apm links (#1601)
1 parent 022e2b9 commit 22c1109

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

docs/reference/agent-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ It’s possible to call this function multiple times within the scope of the sam
6464
The given `context` argument must be an object and can contain any property that can be JSON encoded.
6565

6666
::::{tip}
67-
Before using custom context, ensure you understand the different types of [metadata](docs-content://solutions/observability/apps/elastic-apm-events-intake-api.md#apm-api-metadata-overview) that are available.
67+
Before using custom context, ensure you understand the different types of [metadata](docs-content://solutions/observability/apm/elastic-apm-events-intake-api.md#apm-api-metadata-overview) that are available.
6868
::::
6969

7070

@@ -80,7 +80,7 @@ Set labels on transactions and errors. Starting with APM Server 7.6+, the labels
8080
Labels are key/value pairs that are indexed by Elasticsearch and therefore searchable (as opposed to data set via [`apm.setCustomContext()`](#apm-set-custom-context)). You can set multiple labels.
8181

8282
::::{tip}
83-
Before using custom labels, ensure you understand the different types of [metadata](docs-content://solutions/observability/apps/elastic-apm-events-intake-api.md#apm-api-metadata-overview) that are available.
83+
Before using custom labels, ensure you understand the different types of [metadata](docs-content://solutions/observability/apm/elastic-apm-events-intake-api.md#apm-api-metadata-overview) that are available.
8484
::::
8585

8686

docs/reference/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ To disable `user-interaction` transactions, add `eventtarget` or `click` to thi
104104

105105
The environment where the service being monitored is deployed, e.g. "production", "development", "test", etc.
106106

107-
Environments allow you to easily filter data on a global level in the APM app. It’s important to be consistent when naming environments across agents. See [environment selector](docs-content://solutions/observability/apps/filter-application-data.md#apm-filter-your-data-service-environment-filter) in the APM app for more information.
107+
Environments allow you to easily filter data on a global level in the APM app. It’s important to be consistent when naming environments across agents. See [environment selector](docs-content://solutions/observability/apm/filter-data.md#apm-filter-your-data-service-environment-filter) in the APM app for more information.
108108

109109
::::{note}
110110
This feature is fully supported in the APM app in Kibana versions >= 7.2. You must use the query bar to filter for a specific environment in versions prior to 7.2.
@@ -265,7 +265,7 @@ Currently, only [transaction sample rate](#transaction-sample-rate) can be confi
265265

266266

267267
::::{note}
268-
This feature requires APM Server v7.5 or later. More information is available in [APM Agent configuration](docs-content://solutions/observability/apps/apm-agent-central-configuration.md).
268+
This feature requires APM Server v7.5 or later. More information is available in [APM Agent configuration](docs-content://solutions/observability/apm/apm-agent-central-configuration.md).
269269
::::
270270

271271

docs/reference/configuring-cors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mapped_pages:
77

88
If APM Server is deployed in an origin different than the page’s origin, you will need to configure Cross-Origin Resource Sharing (CORS).
99

10-
A list of permitted origins can be supplied to the [`apm-server.rum.allow_origins`](docs-content://solutions/observability/apps/configure-real-user-monitoring-rum.md#apm-rum-allow-origins) configuration option. By default, APM Server allows all origins.
10+
A list of permitted origins can be supplied to the [`apm-server.rum.allow_origins`](docs-content://solutions/observability/apm/configure-real-user-monitoring-rum.md#apm-rum-allow-origins) configuration option. By default, APM Server allows all origins.
1111

1212

1313
## How CORS works [_how_cors_works]

docs/reference/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ The agent uses browser timing APIs such as [Navigation Timing](https://w3c.githu
3636

3737
## Additional Components [additional-components]
3838

39-
APM Agents work in conjunction with the [APM Server](docs-content://reference/apm/observability/apm.md), [Elasticsearch](docs-content://get-started/index.md), and [Kibana](docs-content://get-started/the-stack.md). The [APM Guide](docs-content://reference/apm/observability/apm.md) provides details on how these components work together, and provides a matrix outlining [Agent and Server compatibility](docs-content://solutions/observability/apps/apm-agent-compatibility.md).
39+
APM Agents work in conjunction with the [APM Server](docs-content://reference/apm/observability/apm.md), [Elasticsearch](docs-content://get-started/index.md), and [Kibana](docs-content://get-started/the-stack.md). The [APM Guide](docs-content://reference/apm/observability/apm.md) provides details on how these components work together, and provides a matrix outlining [Agent and Server compatibility](docs-content://solutions/observability/apm/apm-agent-compatibility.md).
4040

docs/reference/set-up-apm-real-user-monitoring-javascript-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mapped_pages:
55

66
# Set up the APM Real User Monitoring JavaScript Agent [getting-started]
77

8-
To start reporting your web page performance to Elastic APM, you must first [enable the RUM endpoint](docs-content://solutions/observability/apps/configure-real-user-monitoring-rum.md) in your `apm-server` configuration.
8+
To start reporting your web page performance to Elastic APM, you must first [enable the RUM endpoint](docs-content://solutions/observability/apm/configure-real-user-monitoring-rum.md) in your `apm-server` configuration.
99

1010
Once the APM Server endpoint has been configured, you can:
1111

docs/reference/source-maps.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ mapped_pages:
77

88
Minifying JavaScript bundles is a common practice in production as it can improve the load time and network latency of your application. However, minified code by itself can be hard to debug. For this reason, Elastic APM supports source maps. A source map is a file that maps minified files back to the original source code, allowing you to maintain the speed advantage of minified code, without losing the ability to quickly and easily debug your applications.
99

10-
There are three steps required to enable, upload, and apply a source map to error stack traces. An overview is listed below, and a complete walk-through is available in the [generate and upload a source map](docs-content://solutions/observability/apps/create-upload-source-maps-rum.md) guide.
10+
There are three steps required to enable, upload, and apply a source map to error stack traces. An overview is listed below, and a complete walk-through is available in the [generate and upload a source map](docs-content://solutions/observability/apm/create-upload-source-maps-rum.md) guide.
1111

1212
1. Set the [`serviceVersion`](/reference/configuration.md#service-version) when initializing the RUM Agent.
13-
2. [Generate a source map](docs-content://solutions/observability/apps/create-upload-source-maps-rum.md#apm-source-map-rum-generate) for your application with the `serviceVersion` from step one.
14-
3. [Enable and upload the source map file](docs-content://solutions/observability/apps/create-upload-source-maps-rum.md#apm-source-map-rum-upload) to APM Server.
13+
2. [Generate a source map](docs-content://solutions/observability/apm/create-upload-source-maps-rum.md#apm-source-map-rum-generate) for your application with the `serviceVersion` from step one.
14+
3. [Enable and upload the source map file](docs-content://solutions/observability/apm/create-upload-source-maps-rum.md#apm-source-map-rum-upload) to APM Server.
1515

1616
$$$secret-token$$$
17-
You can also configure a [secret token](docs-content://solutions/observability/apps/secret-token.md) or [API key](docs-content://solutions/observability/apps/api-keys.md) to restrict the uploading of sourcemaps.
17+
You can also configure a [secret token](docs-content://solutions/observability/apm/secret-token.md) or [API key](docs-content://solutions/observability/apm/api-keys.md) to restrict the uploading of sourcemaps.
1818

1919
::::{tip}
20-
Don’t forget, you must enable [RUM support](docs-content://solutions/observability/apps/configure-real-user-monitoring-rum.md) in the APM Server for this endpoint to work.
20+
Don’t forget, you must enable [RUM support](docs-content://solutions/observability/apm/configure-real-user-monitoring-rum.md) in the APM Server for this endpoint to work.
2121
::::
2222

2323

docs/reference/transaction-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Add several labels on the transaction. If an error happens during the transactio
102102
Labels are key/value pairs that are indexed by Elasticsearch and therefore searchable (as opposed to data set via [`apm.setCustomContext()`](/reference/agent-api.md#apm-set-custom-context)).
103103

104104
::::{tip}
105-
Before using custom labels, ensure you understand the different types of [metadata](docs-content://solutions/observability/apps/elastic-apm-events-intake-api.md#apm-api-metadata-overview) that are available.
105+
Before using custom labels, ensure you understand the different types of [metadata](docs-content://solutions/observability/apm/elastic-apm-events-intake-api.md#apm-api-metadata-overview) that are available.
106106
::::
107107

108108

docs/reference/upgrading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Upgrades between minor versions of the agent, like from 3.1 to 3.2 are always ba
1010
Before upgrading the agent, be sure to review the:
1111

1212
* [Agent release notes](/release-notes/index.md)
13-
* [Agent and Server compatibility chart](docs-content://solutions/observability/apps/apm-agent-compatibility.md)
13+
* [Agent and Server compatibility chart](docs-content://solutions/observability/apm/apm-agent-compatibility.md)
1414

1515
The following upgrade guides are also available:
1616

0 commit comments

Comments
 (0)