Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing repeated words #5164

Merged
merged 5 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/en/docs/collector/building/receiver.md
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ func createTracesReceiver(_ context.Context, params receiver.CreateSettings, bas
```

You now have all the necessary components to successfully instantiate your
receiver factory using the `receiver.NewFactory` function. Go ahead and and
receiver factory using the `receiver.NewFactory` function. Go ahead and
update your `NewFactory()` function in your `factory.go` file as follow:

```go
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/kubernetes/collector/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ started.

For objects configuring for pulling, the receiver will use the Kubernetes API to
periodically list all the objects in the Cluster. Each object will be converted
to its own log. For objects configured for watching, the receiver creates a a
to its own log. For objects configured for watching, the receiver creates a
stream with the Kubernetes API and which receives updates as the objects change.

To see which objects are available for collection run in your cluster run
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/languages/erlang/propagation.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ propagators. By default the global propagators used are the W3C
[Trace Context](https://w3c.github.io/trace-context/) and
[Baggage](https://www.w3.org/TR/baggage/) formats.

You can configure global propagators using the the OTP application environment
You can configure global propagators using the OTP application environment
variable `text_map_propagators`:

{{< tabpane text=true >}} {{% tab Erlang %}}
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/languages/java/instrumentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ to build the `OpenTelemetry` instance.
You can build the providers by using the `SdkTracerProvider.builder()` and
`SdkMeterProvider.builder()` methods.

In the case of the [example app](#example-app) the the `DiceApplication` class
In the case of the [example app](#example-app) the `DiceApplication` class
gets updated as follows:

```java { hl_lines=["6-24","34-62"] }
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/languages/java/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ settings. See [Scaling](/docs/collector/scaling/).
## Constraints impacting the performance of the Java agent

In general, the more telemetry you collect from your application, the greater
the the impact on agent overhead. For example, tracing methods that aren't
the impact on agent overhead. For example, tracing methods that aren't
relevant to your application can still produce considerable agent overhead
because tracing such methods is computationally more expensive than running the
method itself. Similarly, high cardinality tags in metrics might increase memory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ For example, if set to the following:
```

Then, requests to `1.2.3.4` will have no override for `peer.service` attribute,
while `1.2.3.4:443` will have have `peer.service` of `cats-service` and requests
while `1.2.3.4:443` will have `peer.service` of `cats-service` and requests
to `dogs-abcdef123.serverlessapis.com:80/api/v1` will have an attribute of
`dogs-api`.

Expand Down
Loading