[chore] Fix typos (#1060)

This commit is contained in:
Kian-Meng Ang 2024-05-23 00:13:57 +08:00 committed by GitHub
parent 9adff435c7
commit a47ccedec2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 14 additions and 14 deletions

View File

@ -734,7 +734,7 @@ This and earlier versions were released as part of [the Specification](https://g
([#2827](https://github.com/open-telemetry/opentelemetry-specification/pull/2827))
- Define semantic conventions yaml for non-otlp conventions
([#2850](https://github.com/open-telemetry/opentelemetry-specification/pull/2850))
- Add more semantic convetion attributes of Apache RocketMQ
- Add more semantic convention attributes of Apache RocketMQ
([#2881](https://github.com/open-telemetry/opentelemetry-specification/pull/2881))
- Add `process.runtime.jvm.memory.usage_after_last_gc` metric to semantic conventions.
([#2901](https://github.com/open-telemetry/opentelemetry-specification/pull/2901))

View File

@ -52,7 +52,7 @@ markdown-link-check:
# This target runs markdown-toc on all files that contain
# a comment <!-- tocstop -->.
#
# The recommended way to prepate a .md file for markdown-toc is
# The recommended way to prepare a .md file for markdown-toc is
# to add these comments:
#
# <!-- toc -->

View File

@ -34,7 +34,7 @@ The following well-known definitions MUST be used if you set this attribute and
- **AWS Lambda:** The function [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
Take care not to use the "invoked ARN" directly but replace any
[alias suffix](https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html)
with the resolved function version, as the same runtime instance may be invokable with
with the resolved function version, as the same runtime instance may be invocable with
multiple different aliases.
- **GCP:** The [URI of the resource](https://cloud.google.com/iam/docs/full-resource-names)
- **Azure:** The [Fully Qualified Resource ID](https://docs.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,

View File

@ -60,7 +60,7 @@ The following well-known definitions MUST be used if you set this attribute and
* **AWS Lambda:** The function [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
Take care not to use the "invoked ARN" directly but replace any
[alias suffix](https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html)
with the resolved function version, as the same runtime instance may be invokable with
with the resolved function version, as the same runtime instance may be invocable with
multiple different aliases.
* **GCP:** The [URI of the resource](https://cloud.google.com/iam/docs/full-resource-names)
* **Azure:** The [Fully Qualified Resource ID](https://docs.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,

View File

@ -190,7 +190,7 @@ over all attribute values SHOULD be equal to the **limit**.
out of its **limit** should be called `entity.utilization`. For example,
`system.memory.utilization` for the fraction of memory in use. Utilization can
be with respect to a fixed limit or a soft limit. Utilization values are
represended as a ratio and are typically in the range `[0, 1]`, but may go above 1
represented as a ratio and are typically in the range `[0, 1]`, but may go above 1
in case of exceeding a soft limit.
- **time** - an instrument that measures passage of time should be called

View File

@ -7,7 +7,7 @@ aliases: [docs/specs/semconv/general/trace-general]
**Status**: [Mixed][DocumentStatus]
In OpenTelemetry spans can be created freely and its up to the implementor to
In OpenTelemetry spans can be created freely and its up to the implementer to
annotate them with attributes specific to the represented operation. Spans
represent specific operations in and between systems. Some of these operations
represent calls that use well-known protocols like HTTP or database calls.

View File

@ -37,7 +37,7 @@ The following well-known definitions MUST be used if you set this attribute and
* **AWS Lambda:** The function [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
Take care not to use the "invoked ARN" directly but replace any
[alias suffix](https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html)
with the resolved function version, as the same runtime instance may be invokable with
with the resolved function version, as the same runtime instance may be invocable with
multiple different aliases.
* **GCP:** The [URI of the resource](https://cloud.google.com/iam/docs/full-resource-names)
* **Azure:** The [Fully Qualified Resource ID](https://docs.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,

View File

@ -54,7 +54,7 @@ The following well-known definitions MUST be used if you set this attribute and
* **AWS Lambda:** The function [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
Take care not to use the "invoked ARN" directly but replace any
[alias suffix](https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html)
with the resolved function version, as the same runtime instance may be invokable with
with the resolved function version, as the same runtime instance may be invocable with
multiple different aliases.
* **GCP:** The [URI of the resource](https://cloud.google.com/iam/docs/full-resource-names)
* **Azure:** The [Fully Qualified Resource ID](https://docs.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,

View File

@ -11,7 +11,7 @@ BUILD_TOOL_SCHEMAS_VERSION=0.24.0
# List of versions that do not require or have a schema.
declare -a skip_versions=("1.0.0" "1.0.1" "1.1.0" "1.2.0" "1.3.0" "1.6.0")
# Verifies remote avilability of a schema file.
# Verifies remote availability of a schema file.
#
# If the schema file is available for download, THEN we make sure it is exactly
# what is in the repository. If the file is not available for download,
@ -32,7 +32,7 @@ verify_remote_availability() {
rm verify$ver
}
# Verifies remote avilability of a schema file in the current repository.
# Verifies remote availability of a schema file in the current repository.
#
# Args:
# 1 - version number
@ -65,7 +65,7 @@ grep -o -e '## v[1-9].*\s' $root_dir/CHANGELOG.md | grep -o '[1-9].*' | while re
verify_remote_availability "$ver"
done
# Now check the content of all schema files in the ../shemas directory.
# Now check the content of all schema files in the ../schemas directory.
for file in $schemas_dir/*; do
# Filename is the version number.
ver=$(basename $file)

View File

@ -52,7 +52,7 @@ groups:
unit: "{cpu}"
attributes: []
# sytem.memory.* metrics
# system.memory.* metrics
- id: metric.system.memory.usage
type: metric
metric_name: system.memory.usage

View File

@ -77,7 +77,7 @@ groups:
* **AWS Lambda:** The function [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
Take care not to use the "invoked ARN" directly but replace any
[alias suffix](https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html)
with the resolved function version, as the same runtime instance may be invokable with
with the resolved function version, as the same runtime instance may be invocable with
multiple different aliases.
* **GCP:** The [URI of the resource](https://cloud.google.com/iam/docs/full-resource-names)
* **Azure:** The [Fully Qualified Resource ID](https://docs.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,

View File

@ -49,7 +49,7 @@ groups:
stability: experimental
brief: "The logical CPU number [0..n-1]"
examples: [1]
# sytem.memory.* attribute group
# system.memory.* attribute group
- id: registry.system.memory
prefix: system.memory
type: attribute_group