Skip to content

Commit 9b53527

Browse files
Removing repeated words (#5164)
Co-authored-by: jason plumb <[email protected]>
1 parent 3581e0e commit 9b53527

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

content/en/docs/collector/building/receiver.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -520,8 +520,8 @@ func createTracesReceiver(_ context.Context, params receiver.CreateSettings, bas
520520
```
521521

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

526526
```go
527527
// NewFactory creates a factory for tailtracer receiver.

content/en/docs/kubernetes/collector/components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ started.
554554

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

560560
To see which objects are available for collection run in your cluster run

content/en/docs/languages/erlang/propagation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ propagators. By default the global propagators used are the W3C
2525
[Trace Context](https://w3c.github.io/trace-context/) and
2626
[Baggage](https://www.w3.org/TR/baggage/) formats.
2727

28-
You can configure global propagators using the the OTP application environment
28+
You can configure global propagators using the OTP application environment
2929
variable `text_map_propagators`:
3030

3131
{{< tabpane text=true >}} {{% tab Erlang %}}

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ settings. See [Scaling](/docs/collector/scaling/).
7878
## Constraints impacting the performance of the Java agent
7979

8080
In general, the more telemetry you collect from your application, the greater
81-
the the impact on agent overhead. For example, tracing methods that aren't
82-
relevant to your application can still produce considerable agent overhead
83-
because tracing such methods is computationally more expensive than running the
84-
method itself. Similarly, high cardinality tags in metrics might increase memory
85-
usage. Debug logging, if turned on, also increases write operations to disk and
86-
memory usage.
81+
the impact on agent overhead. For example, tracing methods that aren't relevant
82+
to your application can still produce considerable agent overhead because
83+
tracing such methods is computationally more expensive than running the method
84+
itself. Similarly, high cardinality tags in metrics might increase memory usage.
85+
Debug logging, if turned on, also increases write operations to disk and memory
86+
usage.
8787

8888
Some instrumentations, for example JDBC or Redis, produce high span volumes that
8989
increase agent overhead. For more information on how to turn off unnecessary

content/en/docs/zero-code/java/agent/instrumentation/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ For example, if set to the following:
4343
```
4444

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

5050
{{% /config_option %}}

0 commit comments

Comments
 (0)