Skip to content

Commit f4b9005

Browse files
authored
Merge branch 'main' into go-2025-goals
2 parents edf75be + e61624c commit f4b9005

File tree

221 files changed

+350
-248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+350
-248
lines changed

.cspell/en-words.txt

-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ quoteservice
111111
react-native-app
112112
recommendationservice
113113
redis
114-
relref
115114
Rexed
116115
runbook
117116
runbooks

.github/workflows/auto-update-community-members.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
auto-update-versions:
1111
name: Auto-update community members page
1212
runs-on: ubuntu-24.04
13-
# Remove the if statement below when testing againt a fork
13+
# Remove the if statement below when testing against a fork
1414
if: github.repository == 'open-telemetry/opentelemetry.io'
1515
steps:
1616
- name: Checkout

.github/workflows/auto-update-registry.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
auto-update-versions:
1111
name: Auto-update registry versions
1212
runs-on: ubuntu-20.04
13-
# Remove the if statement below when testing againt a fork
13+
# Remove the if statement below when testing against a fork
1414
if: github.repository == 'open-telemetry/opentelemetry.io'
1515
steps:
1616
- name: Checkout

.github/workflows/component-owners.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
contents: read
1111
issues: write
1212
pull-requests: write
13+
if: github.repository_owner == 'open-telemetry'
1314
steps:
1415
- uses: dyladan/[email protected]
1516
with:

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[submodule "content-modules/opentelemetry-specification"]
99
path = content-modules/opentelemetry-specification
1010
url = https://github.com/open-telemetry/opentelemetry-specification.git
11-
spec-pin = v1.40.0
11+
spec-pin = v1.41.0
1212
[submodule "content-modules/community"]
1313
path = content-modules/community
1414
url = https://github.com/open-telemetry/community

content/en/blog/2023/exponential-histograms.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,13 @@ OpenTelemetry’s Exponential Histograms in Prometheus][]
190190
191191
_A version of this article was [originally posted][] to the author's blog._
192192
193-
<!-- prettier-ignore-start -->
194193
[Using OpenTelemetry’s Exponential Histograms in Prometheus]:
195194
https://www.youtube.com/watch?v=W2_TpDcess8
196-
[OTEP 149]: https://github.com/open-telemetry/oteps/blob/976c9395e4cbb3ea933d3b51589eba94b87a17bd/text/0149-exponential-histogram.md
197-
[specification for exponential histogram aggregations]: /docs/specs/otel/metrics/sdk/#base2-exponential-bucket-histogram-aggregation
198-
[Why Histograms?]: {{% relref "why-histograms" %}}
199-
[Histograms vs Summaries]: {{% relref "histograms-vs-summaries" %}}
195+
[OTEP 149]:
196+
https://github.com/open-telemetry/oteps/blob/976c9395e4cbb3ea933d3b51589eba94b87a17bd/text/0149-exponential-histogram.md
197+
[specification for exponential histogram aggregations]:
198+
/docs/specs/otel/metrics/sdk/#base2-exponential-bucket-histogram-aggregation
199+
[Why Histograms?]: ../why-histograms/
200+
[Histograms vs Summaries]: ../histograms-vs-summaries/
201+
200202
[originally posted]: {{% param canonical_url %}}
201-
<!-- prettier-ignore-end -->

content/en/blog/2023/histograms-vs-summaries/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Histograms vs Summaries
33
date: 2023-05-15
44
author: '[Daniel Dyla](https://github.com/dyladan)'
55
canonical_url: https://dyladan.me/histograms/2023/05/03/histograms-vs-summaries/
6-
cSpell:ignore: aggregatable Björn Ganesh Kovalov Rabenstein Ruslan Vernekar
6+
cSpell:ignore: aggregable Björn Ganesh Kovalov Rabenstein Ruslan Vernekar
77
---
88

99
In many ways, histograms and summaries appear quite similar. They both roll up
@@ -34,9 +34,9 @@ could be off by as much as 60ms (`360 - 300`), a relative error of 17%
3434
(`60 / 360`). This error can be mitigated by configuring more and smaller
3535
buckets around your SLO values, but never eliminated.
3636

37-
One important property of histograms is that they are _aggregatable_, meaning
38-
that as long as the bucket boundaries line up, an arbitrary number of histograms
39-
can be combined into a single histogram with no loss of data or precision. This
37+
One important property of histograms is that they are _aggregable_, meaning that
38+
as long as the bucket boundaries line up, an arbitrary number of histograms can
39+
be combined into a single histogram with no loss of data or precision. This
4040
means that an arbitrary number of hosts can report histogram data structures to
4141
a server, which can aggregate and compute quantiles from all of them as if they
4242
were reported by a single host. By collecting histograms from 1 or more hosts

content/en/blog/2023/humans-of-otel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linkTitle: Humans of OTel
44
date: 2023-12-22
55
author: '[Adriana Villela](https://github.com/avillela) (Lightstep)'
66
# prettier-ignore
7-
cSpell:ignore: adiana alex aronoff bogdan boten caramanolis constance dapr drutu jacob juraci kanal kröhling paixāo purvi tyler utopic villela yahn youtube
7+
cSpell:ignore: alex aronoff bogdan boten caramanolis constance dapr drutu jacob juraci kanal kröhling paixāo purvi tyler utopic villela yahn youtube
88
---
99

1010
What a year it has been for OpenTelemetry!

content/en/blog/2023/otel-in-focus-09.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linkTitle: OTel in Focus 2023/09
44
date: 2023-10-01
55
author: '[Austin Parker](https://github.com/austinlparker)'
66
# prettier-ignore
7-
cSpell:ignore: attributesprocessor Autoscaler checkapi Contribfest coreinternal gopkg jaegerthrifthttp obsreport ottl resourcedetection resourceprocessor structs tailsampling ucum unmanaged
7+
cSpell:ignore: attributesprocessor Autoscaler checkapi Contribfest coreinternal jaegerthrifthttp obsreport ottl resourcedetection resourceprocessor structs tailsampling ucum unmanaged
88
---
99

1010
Welcome back to **OpenTelemetry in Focus** for September, 2023! The autumn winds

content/en/blog/2023/otel-in-focus-10.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linkTitle: OTel in Focus 2023/10
44
date: 2023-11-01
55
author: '[Austin Parker](https://github.com/austinlparker)'
66
# prettier-ignore
7-
cSpell:ignore: Contribfest distro dockerstats dockerstatsreceiver k8sclusterreceiver parquetexporter pdata Pekko receiver resourcetype signalfxexporter splunkhecexporter structs
7+
cSpell:ignore: Contribfest distro dockerstatsreceiver k8sclusterreceiver parquetexporter pdata Pekko resourcetype signalfxexporter splunkhecexporter structs
88
---
99

1010
Welcome back to **OpenTelemetry in Focus** for October, 2023! It's been another

content/en/blog/2024/llm-observability.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title:
55
linkTitle: LLM Observability
66
date: 2024-06-04
77
author: '[Ishan Jain](https://github.com/ishanjainn) (Grafana)'
8-
cSpell:ignore: associated chatbots Ishan ishan_jainn ishanjainn Jain llm
8+
cSpell:ignore: chatbots Ishan ishan_jainn ishanjainn Jain llm
99
---
1010

1111
Large Language Models (LLMs) are really popular right now, especially

content/en/blog/2024/otel-generative-ai/index.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The [Semantic Conventions for Generative AI](/docs/specs/semconv/gen-ai/) focus
4848
on capturing insights into AI model behavior through three primary signals:
4949
[Traces](/docs/concepts/signals/traces/),
5050
[Metrics](/docs/concepts/signals/metrics/), and
51-
[Events](/docs/specs/otel/logs/event-api/).
51+
[Events](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.40.0/specification/logs/event-api.md).
5252

5353
Together, these signals provide a comprehensive monitoring framework, enabling
5454
better cost management, performance tuning, and request tracing.
@@ -74,13 +74,19 @@ model responses, providing a granular view of model interactions. These insights
7474
are invaluable for debugging and optimizing AI applications where unexpected
7575
behaviors may arise.
7676

77-
{{% alert title="Note" color="info" %}} Note that we decided to use
78-
[events emitted](/docs/specs/otel/logs/api/#emit-an-event) with the
77+
{{% alert title="Note" color="info" %}}
78+
79+
Note that we decided to use [events emitted] with the
7980
[Logs API](/docs/specs/otel/logs/api/) specification in the Semantic Conventions
8081
for Generative AI. Events allows for us to define specific
8182
[semantic conventions](/docs/specs/semconv/general/events/) for the user prompts
8283
and model responses that we capture. This addition to the API is in development
83-
and considered unstable.{{% /alert %}}
84+
and considered unstable.
85+
86+
[events emitted]:
87+
https://github.com/open-telemetry/opentelemetry-specification/blob/v1.40.0/specification/logs/api.md#emit-an-event
88+
89+
{{% /alert %}}
8490

8591
### Extending Observability with Vendor-Specific Attributes
8692

content/en/blog/2024/prometheus-compatibility-survey/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ existing conventions.
175175

176176
For the most part, this feedback aligns with the future plans in the
177177
OpenTelemetry and Prometheus communities. The OpenTelemetry semantic conventions
178-
SIG is working on stabilizing conventions for a a wide variety of
179-
instrumentation. The OpenTelemetry Prometheus interoperability SIG is working on
180-
incorporating the results of this survey into the compatibility specification.
181-
The Prometheus community has
178+
SIG is working on stabilizing conventions for a wide variety of instrumentation.
179+
The OpenTelemetry Prometheus interoperability SIG is working on incorporating
180+
the results of this survey into the compatibility specification. The Prometheus
181+
community has
182182
[ambitious plans](https://prometheus.io/blog/2024/03/14/commitment-to-opentelemetry/)
183183
to add support for OpenTelemetry concepts.
184184

content/en/docs/collector/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Collector
33
description: Vendor-agnostic way to receive, process and export telemetry data.
44
aliases: [collector/about]
55
cascade:
6-
vers: 0.117.0
6+
vers: 0.118.0
77
weight: 270
88
---
99

content/en/docs/collector/configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configuration
33
weight: 20
44
description: Learn how to configure the Collector to suit your needs
55
# prettier-ignore
6-
cSpell:ignore: cfssl cfssljson fluentforward gencert genkey hostmetrics initca loglevel OIDC oidc otlphttp pprof prodevent prometheusremotewrite servicegraph spanevents spanmetrics struct upsert zpages
6+
cSpell:ignore: cfssl cfssljson fluentforward gencert genkey hostmetrics initca OIDC oidc otlphttp pprof prodevent prometheusremotewrite spanevents upsert zpages
77
---
88

99
<!-- markdownlint-disable link-fragments -->

content/en/docs/collector/management.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Management
33
description: How to manage your OpenTelemetry collector deployment at scale
44
weight: 23
5-
cSpell:ignore: AFVGQT backpressure distro GRRKNBJE hostmetrics loglevel
5+
cSpell:ignore: AFVGQT backpressure distro GRRKNBJE hostmetrics
66
---
77

88
This document describes how you can manage your OpenTelemetry Collector

content/en/docs/concepts/context-propagation.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ weight: 10
44
description: Learn about the concept that enables Distributed Tracing.
55
---
66

7-
With context propagation, [Signals](/docs/concepts/signals) can be correlated
8-
with each other, regardless of where they are generated. Although not limited to
9-
tracing, context propagation allows [traces](/docs/concepts/signals/traces) to
10-
build causal information about a system across services that are arbitrarily
11-
distributed across process and network boundaries.
7+
With context propagation, [signals](../signals/) can be correlated with each
8+
other, regardless of where they are generated. Although not limited to tracing,
9+
context propagation allows [traces](../signals/traces/) to build causal
10+
information about a system across services that are arbitrarily distributed
11+
across process and network boundaries.
1212

1313
To understand context propagation, you need to understand two separate concepts:
1414
context and propagation.

content/en/docs/concepts/resources/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ backend, resource attributes are grouped under the **Process** tab:
1313
![A screenshot from Jaeger showing an example output of resource attributes associated to a trace](screenshot-jaeger-resources.png)
1414

1515
A resource is added to the `TraceProvider` or `MetricProvider` when they are
16-
created during initialization. This association can not be changed later. After
17-
a resource is added, all spans and metrics produced from a `Tracer` or `Meter`
16+
created during initialization. This association cannot be changed later. After a
17+
resource is added, all spans and metrics produced from a `Tracer` or `Meter`
1818
from the provider will have the resource associated with them.
1919

2020
## Semantic Attributes with SDK-provided Default Value

content/en/docs/contributing/blog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ with the following details:
5555
review that PR. That sponsor should ideally be from a different company.
5656

5757
Maintainers of SIG Communication will verify, that your blog post satisfies all
58-
the requirements for being accepted. If you can not name a SIG/sponsor in your
58+
the requirements for being accepted. If you cannot name a SIG/sponsor in your
5959
initial issue details, they will also point you to an appropriate SIG, you can
6060
reach out to for sponsorship. Having a sponsor is optional, but having one
6161
increases the chance of having your blog post reviewed and approved more

content/en/docs/demo/services/load-generator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The load generator is based on the Python load testing framework
88
[Locust](https://locust.io). By default it will simulate users requesting
99
several different routes from the frontend.
1010

11-
[Load generator source](https://github.com/open-telemetry/opentelemetry-demo/blob/main/src/loadgenerator/)
11+
[Load generator source](https://github.com/open-telemetry/opentelemetry-demo/blob/main/src/load-generator/)
1212

1313
## Traces
1414

content/en/docs/demo/services/payment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cSpell:ignore: nanos
66
---
77

88
This service is responsible to process credit card payments for orders. It will
9-
return an error if the credit card is invalid or the payment can not be
9+
return an error if the credit card is invalid or the payment cannot be
1010
processed.
1111

1212
[Payment service source](https://github.com/open-telemetry/opentelemetry-demo/blob/main/src/payment/)

content/en/docs/kubernetes/operator/automatic.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 11
55
description:
66
An implementation of auto-instrumentation using the OpenTelemetry Operator.
77
# prettier-ignore
8-
cSpell:ignore: GRPCNETCLIENT k8sattributesprocessor otelinst otlpreceiver PTRACE REDISCALA Werkzeug
8+
cSpell:ignore: GRPCNETCLIENT k8sattributesprocessor otelinst otlpreceiver PTRACE REDISCALA
99
---
1010

1111
The OpenTelemetry Operator supports injecting and configuring

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linkTitle: Configure the SDK
44
weight: 13
55
aliases: [config]
66
# prettier-ignore
7-
cSpell:ignore: authservice autoconfigured blrp Customizer Dotel ignore LOWMEMORY myservice ottrace PKCS retryable tracepropagators
7+
cSpell:ignore: autoconfigured blrp Customizer Dotel ignore LOWMEMORY ottrace PKCS retryable
88
---
99

1010
<!-- markdownlint-disable blanks-around-fences -->

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ public class OtlpAuthenticationConfig {
15131513
}
15141514

15151515
private static String refreshToken(String username, String password) {
1516-
// For a production scenario, this would be replaced with out-of-band request to exchange
1516+
// For a production scenario, this would be replaced with an out-of-band request to exchange
15171517
// username / password for bearer token.
15181518
return "abc123";
15191519
}

content/en/docs/languages/js/resources.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ $ docker run --rm -p 8080:8080 nodejs-otel-getting-started
184184
Listening for requests on http://localhost:8080
185185
DockerCGroupV1Detector found resource. Resource {
186186
attributes: {
187-
'container.id': 'fffbeaf682f32ef86916f306ff9a7f88cc58048ab78f7de464da3c320ldb5c54'
187+
'container.id': 'fffbeaf682f32ef86916f306ff9a7f88cc58048ab78f7de464da3c3201db5c54'
188188
}
189189
}
190190
```

content/en/docs/security/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Security
33
cascade:
4-
collector_vers: 0.117.0
4+
collector_vers: 0.118.0
55
weight: 970
66
---
77

content/en/docs/zero-code/java/agent/disable.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Suppressing specific instrumentation
33
linkTitle: Suppressing instrumentation
44
weight: 11
55
# prettier-ignore
6-
cSpell:ignore: akka armeria classloaders clickhouse couchbase Customizer datasource dbcp Dotel dropwizard dubbo enduser finatra hikari hikaricp HSET httpasyncclient httpclient hystrix javalin jaxrs jaxws jedis jodd kotlinx ktor logback logmanager mojarra mybatis myfaces okhttp oshi pekko rabbitmq ratpack rediscala redisson restlet rocketmq serverlessapis shenyu spymemcached twilio vaadin vertx vibur webflux webmvc
6+
cSpell:ignore: akka armeria clickhouse couchbase datasource dbcp Dotel dropwizard dubbo finatra hikari hikaricp httpasyncclient httpclient hystrix javalin jaxrs jaxws jedis jodd kotlinx ktor logback logmanager mojarra mybatis myfaces okhttp oshi pekko rabbitmq ratpack rediscala redisson restlet rocketmq shenyu spymemcached twilio vaadin vertx vibur webflux webmvc
77
---
88

99
## Disabling the agent entirely

content/en/docs/zero-code/net/instrumentations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linkTitle: Instrumentations
44
description: OpenTelemetry .NET Automatic Instrumentation supported libraries.
55
weight: 10
66
# prettier-ignore
7-
cSpell:ignore: ASPNET ASPNETCORE Bootstrapper DBSTATEMENT ELASTICTRANSPORT ENTITYFRAMEWORKCORE GRCPNETCLIENT GRPCNETCLIENT HOSTINGSTARTUPASSEMBLIES HTTPCLIENT ILOGGER MASSTRANSIT MYSQLCONNECTOR MYSQLDATA NETRUNTIME NPGSQL Npgsql NSERVICEBUS ORACLEMDA RABBITMQ SQLCLIENT STACKEXCHANGEREDIS WCFCLIENT WCFSERVICE
7+
cSpell:ignore: ASPNET ASPNETCORE Bootstrapper DBSTATEMENT ELASTICTRANSPORT ENTITYFRAMEWORKCORE GRPCNETCLIENT HOSTINGSTARTUPASSEMBLIES HTTPCLIENT ILOGGER MASSTRANSIT MYSQLCONNECTOR MYSQLDATA NETRUNTIME NPGSQL Npgsql NSERVICEBUS ORACLEMDA RABBITMQ SQLCLIENT STACKEXCHANGEREDIS WCFCLIENT WCFSERVICE
88
---
99

1010
The OpenTelemetry .NET Automatic Instrumentation supports a wide variety of

data/registry-schema.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"title": {
1010
"type": "string",
1111
"description": "The title of the entry",
12-
"errorMessage": "The title of the entry must be a string and can not be empty",
12+
"errorMessage": "The title of the entry must be a string and cannot be empty",
1313
"minLength": 1
1414
},
1515
"registryType": {
@@ -64,7 +64,7 @@
6464
"description": {
6565
"type": "string",
6666
"description": "A description of the entry",
67-
"errorMessage": "The description of the entry must be a string and can not be empty"
67+
"errorMessage": "The description of the entry must be a string and cannot be empty"
6868
},
6969
"license": {
7070
"type": "string",
@@ -94,7 +94,7 @@
9494
"oneOf": [
9595
{
9696
"pattern": "OpenTelemetry Authors",
97-
"errorMessage": "The name of the author can not contain 'OpenTelemetry' except for 'OpenTelemetry Authors'"
97+
"errorMessage": "The name of the author cannot contain 'OpenTelemetry' except for 'OpenTelemetry Authors'"
9898
},
9999
{
100100
"pattern": "^(?!.*OpenTelemetry).*$"
@@ -213,7 +213,7 @@
213213
"reason": {
214214
"type": "string",
215215
"description": "The reason for deprecation",
216-
"errorMessage": "The reason for deprecation must be a string and can not be empty"
216+
"errorMessage": "The reason for deprecation must be a string and cannot be empty"
217217
}
218218
},
219219
"required": ["reason"],

data/registry/collector-exporter-alertmanager.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ authors:
1717
package:
1818
registry: go-collector
1919
name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alertmanagerexporter
20-
version: v0.117.0
20+
version: v0.118.0
2121
urls:
2222
repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/alertmanagerexporter
2323
createdAt: 2023-12-05

data/registry/collector-exporter-alibaba-cloud-log-service.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ createdAt: 2021-02-24
1717
package:
1818
registry: go-collector
1919
name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alibabacloudlogserviceexporter
20-
version: v0.117.0
20+
version: v0.118.0

data/registry/collector-exporter-aws-xray.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ createdAt: 2020-06-06
1616
package:
1717
registry: go-collector
1818
name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsxrayexporter
19-
version: v0.117.0
19+
version: v0.118.0

data/registry/collector-exporter-awscloudwatchlogs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ createdAt: 2020-11-05
1616
package:
1717
registry: go-collector
1818
name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awscloudwatchlogsexporter
19-
version: v0.117.0
19+
version: v0.118.0

data/registry/collector-exporter-awsemf.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ createdAt: 2020-06-06
1616
package:
1717
registry: go-collector
1818
name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsemfexporter
19-
version: v0.117.0
19+
version: v0.118.0

data/registry/collector-exporter-awss3.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ createdAt: 2020-11-05
1717
package:
1818
registry: go-collector
1919
name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awss3exporter
20-
version: v0.117.0
20+
version: v0.118.0

data/registry/collector-exporter-azure-monitor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ createdAt: 2020-06-06
1616
package:
1717
registry: go-collector
1818
name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuremonitorexporter
19-
version: v0.117.0
19+
version: v0.118.0

0 commit comments

Comments
 (0)