Skip to content

Commit b58d579

Browse files
authored
Fix broken links (#6326)
Modifications: - Fix broken links in source and docs Result: - Broken links are fixed --------- Signed-off-by: Seonghyeon Cho <[email protected]>
1 parent 1ef08fa commit b58d579

14 files changed

+17
-17
lines changed

site/src/design/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
LY Corporation owns all rights to the logos in this folder.
44
The files in this folder are *not* licensed under any open source license.
55

6-
See [Design resources](https://line.github.com/armeria/community/design-resources) for more information.
6+
See [Design resources](https://armeria.dev/community/design-resources/) for more information.

site/src/pages/docs/advanced-metrics.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Clients.builder(grpcUrl)
115115

116116
## Changing the default distribution summary config
117117

118-
A [distribution summary](https://micrometer.io/docs/concepts#_distribution_summaries) is used to track
118+
A [distribution summary](https://docs.micrometer.io/micrometer/reference/concepts/distribution-summaries) is used to track
119119
the distribution of events. Armeria provides a sensible default
120120
[DistributionStatisticConfig](https://javadoc.io/doc/io.micrometer/micrometer-core/latest/io/micrometer/core/instrument/distribution/DistributionStatisticConfig.html)
121121
for measuring the following metrics:
@@ -147,7 +147,7 @@ MoreMeters.setDistributionStatisticConfig(myDistStatCfg);
147147

148148
## Excluding certain meters created by Armeria
149149

150-
Micrometer's `MeterRegistry` can be configured with [meter filters](https://micrometer.io/docs/concepts#_meter_filters).
150+
Micrometer's `MeterRegistry` can be configured with [meter filters](https://docs.micrometer.io/micrometer/reference/concepts/meter-filters).
151151
If you need to control the exported meters, you can apply sophisticated filters to the `MeterRegistry`.
152152

153153
```java

site/src/pages/docs/client-circuit-breaker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can configure an Armeria client with a circuit breaker to prevent this circu
88
can automatically detect failures by continuously updating success and failure events. If the remote service
99
is unresponsive, it will immediately respond with an error and not make remote calls.
1010
Please refer to [CircuitBreaker wiki page](https://martinfowler.com/bliki/CircuitBreaker.html) by Martin Fowler and
11-
[LINE Engineering blog post about circuit breaker](https://engineering.linecorp.com/en/blog/detail/76)
11+
[LINE Engineering blog post about circuit breaker](https://engineering.linecorp.com/en/blog/circuit-breakers-for-distributed-services)
1212
for more information.
1313

1414
## State of `CircuitBreaker`

site/src/pages/docs/client-service-discovery.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ The <type://ZooKeeperEndpointGroup> is used to fetch the binary representation o
263263
The <type://ZooKeeperDiscoverySpec> converts the binary representation to an <type://Endpoint>.
264264

265265
<type://ZooKeeperDiscoverySpec#curator(String)> uses the format of
266-
[Curator Service Discovery](https://curator.apache.org/curator-x-discovery/index.html) which is compatible
266+
[Curator Service Discovery](https://curator.apache.org/docs/service-discovery/) which is compatible
267267
with [Spring Cloud Zookeeper](https://cloud.spring.io/spring-cloud-zookeeper/reference/html/). If you
268268
registered your server with <type://ZooKeeperRegistrationSpec#curator(String)>, you must use
269269
<type://ZooKeeperDiscoverySpec#curator(String)>.

site/src/pages/docs/server-service-registration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ which means when a server stops or a network partition between your server and Z
5151
the node of the server that became unreachable will be deleted automatically by ZooKeeper.
5252

5353
<type://ZooKeeperRegistrationSpec#curator(String)> uses the format of
54-
[Curator Service Discovery](https://curator.apache.org/curator-x-discovery/index.html) which is compatible
54+
[Curator Service Discovery](https://curator.apache.org/docs/service-discovery/) which is compatible
5555
with [Spring Cloud Zookeeper](https://cloud.spring.io/spring-cloud-zookeeper/reference/html/).
5656
You can use <type://ZooKeeperRegistrationSpec#serverSets()> that applies the format of
5757
[Finagle ServerSets](https://twitter.github.io/finagle/docs/com/twitter/serverset.html).

site/src/pages/news/20200703-newsletter-1.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ the next release. Nevertheless, I feel like 1.0.0 is really close this time.
2222
<type://ServerBuilder#maxConnectionAge(Duration)>. This is useful when you have to deal with a load
2323
balancer without HTTP/2 support.
2424
- Service discovery and registration for
25-
[Curator Service Discovery](https://curator.apache.org/curator-x-discovery/index.html) and
25+
[Curator Service Discovery](https://curator.apache.org/docs/service-discovery/) and
2626
[Finagle ServerSets](http://stevenskelton.ca/finagle-serverset-clusters-using-zookeeper/).
2727
- [ScalaPB](https://scalapb.github.io/) support with
2828
[a fully working example](https://github.com/line/armeria/tree/main/examples/grpc-scala).

site/src/pages/release-notes/0.80.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ date: 2019-02-19
125125
.responseCauseSanitizer(responseCauseSanitizer)
126126
.newDecorator());
127127
```
128-
- A user can easily send [Server-Sent Events](https://www.w3.org/TR/2009/WD-eventsource-20090421/). #1551
128+
- A user can easily send [Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html). #1551
129129
```java
130130
public class MyAnnotatedService {
131131
@Get("/publisher")

site/src/pages/release-notes/0.99.7.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ date: 2020-06-22
101101
.build();
102102
```
103103
- Armeria now supports service discovery and registration for
104-
[Curator Service Discovery](https://curator.apache.org/curator-x-discovery/index.html) and
104+
[Curator Service Discovery](https://curator.apache.org/docs/service-discovery/) and
105105
[Finagle ServerSets](http://stevenskelton.ca/finagle-serverset-clusters-using-zookeeper/). #2673 #2749 #2791
106106
```java
107107
CuratorFramework curator = ...;

site/src/pages/release-notes/1.25.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ date: 2023-08-22
77
- **GraalVM Support**: Armeria now provides [GraalVM](https://www.graalvm.org/)
88
[reachability metadata](https://www.graalvm.org/latest/reference-manual/native-image/metadata/) to easily build
99
[GraalVM](https://www.graalvm.org/) native images. #5005
10-
- **Micrometer Observation Support**: Support for [Micrometer Observation](https://micrometer.io/docs/observation) is added.
10+
- **Micrometer Observation Support**: Support for [Micrometer Observation](https://docs.micrometer.io/micrometer/reference/observation) is added.
1111
Refer to <type://ObservationClient> or <type://ObservationService> for details on how to integrate with Armeria. #4659 #4980
1212
```java
1313
ObservationRegistry observationRegistry = ...

zookeeper3/src/main/java/com/linecorp/armeria/client/zookeeper/CuratorDiscoverySpecBuilder.java

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

2929
/**
3030
* Builds a {@link ZooKeeperDiscoverySpec} for
31-
* <a href="https://curator.apache.org/curator-x-discovery/index.html">Curator Service Discovery</a>.
31+
* <a href="https://curator.apache.org/docs/service-discovery/">Curator Service Discovery</a>.
3232
*/
3333
public final class CuratorDiscoverySpecBuilder {
3434

0 commit comments

Comments
 (0)