Skip to content

Commit b396552

Browse files
committed
spellcheck, refcache
1 parent 91c3cf8 commit b396552

File tree

3 files changed

+27
-21
lines changed

3 files changed

+27
-21
lines changed

content/en/docs/languages/java/api.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ logBridgeWarning: >
1010
to bridge logs recorded through other log APIs / frameworks into
1111
OpenTelemetry. They are not intended for end user use as a replacement for
1212
Log4j / SLF4J / Logback / etc.
13+
cSpell:ignore: Logback, kotlint, Dotel, updowncounter
1314
---
1415

1516
<!-- markdownlint-disable blanks-around-fences -->
@@ -211,7 +212,7 @@ application boundaries. Context is injected into a carrier when leaving an
211212
application (i.e. an outbound HTTP request), and extracted from a carrier when
212213
entering an application (i.e. serving an HTTP request).
213214

214-
See [SDK TextMapPropagators](../sdk/#textmappropagator) for propgator
215+
See [SDK TextMapPropagators](../sdk/#textmappropagator) for propagator
215216
implementations.
216217

217218
The following code snippet explores `ContextPropagators` API for injection:
@@ -860,15 +861,15 @@ scopes. There are a variety of instruments, each with different semantics and
860861
default behavior in the SDK. Its important to choose the right instrument for
861862
each particular use case:
862863

863-
| Instrument | Sync or Async | Description | Example | Default SDK Aggregation |
864-
| ------------------------------------------- | ------------- | ---------------------------------------------------------------------------------- | ------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
865-
| [Counter](#counter) | sync | Record monotonic (positive) values. | Record user logins | [sum (monotonic=true)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
866-
| [Async Counter](#async-counter) | async | Observe monotonic sums. | Observe number of classes loaded in the JVM | [sum (monotonic=true)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
867-
| [UpDownCounter](#updowncounter) | sync | Record non-monotonic (positive and negative) values. | Record when items are added to and removed from a queue | [sum (monotonic=false)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
868-
| [Async UpDownCounter](#async-updowncounter) | async | Observe non-monotonic (positive and negative) sums. | Observe JVM memory pool usage | [sum (monotonic=false)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
869-
| [Histogram](#histogram) | sync | Record monotonic (positive) values where the distribution is important. | Record duration of HTTP requests processed by server | [ExplicitBucketHistgram](/docs/specs/otel/metrics/sdk/#explicit-bucket-histogram-aggregation) |
870-
| [Gauge](#gauge) | sync | Record the latest value where spatial re-aggregation does not make sense **[1]**. | Record temperature | [LastValue](/docs/specs/otel/metrics/sdk/#last-value-aggregation) |
871-
| [Async Gauge](#async-gauge) | async | Observe the latest value where spatial re-aggregation does not make sense **[1]**. | Observe CPU utilization | [LastValue](/docs/specs/otel/metrics/sdk/#last-value-aggregation) |
864+
| Instrument | Sync or Async | Description | Example | Default SDK Aggregation |
865+
| ------------------------------------------- | ------------- | ---------------------------------------------------------------------------------- | ------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
866+
| [Counter](#counter) | sync | Record monotonic (positive) values. | Record user logins | [sum (monotonic=true)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
867+
| [Async Counter](#async-counter) | async | Observe monotonic sums. | Observe number of classes loaded in the JVM | [sum (monotonic=true)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
868+
| [UpDownCounter](#updowncounter) | sync | Record non-monotonic (positive and negative) values. | Record when items are added to and removed from a queue | [sum (monotonic=false)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
869+
| [Async UpDownCounter](#async-updowncounter) | async | Observe non-monotonic (positive and negative) sums. | Observe JVM memory pool usage | [sum (monotonic=false)](/docs/specs/otel/metrics/sdk/#sum-aggregation) |
870+
| [Histogram](#histogram) | sync | Record monotonic (positive) values where the distribution is important. | Record duration of HTTP requests processed by server | [ExplicitBucketHistogram](/docs/specs/otel/metrics/sdk/#explicit-bucket-histogram-aggregation) |
871+
| [Gauge](#gauge) | sync | Record the latest value where spatial re-aggregation does not make sense **[1]**. | Record temperature | [LastValue](/docs/specs/otel/metrics/sdk/#last-value-aggregation) |
872+
| [Async Gauge](#async-gauge) | async | Observe the latest value where spatial re-aggregation does not make sense **[1]**. | Observe CPU utilization | [LastValue](/docs/specs/otel/metrics/sdk/#last-value-aggregation) |
872873

873874
**[1]**: Spatial re-aggregation is the process of merging attribute streams by
874875
dropping attributes which are not needed. For example, given series with
@@ -1424,7 +1425,7 @@ The `OpenTelemetry#noop()` method provides access to a noop implementation of
14241425
the name suggests, the noop implementation does nothing and is designed to have
14251426
no impact on performance. Instrumentation may see impact on performance even
14261427
when the noop is used if it is computing / allocating attribute values and other
1427-
data requried to record the telemetry. The noop is a useful default instance of
1428+
data required to record the telemetry. The noop is a useful default instance of
14281429
`OpenTelemetry` when a user has not configured and installed a concrete
14291430
implementation such as the [SDK](/docs/languages/java/sdk/).
14301431

content/en/docs/languages/java/instrumentation.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ aliases:
77
- manual_instrumentation
88
weight: 10
99
description: Instrumentation ecosystem in OpenTelemetry Java
10+
cSpell:ignore: Logback
1011
---
1112

1213
<!-- markdownlint-disable no-duplicate-heading -->
@@ -35,7 +36,7 @@ There are several categories of instrumentation:
3536

3637
- [Zero-code: Java agent](#zero-code-java-agent) is a form of zero-code
3738
instrumentation **[1]** that dynamically manipulates application bytecode.
38-
- [Zerc-code: Spring Boot starter](#zero-code-spring-boot-starter) is a form of
39+
- [Zero-code: Spring Boot starter](#zero-code-spring-boot-starter) is a form of
3940
zero-code instrumentation **[1]** that leverages spring autoconfigure to
4041
install [library instrumentation](#library-instrumentation).
4142
- [Library instrumentation](#library-instrumentation) wraps or uses extension
@@ -94,7 +95,7 @@ as a temporary means of filling the gap.
9495

9596
For a list of libraries with native instrumentation, look for entries with the
9697
"native" badge in the
97-
[registry](https://opentelemetry.io/ecosystem/registry/?language=java).
98+
[registry](/ecosystem/registry/?language=java).
9899

99100
### Manual instrumentation
100101

static/refcache.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12731,6 +12731,10 @@
1273112731
"StatusCode": 200,
1273212732
"LastSeen": "2024-08-05T15:59:36.584528-05:00"
1273312733
},
12734+
"https://www.javadoc.io/doc/io.opentelemetry/opentelemetry-api/latest/io/opentelemetry/api/metrics/DoubleCounter.html": {
12735+
"StatusCode": 200,
12736+
"LastSeen": "2024-09-30T11:26:12.546964-05:00"
12737+
},
1273412738
"https://www.javadoc.io/doc/io.opentelemetry/opentelemetry-api/latest/io/opentelemetry/api/metrics/DoubleGauge.html": {
1273512739
"StatusCode": 200,
1273612740
"LastSeen": "2024-09-30T10:42:56.762156-05:00"
@@ -12743,6 +12747,10 @@
1274312747
"StatusCode": 200,
1274412748
"LastSeen": "2024-09-30T10:42:39.724087-05:00"
1274512749
},
12750+
"https://www.javadoc.io/doc/io.opentelemetry/opentelemetry-api/latest/io/opentelemetry/api/metrics/LongCounter.html": {
12751+
"StatusCode": 200,
12752+
"LastSeen": "2024-09-30T11:26:11.401131-05:00"
12753+
},
1274612754
"https://www.javadoc.io/doc/io.opentelemetry/opentelemetry-api/latest/io/opentelemetry/api/metrics/LongGauge.html": {
1274712755
"StatusCode": 200,
1274812756
"LastSeen": "2024-09-30T10:42:57.12662-05:00"
@@ -12811,6 +12819,10 @@
1281112819
"StatusCode": 200,
1281212820
"LastSeen": "2024-09-30T10:42:14.126006-05:00"
1281312821
},
12822+
"https://www.javadoc.io/doc/io.opentelemetry/opentelemetry-context/latest/io/opentelemetry/context/ContextStorage.html": {
12823+
"StatusCode": 200,
12824+
"LastSeen": "2024-09-30T11:26:04.981525-05:00"
12825+
},
1281412826
"https://www.javadoc.io/doc/io.opentelemetry/opentelemetry-context/latest/io/opentelemetry/context/propagation/ContextPropagators.html": {
1281512827
"StatusCode": 200,
1281612828
"LastSeen": "2024-09-30T10:42:19.966187-05:00"
@@ -12907,14 +12919,6 @@
1290712919
"StatusCode": 200,
1290812920
"LastSeen": "2024-08-05T15:19:47.672179-05:00"
1290912921
},
12910-
"https://www.javadoc.io/static/io.opentelemetry/opentelemetry-api/latest/io/opentelemetry/api/metrics/DoubleCounter.html": {
12911-
"StatusCode": 403,
12912-
"LastSeen": "2024-09-30T10:43:08.095402-05:00"
12913-
},
12914-
"https://www.javadoc.io/static/io.opentelemetry/opentelemetry-api/latest/io/opentelemetry/api/metrics/LongCounter.html": {
12915-
"StatusCode": 403,
12916-
"LastSeen": "2024-09-30T10:43:07.677122-05:00"
12917-
},
1291812922
"https://www.javadoc.io/static/io.opentelemetry/opentelemetry-context/1.41.0/io/opentelemetry/context/ContextStorage.html": {
1291912923
"StatusCode": 200,
1292012924
"LastSeen": "2024-09-30T10:42:16.987832-05:00"

0 commit comments

Comments
 (0)