From 49bcfa61817adaf207e7e5a741cd2fa38f1f7849 Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 12:07:18 +0200 Subject: [PATCH 01/15] Update OTel Spring starter doc with 2.6.0 features --- .../out-of-the-box-instrumentation.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 1c560731ba60..41507a664f90 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -20,6 +20,9 @@ Out of the box instrumentation is available for several frameworks: ## Common instrumentation configuration +To enable only specific instrumentations, you can disable all the instrumentations by setting the `otel.instrumentation.common.default-enabled` property to `false`, and enable instrumentations one by one. +For example, if you want to only enable the JDBC instrumentation, you can set `otel.instrumentation.jdbc.enabled` to `true`. + Common properties for all database instrumentations: | System property | Type | Default | Description | @@ -118,6 +121,11 @@ public MyService(RestClient.Builder restClientBuilder) { } ``` +As it's possible with the [Java agent](/docs/zero-code/java/agent/configuration), you can configure the capture of: +* HTTP request and response headers +* Known HTTP methods +* Experimental HTTP telemetry + ## Spring Web MVC Autoconfiguration This feature autoconfigures instrumentation for Spring WebMVC controllers by @@ -129,6 +137,11 @@ request. To learn more about the OpenTelemetry Spring WebMVC instrumentation, see the [opentelemetry-spring-webmvc-5.3 instrumentation library](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spring/spring-webmvc/spring-webmvc-5.3/library). +As it's possible with the [Java agent](/docs/zero-code/java/agent/configuration), you can configure the capture of: +* HTTP request and response headers +* Known HTTP methods +* Experimental HTTP telemetry + ## Spring WebFlux Autoconfiguration Provides autoconfigurations for the OpenTelemetry WebClient ExchangeFilter From c13af45dcbb6a63d249a57ca0fc91223bef4e2b3 Mon Sep 17 00:00:00 2001 From: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:18:05 +0000 Subject: [PATCH 02/15] Results from /fix:all --- .../out-of-the-box-instrumentation.md | 29 ++++++++++++------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 41507a664f90..08826d293171 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -20,8 +20,11 @@ Out of the box instrumentation is available for several frameworks: ## Common instrumentation configuration -To enable only specific instrumentations, you can disable all the instrumentations by setting the `otel.instrumentation.common.default-enabled` property to `false`, and enable instrumentations one by one. -For example, if you want to only enable the JDBC instrumentation, you can set `otel.instrumentation.jdbc.enabled` to `true`. +To enable only specific instrumentations, you can disable all the +instrumentations by setting the `otel.instrumentation.common.default-enabled` +property to `false`, and enable instrumentations one by one. For example, if you +want to only enable the JDBC instrumentation, you can set +`otel.instrumentation.jdbc.enabled` to `true`. Common properties for all database instrumentations: @@ -121,10 +124,13 @@ public MyService(RestClient.Builder restClientBuilder) { } ``` -As it's possible with the [Java agent](/docs/zero-code/java/agent/configuration), you can configure the capture of: -* HTTP request and response headers -* Known HTTP methods -* Experimental HTTP telemetry +As it's possible with the +[Java agent](/docs/zero-code/java/agent/configuration), you can configure the +capture of: + +- HTTP request and response headers +- Known HTTP methods +- Experimental HTTP telemetry ## Spring Web MVC Autoconfiguration @@ -137,10 +143,13 @@ request. To learn more about the OpenTelemetry Spring WebMVC instrumentation, see the [opentelemetry-spring-webmvc-5.3 instrumentation library](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spring/spring-webmvc/spring-webmvc-5.3/library). -As it's possible with the [Java agent](/docs/zero-code/java/agent/configuration), you can configure the capture of: -* HTTP request and response headers -* Known HTTP methods -* Experimental HTTP telemetry +As it's possible with the +[Java agent](/docs/zero-code/java/agent/configuration), you can configure the +capture of: + +- HTTP request and response headers +- Known HTTP methods +- Experimental HTTP telemetry ## Spring WebFlux Autoconfiguration From dfd0f87f3585d9c30f11c9d2da9e1d515566bafb Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 13:24:42 +0200 Subject: [PATCH 03/15] Update out-of-the-box-instrumentation.md --- .../spring-boot-starter/out-of-the-box-instrumentation.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 08826d293171..672da9ecb42c 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -18,7 +18,8 @@ Out of the box instrumentation is available for several frameworks: | Micrometer | `otel.instrumentation.micrometer.enabled` | false | | R2DBC (reactive JDBC) | `otel.instrumentation.r2dbc.enabled` | true | -## Common instrumentation configuration + +## Suppressing specific instrumentation To enable only specific instrumentations, you can disable all the instrumentations by setting the `otel.instrumentation.common.default-enabled` @@ -26,6 +27,8 @@ property to `false`, and enable instrumentations one by one. For example, if you want to only enable the JDBC instrumentation, you can set `otel.instrumentation.jdbc.enabled` to `true`. +## Common instrumentation configuration + Common properties for all database instrumentations: | System property | Type | Default | Description | From b6da9977c96b8f51ebcadb671235ee3d9af0a0b4 Mon Sep 17 00:00:00 2001 From: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Date: Thu, 18 Jul 2024 11:29:19 +0000 Subject: [PATCH 04/15] Results from /fix:all --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 672da9ecb42c..e571d209e505 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -18,7 +18,6 @@ Out of the box instrumentation is available for several frameworks: | Micrometer | `otel.instrumentation.micrometer.enabled` | false | | R2DBC (reactive JDBC) | `otel.instrumentation.r2dbc.enabled` | true | - ## Suppressing specific instrumentation To enable only specific instrumentations, you can disable all the From 5873fdb693aaa20ad3e9a74d6e43ff8e167ad2df Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 13:32:49 +0200 Subject: [PATCH 05/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Fabrizio Ferri-Benedetti --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index e571d209e505..e40600c934db 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -18,7 +18,7 @@ Out of the box instrumentation is available for several frameworks: | Micrometer | `otel.instrumentation.micrometer.enabled` | false | | R2DBC (reactive JDBC) | `otel.instrumentation.r2dbc.enabled` | true | -## Suppressing specific instrumentation +## Turn on instrumentations selectively To enable only specific instrumentations, you can disable all the instrumentations by setting the `otel.instrumentation.common.default-enabled` From 54cafe758a80c62099874af4ec78a8587da64965 Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 13:33:03 +0200 Subject: [PATCH 06/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Fabrizio Ferri-Benedetti --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index e40600c934db..76d3b0dff005 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -147,7 +147,7 @@ see the As it's possible with the [Java agent](/docs/zero-code/java/agent/configuration), you can configure the -capture of: +capture of the following entities: - HTTP request and response headers - Known HTTP methods From 4d2735e99bf92dc41fe3a0af5ff3a711d7020354 Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 13:33:19 +0200 Subject: [PATCH 07/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Fabrizio Ferri-Benedetti --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 76d3b0dff005..748f1198021c 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -128,7 +128,7 @@ public MyService(RestClient.Builder restClientBuilder) { As it's possible with the [Java agent](/docs/zero-code/java/agent/configuration), you can configure the -capture of: +capture of the following entities: - HTTP request and response headers - Known HTTP methods From c61588e73a7276868b0c26ae1641fd3aa3d3c20d Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 13:33:41 +0200 Subject: [PATCH 08/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Fabrizio Ferri-Benedetti --- .../out-of-the-box-instrumentation.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 748f1198021c..5187758e611c 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -20,11 +20,12 @@ Out of the box instrumentation is available for several frameworks: ## Turn on instrumentations selectively -To enable only specific instrumentations, you can disable all the -instrumentations by setting the `otel.instrumentation.common.default-enabled` -property to `false`, and enable instrumentations one by one. For example, if you -want to only enable the JDBC instrumentation, you can set -`otel.instrumentation.jdbc.enabled` to `true`. +To use only specific instrumentations, turn off all the instrumentations +first by setting the `otel.instrumentation.common.default-enabled` +property to `false`. Then, turn on instrumentations one by one. + +For example, if you want to only enable the JDBC instrumentation, +set `otel.instrumentation.jdbc.enabled` to `true`. ## Common instrumentation configuration From 2dcdfc46c46c22a10f23c34cc55db766fdbbdace Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 14:11:54 +0200 Subject: [PATCH 09/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Gregor Zeitlinger --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 5187758e611c..1ebb0d6f682a 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -133,7 +133,7 @@ capture of the following entities: - HTTP request and response headers - Known HTTP methods -- Experimental HTTP telemetry +- [Experimental HTTP telemetry](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) ## Spring Web MVC Autoconfiguration From 8cb1bd9a0c53d6483c8cf8550e39d161a1c8fef9 Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 14:11:59 +0200 Subject: [PATCH 10/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Gregor Zeitlinger --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 1ebb0d6f682a..892751c079c8 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -131,7 +131,7 @@ As it's possible with the [Java agent](/docs/zero-code/java/agent/configuration), you can configure the capture of the following entities: -- HTTP request and response headers +- [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) - Known HTTP methods - [Experimental HTTP telemetry](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) From 344dada26ffadecac1562e813ce6151f0a6b7411 Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 14:12:05 +0200 Subject: [PATCH 11/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Gregor Zeitlinger --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 892751c079c8..1cf702de3a44 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -128,7 +128,7 @@ public MyService(RestClient.Builder restClientBuilder) { ``` As it's possible with the -[Java agent](/docs/zero-code/java/agent/configuration), you can configure the +Java agent, you can configure the capture of the following entities: - [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) From 651bb4f37c305f318920ce1d372e7ad412be1b4f Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 14:12:11 +0200 Subject: [PATCH 12/15] Update content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md Co-authored-by: Gregor Zeitlinger --- .../java/spring-boot-starter/out-of-the-box-instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index 1cf702de3a44..eabaff6b48ce 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -132,7 +132,7 @@ Java agent, you can configure the capture of the following entities: - [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) -- Known HTTP methods +- [Known HTTP methods](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) - [Experimental HTTP telemetry](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) ## Spring Web MVC Autoconfiguration From 039c2f68141228392851639f2ee49153819be47f Mon Sep 17 00:00:00 2001 From: Jean Bisutti Date: Thu, 18 Jul 2024 14:12:59 +0200 Subject: [PATCH 13/15] Update out-of-the-box-instrumentation.md --- .../spring-boot-starter/out-of-the-box-instrumentation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index eabaff6b48ce..ca72f6d0990a 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -147,12 +147,12 @@ see the [opentelemetry-spring-webmvc-5.3 instrumentation library](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spring/spring-webmvc/spring-webmvc-5.3/library). As it's possible with the -[Java agent](/docs/zero-code/java/agent/configuration), you can configure the +Java agent, you can configure the capture of the following entities: -- HTTP request and response headers -- Known HTTP methods -- Experimental HTTP telemetry +- [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) +- [Known HTTP methods](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) +- [Experimental HTTP telemetry](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) ## Spring WebFlux Autoconfiguration From c8271a6ea5a4b1fe9f1b810d2d087bb3bc199a30 Mon Sep 17 00:00:00 2001 From: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Date: Thu, 18 Jul 2024 12:17:00 +0000 Subject: [PATCH 14/15] Results from /fix:all --- .../out-of-the-box-instrumentation.md | 20 +++++++++---------- static/refcache.json | 12 +++++++++++ 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index ca72f6d0990a..daa2e23d663a 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -20,12 +20,12 @@ Out of the box instrumentation is available for several frameworks: ## Turn on instrumentations selectively -To use only specific instrumentations, turn off all the instrumentations -first by setting the `otel.instrumentation.common.default-enabled` -property to `false`. Then, turn on instrumentations one by one. +To use only specific instrumentations, turn off all the instrumentations first +by setting the `otel.instrumentation.common.default-enabled` property to +`false`. Then, turn on instrumentations one by one. -For example, if you want to only enable the JDBC instrumentation, -set `otel.instrumentation.jdbc.enabled` to `true`. +For example, if you want to only enable the JDBC instrumentation, set +`otel.instrumentation.jdbc.enabled` to `true`. ## Common instrumentation configuration @@ -127,9 +127,8 @@ public MyService(RestClient.Builder restClientBuilder) { } ``` -As it's possible with the -Java agent, you can configure the -capture of the following entities: +As it's possible with the Java agent, you can configure the capture of the +following entities: - [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) - [Known HTTP methods](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) @@ -146,9 +145,8 @@ request. To learn more about the OpenTelemetry Spring WebMVC instrumentation, see the [opentelemetry-spring-webmvc-5.3 instrumentation library](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spring/spring-webmvc/spring-webmvc-5.3/library). -As it's possible with the -Java agent, you can configure the -capture of the following entities: +As it's possible with the Java agent, you can configure the capture of the +following entities: - [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) - [Known HTTP methods](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) diff --git a/static/refcache.json b/static/refcache.json index ccc6fd2761d2..19f06436cbd4 100644 --- a/static/refcache.json +++ b/static/refcache.json @@ -6571,6 +6571,18 @@ "StatusCode": 206, "LastSeen": "2024-05-15T19:23:47.920456821+03:00" }, + "https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers": { + "StatusCode": 206, + "LastSeen": "2024-07-18T12:15:23.404682814Z" + }, + "https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods": { + "StatusCode": 206, + "LastSeen": "2024-07-18T12:15:25.914328974Z" + }, + "https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry": { + "StatusCode": 206, + "LastSeen": "2024-07-18T12:15:30.126385341Z" + }, "https://opentelemetry.io/ecosystem/integrations/": { "StatusCode": 206, "LastSeen": "2024-03-19T10:16:49.992495889Z" From 71fca18612b599a3da8fc981ace38f001e0a4d69 Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri-Benedetti Date: Thu, 18 Jul 2024 17:19:45 +0200 Subject: [PATCH 15/15] Update out-of-the-box-instrumentation.md --- .../out-of-the-box-instrumentation.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md index daa2e23d663a..e0aa2330fe81 100644 --- a/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md +++ b/content/en/docs/zero-code/java/spring-boot-starter/out-of-the-box-instrumentation.md @@ -130,9 +130,9 @@ public MyService(RestClient.Builder restClientBuilder) { As it's possible with the Java agent, you can configure the capture of the following entities: -- [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) -- [Known HTTP methods](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) -- [Experimental HTTP telemetry](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) +- [HTTP request and response headers](/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) +- [Known HTTP methods](/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) +- [Experimental HTTP telemetry](/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) ## Spring Web MVC Autoconfiguration @@ -148,9 +148,9 @@ see the As it's possible with the Java agent, you can configure the capture of the following entities: -- [HTTP request and response headers](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) -- [Known HTTP methods](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) -- [Experimental HTTP telemetry](https://opentelemetry.io/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) +- [HTTP request and response headers](/docs/zero-code/java/agent/instrumentation/http/#capturing-http-request-and-response-headers) +- [Known HTTP methods](/docs/zero-code/java/agent/instrumentation/http/#configuring-known-http-methods) +- [Experimental HTTP telemetry](/docs/zero-code/java/agent/instrumentation/http/#enabling-experimental-http-telemetry) ## Spring WebFlux Autoconfiguration