Skip to content

Commit

Permalink
Merge branch 'main' into codeboten/add-with_resource_as_constant_labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Boten authored Feb 15, 2024
2 parents 06c1b2b + 89aa013 commit fa83641
Show file tree
Hide file tree
Showing 17 changed files with 69 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ release.

- Fix `Resource` field type in Logs Data Model.
([#3826](https://github.com/open-telemetry/opentelemetry-specification/pull/3826))
- Remove confusing description from `Body` field in Logs Data Model to make it clear the Bridge API must support a structured body.
([#3827](https://github.com/open-telemetry/opentelemetry-specification/pull/3827))
- Deconstruct number scalar type to double and signed integer.
([#3854](https://github.com/open-telemetry/opentelemetry-specification/pull/3854))

Expand Down
5 changes: 4 additions & 1 deletion specification/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ cascade:
body_class: otel-docs-spec
github_repo: &repo https://github.com/open-telemetry/opentelemetry-specification
github_subdir: specification
path_base_for_github_subdir: content/en/docs/specs/otel/
path_base_for_github_subdir: tmp/otel/specification
github_project_repo: *repo
path_base_for_github_subdir:
from: tmp/otel/specification/_index.md
to: README.md
--->

# OpenTelemetry Specification
Expand Down
6 changes: 6 additions & 0 deletions specification/baggage/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
<!--- Hugo front matter used to generate the website version of this page:
path_base_for_github_subdir:
from: tmp/otel/specification/baggage/_index.md
to: baggage/README.md
--->

# Baggage
3 changes: 3 additions & 0 deletions specification/common/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Common concepts
aliases: [/docs/reference/specification/common/common]
path_base_for_github_subdir:
from: tmp/otel/specification/common/_index.md
to: common/README.md
--->

# Common specification concepts
Expand Down
6 changes: 6 additions & 0 deletions specification/compatibility/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
<!--- Hugo front matter used to generate the website version of this page:
path_base_for_github_subdir:
from: tmp/otel/specification/compatibility/_index.md
to: compatibility/README.md
--->

# Compatibility
6 changes: 6 additions & 0 deletions specification/configuration/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
<!--- Hugo front matter used to generate the website version of this page:
path_base_for_github_subdir:
from: tmp/otel/specification/configuration/_index.md
to: configuration/README.md
--->

# Configuration
3 changes: 3 additions & 0 deletions specification/context/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<!--- Hugo front matter used to generate the website version of this page:
aliases: [/docs/reference/specification/context/context]
path_base_for_github_subdir:
from: tmp/otel/specification/context/_index.md
to: context/README.md
--->

# Context
Expand Down
3 changes: 3 additions & 0 deletions specification/logs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Logs
aliases: [/docs/reference/specification/logs/overview]
path_base_for_github_subdir:
from: tmp/otel/specification/logs/_index.md
to: logs/README.md
--->

# OpenTelemetry Logging
Expand Down
18 changes: 8 additions & 10 deletions specification/logs/data-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,16 +402,14 @@ corresponding short names).

### Field: `Body`

Type: any.

Description: A value containing the body of the log record (see the description
of `any` type above). Can be for example a human-readable string message
(including multi-line) describing the event in a free form or it can be a
structured data composed of arrays and maps of other values. First-party
Applications SHOULD use a string message. However, a structured body SHOULD be
used to preserve the semantics of structured logs emitted by Third-party
Applications. Can vary for each occurrence of the event coming from the same
source. This field is optional.
Type: [`any`](#type-any).

Description: A value containing the body of the log record. Can be for example
a human-readable string message (including multi-line) describing the event in
a free form or it can be a structured data composed of arrays and maps of other
values. Body MUST support [`any` type](#type-any) to preserve the semantics of
structured logs emitted by the applications. Can vary for each occurrence of the
event coming from the same source. This field is optional.

### Field: `Resource`

Expand Down
3 changes: 3 additions & 0 deletions specification/metrics/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Metrics
path_base_for_github_subdir:
from: tmp/otel/specification/metrics/_index.md
to: metrics/README.md
--->

# OpenTelemetry Metrics
Expand Down
2 changes: 1 addition & 1 deletion specification/metrics/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -1597,7 +1597,7 @@ The filtering is done at the [MetricProducer](#metricproducer) for performance r
The `MetricFilter` allows filtering an entire metric stream - dropping or allowing all its attribute sets -
by its `TestMetric` operation, which accepts the metric stream information
(scope, name, kind and unit) and returns an enumeration: `Accept`, `Drop`
or `Allow_Partial`. If the latter returned, the `TestAttributes` operation
or `Accept_Partial`. If the latter returned, the `TestAttributes` operation
is to be called per attribute set of that metric stream, returning an enumeration
determining if the data point for that (metric stream, attributes) pair is to be
allowed in the result of the [MetricProducer](#metricproducer) `Produce` operation.
Expand Down
3 changes: 3 additions & 0 deletions specification/metrics/sdk_exporters/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Exporters
path_base_for_github_subdir:
from: tmp/otel/specification/metrics/sdk_exporters/_index.md
to: metrics/sdk_exporters/README.md
--->

# Metrics Exporters
3 changes: 3 additions & 0 deletions specification/protocol/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Protocol
path_base_for_github_subdir:
from: tmp/otel/specification/protocol/_index.md
to: protocol/README.md
--->

# OpenTelemetry Protocol
Expand Down
6 changes: 6 additions & 0 deletions specification/resource/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
<!--- Hugo front matter used to generate the website version of this page:
path_base_for_github_subdir:
from: tmp/otel/specification/resource/_index.md
to: resource/README.md
--->

# Resource
3 changes: 3 additions & 0 deletions specification/schemas/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Schemas
aliases: [/docs/reference/specification/schemas/overview]
path_base_for_github_subdir:
from: tmp/otel/specification/schemas/_index.md
to: schemas/README.md
--->

# Telemetry Schemas
Expand Down
6 changes: 6 additions & 0 deletions specification/trace/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
<!--- Hugo front matter used to generate the website version of this page:
path_base_for_github_subdir:
from: tmp/otel/specification/trace/_index.md
to: trace/README.md
--->

# Trace
3 changes: 3 additions & 0 deletions specification/trace/sdk_exporters/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Exporters
path_base_for_github_subdir:
from: tmp/otel/specification/trace/sdk_exporters/_index.md
to: trace/sdk_exporters/README.md
--->

# Trace Exporters

0 comments on commit fa83641

Please sign in to comment.