Skip to content

Commit 96076f1

Browse files
authored
Fix external links reported by link checker (^a-j) (open-telemetry#2349)
1 parent 0f45ace commit 96076f1

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

.htmltest.yml

+13
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,16 @@ IgnoreInternalURLs: # list of paths
55
IgnoreURLs: # list of regexs to paths or URLs
66
- ^/docs/instrumentation/\w+/(api|examples)/$
77
- ^/docs/instrumentation/net/(metrics-api|traces-api)/
8+
9+
- ^https?://localhost\b
10+
- ^https?://(www\.)?github\b
11+
12+
# Temporary as we process external links incrementally:
13+
- ^https?://[^a-i]
14+
15+
# TODO: drop after fix to https://github.com/rust-lang/crates.io/issues/788
16+
- ^https://crates.io/crates
17+
# Invalid certificate (x509) for daocloud.io:
18+
- ^https://docs.daocloud.io
19+
# TODO: drop after fix to https://github.com/open-telemetry/opentelemetry-specification/pull/3217
20+
- ^https://golang.org/pkg/runtime/debug/#Stack

content/en/blog/2022/apisix/index.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ author: >-
66
[Haochao Zhuang](https://github.com/dmsolr),
77
[Fei Han](https://github.com/hf400159)
88
canonical_url: https://apisix.apache.org/blog/2022/02/28/apisix-integration-opentelemetry-plugin/
9+
spelling: cSpell:ignore APISIX
910
---
1011

1112
This article introduces the Apache APISIX's `opentelemetry` plugin concept and
@@ -345,7 +346,7 @@ be changed to your Apache APISIX address, and ensure that it can be accessed
345346
normally in the container.
346347

347348
Of course, you can also deploy Apache APISIX through `docker-compose.yaml`. For
348-
details, see [Installation via Docker](https://apisix.apache.org/docs/apisix/how-to-build/#installation-via-docker).
349+
details, see [Installation via Docker](https://hub.docker.com/r/apache/apisix).
349350

350351
### Step 3: Verify the Outputs
351352

@@ -390,7 +391,7 @@ communities to create a more powerful ecosystem.
390391
Apache APISIX is also currently working on additional plugins to support
391392
integration with more services, if you're interested, feel free to
392393
[start a discussion](https://github.com/apache/apisix/discussions)
393-
on GitHub, or communicate via the [mailing list](https://apisix.apache.org/docs/general/subscribe-guide).
394+
on GitHub, or communicate via the [mailing list](https://apisix.apache.org/docs/general/join/#subscribe-to-the-mailing-list).
394395

395396
_A version of this article was [originally posted][] on the Apache APISIX blog._
396397

content/en/blog/2022/otel-demo-app-nomad/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Let’s do this!
2525
Before we move on, I am assuming that you have a basic understanding of:
2626

2727
- **[Nomad](https://nomadproject.io)**. If not, head on over to my
28-
[Nomad intro post](https://adri-v.medium.com/just-in-time-nomad-80f57cd403ca).
28+
[Nomad intro post](https://storiesfromtheherd.com/just-in-time-nomad-80f57cd403ca).
2929
[This blog post](https://danielabaron.me/blog/nomad-tips-and-tricks/) by
3030
[Daniela Baron](https://danielabaron.me) is also great.
3131
- **Observability (o11y) and [OpenTelemetry](https://opentelemetry.io) (OTel)**.

content/en/blog/2022/otel-in-practice.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "OpenTelemetry in Practice: Kubernetes & the Collector"
33
linkTitle: OTel in Practice
44
date: 2022-08-17
55
spelling: cSpell:ignore Rynn Mancuso
6-
author: "[Rynn Mancuso](https://www.github.com/musingvirtual)"
6+
author: "[Rynn Mancuso](https://github.com/musingvirtual)"
77
---
88

99
## About the Series

content/en/docs/demo/docker-deployment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ docker compose up --no-build
3838
> build` in order to create local images vs. pulling them from the repository.
3939
4040
**Note:** The `--no-build` flag is used to fetch released docker images from
41-
[ghcr](http://ghcr.io/open-telemetry/demo) instead of building from source.
41+
[ghcr](https://ghcr.io/open-telemetry/demo) instead of building from source.
4242
Removing the `--no-build` command line option will rebuild all images from
4343
source. It may take more than 20 minutes to build if the flag is omitted.
4444

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"cd:public": "cd public &&",
2323
"check": "npm run all -- check:*",
2424
"check:formatting": "npx prettier --check .",
25-
"check:links:all": "HTMLTEST_ARGS= npm run _check:links",
25+
"check:links:all": "HTMLTEST_ARGS='--log-level 1' npm run _check:links",
2626
"check:links": "npm run _check:links",
2727
"clean": "make clean",
2828
"cp:spec": "./scripts/content-modules/cp-pages.sh",

0 commit comments

Comments
 (0)