From a4e2676108b08a089f965a7cffa7879c49ce4622 Mon Sep 17 00:00:00 2001 From: Puneet Singh Date: Wed, 3 Jun 2026 08:06:49 +0000 Subject: [PATCH 1/2] exclude sleuth from lychee check Possibly as part of sleuth archival and its logic moving to micrometer, the automation requests for URL have started to return 404. This is short term fix, with long term as doc updates at docs/sdk-configuration-design.md to remove/replace sleuth references. --- .github/config/lychee.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/config/lychee.toml b/.github/config/lychee.toml index 0ce969b0fcd..35c83155027 100644 --- a/.github/config/lychee.toml +++ b/.github/config/lychee.toml @@ -18,4 +18,5 @@ remap = [ exclude = [ "^https://github.com/open-telemetry/opentelemetry-java/(issues|pull)/\\d+$", "^https://www.javadoc.io/badge/(.*?)/(.*?).svg$", # returns 522 + "^https://spring.io/projects/spring-cloud-sleuth$", # returns 404 to bots, valid in browser ] From 074542a6190b3d32914553ad73cb5861c2d72d6a Mon Sep 17 00:00:00 2001 From: Puneet Singh Date: Wed, 3 Jun 2026 20:16:12 +0000 Subject: [PATCH 2/2] remove sleuth url from docs --- .github/config/lychee.toml | 1 - docs/sdk-configuration-design.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/config/lychee.toml b/.github/config/lychee.toml index 35c83155027..0ce969b0fcd 100644 --- a/.github/config/lychee.toml +++ b/.github/config/lychee.toml @@ -18,5 +18,4 @@ remap = [ exclude = [ "^https://github.com/open-telemetry/opentelemetry-java/(issues|pull)/\\d+$", "^https://www.javadoc.io/badge/(.*?)/(.*?).svg$", # returns 522 - "^https://spring.io/projects/spring-cloud-sleuth$", # returns 404 to bots, valid in browser ] diff --git a/docs/sdk-configuration-design.md b/docs/sdk-configuration-design.md index 2ecc7f4341c..8af95287ae7 100644 --- a/docs/sdk-configuration-design.md +++ b/docs/sdk-configuration-design.md @@ -594,7 +594,7 @@ presence of the wrapper and invoke it automatically. ### Spring Sleuth -[Spring Sleuth](https://spring.io/projects/spring-cloud-sleuth) (or any similar observability-aware server framework such as +Spring Sleuth (or any similar observability-aware server framework such as [curio-server-framework](https://github.com/curioswitch/curiostack/blob/master/common/server/framework/src/main/java/org/curioswitch/common/server/framework/monitoring/MonitoringModule.java) or internal frameworks developed by devops teams at companies) is also a mechanism for automatically configuring the SDK. In general, we would expect Sleuth users to not be using the java agent.