Skip to content

Commit 954103a

Browse files
authored
Fixing typos (open-telemetry#1941)
1 parent ed44b54 commit 954103a

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ file in `/content/en/registry` for your project. You can find a template in
2424

2525
## Submitting a blog post
2626

27-
You can submit a blog post either by forking this repository and writting it
27+
You can submit a blog post either by forking this repository and writing it
2828
locally or by using the GitHub UI. In both cases we ask you to follow the
2929
instructions provided by the [blog post template](archetypes/blog.md).
3030

Diff for: content/en/blog/2022/debug-otel-with-otel/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ people how to instrument nginx with OpenTelemetry, but also how a distributed
3131
trace crossing the webserver would look like.
3232

3333
While Jaeger showed us a trace flowing from the frontend application down to the
34-
nginx, the connection between nginx and python app was not visibile: we had two
34+
nginx, the connection between nginx and python app was not visible: we had two
3535
disconnected traces.
3636

3737
This came as a surprise, because in a prior test with a Java application as
@@ -218,7 +218,7 @@ SDK, it looks like that Java is flexible in taking a `traceparent` with multiple
218218
values, even though such format is invalid per the W3C Trace Context specification.
219219
So propagation from nginx to the Java service worked, while in contrast,
220220
Python (and other languages) do not provide that flexibility and propagation
221-
from nginx to the downstream service silenty fails.
221+
from nginx to the downstream service silently fails.
222222

223223
Note, that we are not suggesting that the other languages should have the same
224224
flexibility as Java has with reading `traceparent` or vice-versa: the bug lives

Diff for: content/en/blog/2022/dotnet-instrumentation-first-beta.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ASP.NET Core requests, you need to use the ASP.NET Core instrumentation package
1717
and initialize it with the OpenTelemetry SDK.
1818

1919
Now, developers can use [automatic instrumentation](/docs/reference/specification/glossary/#automatic-instrumentation)
20-
to initalize [signal](/docs/reference/specification/glossary/#signals) providers
20+
to initialize [signal](/docs/reference/specification/glossary/#signals) providers
2121
and generate telemetry data for supported [instrumented libraries](/docs/reference/specification/glossary/#instrumented-library).
2222
This approach has several benefits:
2323

Diff for: content/en/blog/2022/k8s-otel-expose/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ most used are probably:
3131
3. HTTP Basic Authentication
3232

3333
This article focuses on **HTTP Basic Authentication** for simplicity. It is intended to show how
34-
a secure setup can be operated without key management or further thrid party services.
34+
a secure setup can be operated without key management or further third party services.
3535

3636

3737
For more information about TLS configuration I would like to refer to the article
@@ -116,7 +116,7 @@ metadata:
116116
```
117117
118118
In the next step we create an OpenTelemetry Collector using the `OpenTelemetryCollector`
119-
CRD. The most important entries are `mode`, `image` and the configured basicauth extention.
119+
CRD. The most important entries are `mode`, `image` and the configured basicauth extension.
120120
In the manifest below the mode `deployment` was chosen to guarantee that at least one
121121
collector pod is available for processing incoming information. Furthermore the default
122122
collector image was overwritten with the [contrib version](https://github.com/open-telemetry/opentelemetry-collector-contrib#opentelemetry-collector-contrib).
@@ -240,7 +240,7 @@ spec:
240240

241241
In order to be able to determine the origin of the transmitted traces, the
242242
span-tags are extended by identifying metadata with the help of the
243-
[k8sattributes proccessor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.58.0/processor/k8sattributesprocessor).
243+
[k8sattributes processor](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/v0.58.0/processor/k8sattributesprocessor).
244244
K8sattribute processor is available in the OpenTelemetry Collector contrib
245245
version. In the next step we create a service account with the necessary permissions.
246246
If you want to learn more about the k8s metadata, you can read this post
@@ -282,7 +282,7 @@ metadata:
282282
Lets have a quick look on the most important edge collector settings. A `daemonset` is
283283
used as deployment mode to ensure that one collector instance per node exists. The `basicauth`
284284
extension contains `username` and `password` to identify itself to the exposed remote collector.
285-
More container and node specific information are provided by the `k8sattributes` proccesor via
285+
More container and node specific information are provided by the `k8sattributes` processor via
286286
the kubernetes [kubernetes downward-api](https://kubernetes.io/docs/concepts/workloads/pods/downward-api/).
287287
What is not covered is the cluster availability zone and the cluster name. To be able to
288288
identify the reported spans later, they are inserted manually with the help of the `resource`

Diff for: content/en/docs/collector/configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ exporters:
340340
# Data sources: metrics
341341
prometheusremotewrite:
342342
endpoint: "http://some.url:9411/api/prom/push"
343-
# For offical Prometheus (e.g. running via Docker)
343+
# For official Prometheus (e.g. running via Docker)
344344
# endpoint: 'http://prometheus:9090/api/v1/write'
345345
# tls:
346346
# insecure: true

Diff for: content/en/docs/instrumentation/cpp/manual.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ context to remote services using the W3C Trace Context HTTP headers.
104104
105105
## Metrics
106106
107-
### Initalize Exporter and Reader
107+
### Initialize Exporter and Reader
108108
109109
Initialize an exporter and a reader. In this case, we initialize an OStream Exporter which will print to stdout by default. The reader periodically collects metrics from the Aggregation Store and exports them.
110110
@@ -114,7 +114,7 @@ std::unique_ptr<opentelemetry::sdk::metrics::MetricReader> reader{
114114
new opentelemetry::sdk::metrics::PeriodicExportingMetricReader(std::move(exporter), options)};
115115
```
116116

117-
### Initalize Meter Provider
117+
### Initialize Meter Provider
118118

119119
Initialize a MeterProvider and add the reader. We will use this to obtain Meter objects in the future.
120120

@@ -149,7 +149,7 @@ histogram_counter->Record(val, labelkv);
149149
150150
### Create Observable Counter
151151
152-
Create a Observable Counter Instrument from the Meter, and add a callback. The callbackwould be used to record the measurement during metrics collection. Ensure to keep the Instrument object active for the lifetime of collection.
152+
Create a Observable Counter Instrument from the Meter, and add a callback. The callback would be used to record the measurement during metrics collection. Ensure to keep the Instrument object active for the lifetime of collection.
153153
154154
```cpp
155155
auto meter = provider->GetMeter(name, "1.2.0");

Diff for: content/en/docs/instrumentation/js/instrumentation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ provider.register();
120120
```
121121

122122
You'll need to bundle this file with your web application to be able to use
123-
tracing throughought the rest of your web application.
123+
tracing throughout the rest of your web application.
124124

125125
### Picking the right span processor
126126

@@ -442,7 +442,7 @@ SDK. The biggest difference, aside from initialization code, is that you'll have
442442
to manually set spans as active in the current context to be able to create
443443
nested spans.
444444

445-
### Initilizing tracing with `sdk-trace-base`
445+
### Initializing tracing with `sdk-trace-base`
446446

447447
Initializing tracing is similar to how you'd do it with Node.js or the Web SDK.
448448

Diff for: content/en/docs/instrumentation/net/automatic.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 3
55
---
66

77
You can use [automatic instrumentation](/docs/reference/specification/glossary/#automatic-instrumentation)
8-
to initalize [signal](/docs/reference/specification/glossary/#signals) providers
8+
to initialize [signal](/docs/reference/specification/glossary/#signals) providers
99
and generate telemetry data for supported [instrumented libraries](/docs/reference/specification/glossary/#instrumented-library)
1010
without modifying the application's source code.
1111

Diff for: content/en/docs/instrumentation/swift/manual.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import OpenTelemetrySdk
1919
import OpenTelemetryProtocolExporter
2020

2121

22-
// initalize the OtlpTraceExporter
22+
// initialize the OtlpTraceExporter
2323
let otlpConfiguration = OtlpConfiguration(timeout: OtlpConfiguration.DefaultTimeoutInterval)
2424

2525
let grpcChannel = ClientConnection.usingPlatformAppropriateTLS(for: MultiThreadedEventLoopGroup(numberOfThreads:1))
@@ -125,7 +125,7 @@ Sometimes it's useful to do something with the current/active span. Here's how t
125125
### Span Attributes
126126

127127
Spans can also be annotated with additional attributes. All spans will be automatically annotated with the `Resource` attributes attached to the tracer provider.
128-
The Opentelementry-swift sdk already provides instrumentation of common attributes in the `SDKResourceExtension` instrumentation.
128+
The Opentelemetry-swift sdk already provides instrumentation of common attributes in the `SDKResourceExtension` instrumentation.
129129
In this example a span for a network request capturing details about that request using existing [semantic conventions](/docs/reference/specification/trace/semantic_conventions/).
130130

131131
```swift
@@ -160,7 +160,7 @@ func myFunction() {
160160
span.status = .error(description: "something bad happened")
161161
return
162162
}
163-
// do somthing
163+
// do something
164164
}
165165
```
166166

Diff for: content/en/registry/collector-receiver-httpcheck.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
- collector
1010
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/httpcheckreceiver
1111
license: Apache 2.0
12-
description: The HTTP Check Receiver can be used for synthethic checks against HTTP endpoints. This receiver will make a request to the specified `endpoint` using the
12+
description: The HTTP Check Receiver can be used for synthetic checks against HTTP endpoints. This receiver will make a request to the specified `endpoint` using the
1313
authors: OpenTelemetry Authors
1414
otVersion: latest
1515
---

0 commit comments

Comments
 (0)