Skip to content

Commit ad58607

Browse files
committed
Merge branch '3.1.x'
Closes gh-38725
2 parents e697024 + 1b3eef7 commit ad58607

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/metrics.adoc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ You can also change the interval at which metrics are sent to Datadog:
168168
[[actuator.metrics.export.dynatrace]]
169169
==== Dynatrace
170170
Dynatrace offers two metrics ingest APIs, both of which are implemented for {micrometer-registry-docs}/dynatrace[Micrometer].
171-
You can find the Dynatrace documentation on Micrometer metrics ingest {dynatrace-help}/how-to-use-dynatrace/metrics/metric-ingestion/ingestion-methods/micrometer[here].
172-
Configuration properties in the `v1` namespace apply only when exporting to the {dynatrace-help}/dynatrace-api/environment-api/metric-v1/[Timeseries v1 API].
173-
Configuration properties in the `v2` namespace apply only when exporting to the {dynatrace-help}/dynatrace-api/environment-api/metric-v2/post-ingest-metrics/[Metrics v2 API].
171+
You can find the Dynatrace documentation on Micrometer metrics ingest {dynatrace-docs}/micrometer-metrics-ingest[here].
172+
Configuration properties in the `v1` namespace apply only when exporting to the {dynatrace-docs}/api-metrics[Timeseries v1 API].
173+
Configuration properties in the `v2` namespace apply only when exporting to the {dynatrace-docs}/api-metrics-v2-post-datapoints[Metrics v2 API].
174174
Note that this integration can export only to either the `v1` or `v2` version of the API at a time, with `v2` being preferred.
175175
If the `device-id` (required for v1 but not used in v2) is set in the `v1` namespace, metrics are exported to the `v1` endpoint.
176176
Otherwise, `v2` is assumed.
@@ -187,7 +187,7 @@ You can use the v2 API in two ways.
187187
====== Auto-configuration
188188
Dynatrace auto-configuration is available for hosts that are monitored by the OneAgent or by the Dynatrace Operator for Kubernetes.
189189

190-
**Local OneAgent:** If a OneAgent is running on the host, metrics are automatically exported to the {dynatrace-help}/how-to-use-dynatrace/metrics/metric-ingestion/ingestion-methods/local-api/[local OneAgent ingest endpoint].
190+
**Local OneAgent:** If a OneAgent is running on the host, metrics are automatically exported to the {dynatrace-docs}/local-api[local OneAgent ingest endpoint].
191191
The ingest endpoint forwards the metrics to the Dynatrace backend.
192192

193193
**Dynatrace Kubernetes Operator:** When running in Kubernetes with the Dynatrace Operator installed, the registry will automatically pick up your endpoint URI and API token from the operator instead.
@@ -198,8 +198,8 @@ This is the default behavior and requires no special setup beyond a dependency o
198198

199199
[[actuator.metrics.export.dynatrace.v2-api.manual-config]]
200200
====== Manual configuration
201-
If no auto-configuration is available, the endpoint of the {dynatrace-help}/dynatrace-api/environment-api/metric-v2/post-ingest-metrics/[Metrics v2 API] and an API token are required.
202-
The {dynatrace-help}/dynatrace-api/basics/dynatrace-api-authentication/[API token] must have the "`Ingest metrics`" (`metrics.ingest`) permission set.
201+
If no auto-configuration is available, the endpoint of the {dynatrace-docs}/api-metrics-v2-post-datapoints[Metrics v2 API] and an API token are required.
202+
The {dynatrace-docs}/api-authentication[API token] must have the "`Ingest metrics`" (`metrics.ingest`) permission set.
203203
We recommend limiting the scope of the token to this one permission.
204204
You must ensure that the endpoint URI contains the path (for example, `/api/v2/metrics/ingest`):
205205

@@ -220,7 +220,7 @@ The example below configures metrics export using the `example` environment id:
220220
api-token: "YOUR_TOKEN"
221221
----
222222

223-
When using the Dynatrace v2 API, the following optional features are available (more details can be found in the {dynatrace-help}/how-to-use-dynatrace/metrics/metric-ingestion/ingestion-methods/micrometer#dt-configuration-properties[Dynatrace documentation]):
223+
When using the Dynatrace v2 API, the following optional features are available (more details can be found in the {dynatrace-docs}/micrometer-metrics-ingest#dt-configuration-properties[Dynatrace documentation]):
224224

225225
* Metric key prefix: Sets a prefix that is prepended to all exported metric keys.
226226
* Enrich with Dynatrace metadata: If a OneAgent or Dynatrace operator is running, enrich metrics with additional metadata (for example, about the host, process, or pod).
@@ -257,7 +257,7 @@ In this scenario, the automatically configured endpoint is used:
257257

258258
[[actuator.metrics.export.dynatrace.v1-api]]
259259
===== v1 API (Legacy)
260-
The Dynatrace v1 API metrics registry pushes metrics to the configured URI periodically by using the {dynatrace-help}/dynatrace-api/environment-api/metric-v1/[Timeseries v1 API].
260+
The Dynatrace v1 API metrics registry pushes metrics to the configured URI periodically by using the {dynatrace-docs}/api-metrics[Timeseries v1 API].
261261
For backwards-compatibility with existing setups, when `device-id` is set (required for v1, but not used in v2), metrics are exported to the Timeseries v1 endpoint.
262262
To export metrics to {micrometer-registry-docs}/dynatrace[Dynatrace], your API token, device ID, and URI must be provided:
263263

@@ -292,7 +292,7 @@ The following example sets the export interval to 30 seconds:
292292
step: "30s"
293293
----
294294

295-
You can find more information on how to set up the Dynatrace exporter for Micrometer in the {micrometer-registry-docs}/dynatrace[Micrometer documentation] and the {dynatrace-help}/how-to-use-dynatrace/metrics/metric-ingestion/ingestion-methods/micrometer[Dynatrace documentation].
295+
You can find more information on how to set up the Dynatrace exporter for Micrometer in the {micrometer-registry-docs}/dynatrace[Micrometer documentation] and the {dynatrace-docs}/micrometer-metrics-ingest[Dynatrace documentation].
296296

297297

298298

spring-boot-project/spring-boot-docs/src/docs/asciidoc/attributes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
:spring-webservices-docs: https://docs.spring.io/spring-ws/docs/{spring-webservices-version}/reference/html/
9999
:ant-docs: https://ant.apache.org/manual
100100
:dependency-management-plugin-code: https://github.com/spring-gradle-plugins/dependency-management-plugin
101-
:dynatrace-help: https://www.dynatrace.com/support/help
101+
:dynatrace-docs: https://docs.dynatrace.com/docs/shortlink
102102
:gradle-docs: https://docs.gradle.org/current/userguide
103103
:hibernate-docs: https://docs.jboss.org/hibernate/orm/{hibernate-version}/userguide/html_single/Hibernate_User_Guide.html
104104
:java-api: https://docs.oracle.com/en/java/javase/17/docs/api

0 commit comments

Comments
 (0)