Skip to content

Commit

Permalink
Removing repeated words (#5164)
Browse files Browse the repository at this point in the history
Co-authored-by: jason plumb <[email protected]>
  • Loading branch information
puneet-ekline and breedx-splk authored Oct 2, 2024
1 parent 3581e0e commit 9b53527
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions content/en/docs/collector/building/receiver.md
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,8 @@ 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
update your `NewFactory()` function in your `factory.go` file as follow:
receiver factory using the `receiver.NewFactory` function. Go ahead and update
your `NewFactory()` function in your `factory.go` file as follows:

```go
// NewFactory creates a factory for tailtracer receiver.
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
12 changes: 6 additions & 6 deletions content/en/docs/languages/java/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ 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
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
usage. Debug logging, if turned on, also increases write operations to disk and
memory usage.
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 usage.
Debug logging, if turned on, also increases write operations to disk and memory
usage.

Some instrumentations, for example JDBC or Redis, produce high span volumes that
increase agent overhead. For more information on how to turn off unnecessary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ 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
to `dogs-abcdef123.serverlessapis.com:80/api/v1` will have an attribute of
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`.

{{% /config_option %}}
Expand Down

0 comments on commit 9b53527

Please sign in to comment.