From 405d7cd27dfac9fc835ac3438d4ced9a61cd758a Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Tue, 2 Apr 2024 03:09:45 -0400 Subject: [PATCH 01/22] [CI] Address PR-action workflow submodule problem: commit not found (#4228) --- .github/workflows/pr-actions.yml | 2 +- .gitmodules | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-actions.yml b/.github/workflows/pr-actions.yml index e4df9645fbb8..8c16950b3b97 100644 --- a/.github/workflows/pr-actions.yml +++ b/.github/workflows/pr-actions.yml @@ -23,7 +23,7 @@ jobs: pull-requests: write env: - DEPTH: --depth 100 # submodule clone depth + DEPTH: --depth 1000 # submodule clone depth steps: - name: Extract action name diff --git a/.gitmodules b/.gitmodules index ae003b87b482..bdcd3962d38e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,8 +1,9 @@ [submodule "themes/docsy"] path = themes/docsy - url = https://github.com/cncf/docsy.git + url = https://github.com/google/docsy.git docsy-pin = v0.9.1-17-gb077a74 - docsy-reminder = "Ensure that all tags from google/docsy are also present in cncf/docsy, otherwise add (push) them." + docsy-note = "2024-04-01 Switching to google/docsy.git from cncf/docsy.git since we don't have any CNCF customizations." + docsy-reminder = "Ensure that any tag referenced by `docsy-pin` is present in the remote repo (url), otherwise add (push) the tags to the repo." [submodule "content-modules/opentelemetry-specification"] path = content-modules/opentelemetry-specification url = https://github.com/open-telemetry/opentelemetry-specification.git From 9cb908df9176287ecf1ad5400f12034b0934c306 Mon Sep 17 00:00:00 2001 From: Mark Taylor Date: Tue, 2 Apr 2024 13:49:51 +0100 Subject: [PATCH 02/22] Add IBMMQ instrumentation to registry (#4207) Co-authored-by: Patrice Chalin Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- data/registry/instrumentation-go-ibmmq.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 data/registry/instrumentation-go-ibmmq.yml diff --git a/data/registry/instrumentation-go-ibmmq.yml b/data/registry/instrumentation-go-ibmmq.yml new file mode 100644 index 000000000000..ce439846bc44 --- /dev/null +++ b/data/registry/instrumentation-go-ibmmq.yml @@ -0,0 +1,20 @@ +# cSpell:ignore ibmmq mqseries +title: IBM MQ Instrumentation for OpenTelemetry +registryType: instrumentation +language: go +tags: + - ibmmq + - mqseries + - go + - instrumentation +urls: + repo: https://github.com/ibm-messaging/mq-metric-samples/tree/master/cmd/mq_otel +license: Apache 2.0 +description: + This package extracts metrics from an IBM MQ queue manager and forwards them + to an OpenTelemetry environment. +authors: + - name: Mark Taylor, IBM MQ Development +createdAt: 2024-03-26 +isNative: false +isFirstParty: true From c77de1d6ec4540064b1d6b948032e72d70f3a35e Mon Sep 17 00:00:00 2001 From: Zeke Date: Tue, 2 Apr 2024 21:05:22 +0800 Subject: [PATCH 03/22] Add Bonree to vendor list (#4221) Co-authored-by: Patrice Chalin Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Phillip Carter --- data/ecosystem/vendors.yaml | 7 +++++++ static/refcache.json | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/data/ecosystem/vendors.yaml b/data/ecosystem/vendors.yaml index 074816852e50..fb07ff083d78 100644 --- a/data/ecosystem/vendors.yaml +++ b/data/ecosystem/vendors.yaml @@ -385,3 +385,10 @@ contact: 'info@vunetsystems.com' oss: false commercial: true +- name: Bonree # cspell:ignore Bonree + distribution: false + nativeOTLP: true + url: 'https://one.bonree.com/open/document/187' + contact: 'otel@bonree.com' + oss: false + commercial: true diff --git a/static/refcache.json b/static/refcache.json index 8c07a232e3b9..99e017df18d9 100644 --- a/static/refcache.json +++ b/static/refcache.json @@ -5403,6 +5403,10 @@ "StatusCode": 206, "LastSeen": "2024-01-30T06:06:02.410999-05:00" }, + "https://one.bonree.com/open/document/187": { + "StatusCode": 206, + "LastSeen": "2024-04-02T09:45:50.142295155Z" + }, "https://oneuptime.com/product/apm": { "StatusCode": 200, "LastSeen": "2024-02-24T22:10:38.147777993Z" From 2eea5a41a255c841aa82166175b6b96b828575e9 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Tue, 2 Apr 2024 10:26:56 -0400 Subject: [PATCH 04/22] [CI] Ensure check-text GHA jobs use proper node version (#4235) Co-authored-by: Phillip Carter --- .github/workflows/check-text.yml | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-text.yml b/.github/workflows/check-text.yml index 9516a2c4e602..6f0ada090584 100644 --- a/.github/workflows/check-text.yml +++ b/.github/workflows/check-text.yml @@ -9,13 +9,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - # Make sure that we only install the dependencies for textlint to speed up install - - run: | + - name: Create and use reduced-dependencies package.json + run: | mkdir -p tmp jq '.devDependencies |= with_entries( select(.key | startswith("textlint"))) | del(.dependencies, .optionalDependencies)' \ - package.json > tmp/package-min.json - cp tmp/package-min.json package.json + package.json > tmp/package-ci.json + cp tmp/package-ci.json package.json + - uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + cache: npm + cache-dependency-path: tmp/package-ci.json - run: npm install --ignore-scripts --omit=optional - run: .github/workflows/scripts/textlint.sh @@ -24,7 +29,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Create and use reduced-dependencies package.json run: | mkdir -p tmp @@ -32,7 +36,12 @@ jobs: select(.key | test("gulp|markdown|through|require|yargs")) ) | del(.dependencies, .optionalDependencies)' \ - package.json > tmp/package-min.json - cp tmp/package-min.json package.json + package.json > tmp/package-ci.json + cp tmp/package-ci.json package.json + - uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + cache: npm + cache-dependency-path: tmp/package-ci.json - run: npm install --ignore-scripts --omit=optional - run: npm run check:markdown From 01fc58f3bcc1d2aeb98c21d14127865de8153585 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Wed, 3 Apr 2024 08:10:27 +0300 Subject: [PATCH 05/22] Add FluentCI Engine to integration list (#4237) Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> --- data/ecosystem/integrations.yaml | 5 +++++ static/refcache.json | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/data/ecosystem/integrations.yaml b/data/ecosystem/integrations.yaml index 71badf97cc62..9af287587aa2 100644 --- a/data/ecosystem/integrations.yaml +++ b/data/ecosystem/integrations.yaml @@ -196,3 +196,8 @@ docsUrl: https://clickhouse.com/docs/en/operations/opentelemetry components: [C++] oss: true +- name: FluentCI Engine + url: https://github.com/fluentci-io/fluentci-engine + docsUrl: https://github.com/fluentci-io/fluentci-engine#-opentelemetry-tracing + components: [Rust] + oss: true diff --git a/static/refcache.json b/static/refcache.json index 99e017df18d9..293e8bbcc98b 100644 --- a/static/refcache.json +++ b/static/refcache.json @@ -2491,6 +2491,14 @@ "StatusCode": 200, "LastSeen": "2024-01-18T19:11:40.246785-05:00" }, + "https://github.com/fluentci-io/fluentci-engine": { + "StatusCode": 200, + "LastSeen": "2024-04-02T19:07:26.97328652Z" + }, + "https://github.com/fluentci-io/fluentci-engine#-opentelemetry-tracing": { + "StatusCode": 200, + "LastSeen": "2024-04-02T19:07:27.790189475Z" + }, "https://github.com/frigus02/opentelemetry-application-insights": { "StatusCode": 200, "LastSeen": "2024-01-18T19:11:01.862354-05:00" From 6fd7aa132c2da53fd4f76eb2cec249f4ef11fc59 Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Wed, 3 Apr 2024 07:17:35 +0200 Subject: [PATCH 06/22] Auto-update registry versions (4fd7d770cec5d7a172a2f0eb613ee7dced709edf) (#4239) Co-authored-by: Phillip Carter --- data/registry/exporter-dotnet-console.yml | 2 +- data/registry/exporter-dotnet-inmemory.yml | 2 +- data/registry/exporter-dotnet-opentelemetryprotocol.yml | 2 +- data/registry/exporter-dotnet-zipkin.yml | 2 +- data/registry/instrumentation-js-prisma.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/data/registry/exporter-dotnet-console.yml b/data/registry/exporter-dotnet-console.yml index 78f462fead3d..2303b503d037 100644 --- a/data/registry/exporter-dotnet-console.yml +++ b/data/registry/exporter-dotnet-console.yml @@ -15,4 +15,4 @@ createdAt: 2022-11-07 package: registry: nuget name: OpenTelemetry.Exporter.Console - version: 1.8.0-rc.1 + version: 1.8.0 diff --git a/data/registry/exporter-dotnet-inmemory.yml b/data/registry/exporter-dotnet-inmemory.yml index 22b974c4c0a0..a9045b5f886b 100644 --- a/data/registry/exporter-dotnet-inmemory.yml +++ b/data/registry/exporter-dotnet-inmemory.yml @@ -17,4 +17,4 @@ createdAt: 2022-11-07 package: registry: nuget name: OpenTelemetry.Exporter.InMemory - version: 1.8.0-rc.1 + version: 1.8.0 diff --git a/data/registry/exporter-dotnet-opentelemetryprotocol.yml b/data/registry/exporter-dotnet-opentelemetryprotocol.yml index b3f28d24c261..0609b52837b6 100644 --- a/data/registry/exporter-dotnet-opentelemetryprotocol.yml +++ b/data/registry/exporter-dotnet-opentelemetryprotocol.yml @@ -19,4 +19,4 @@ createdAt: 2020-02-05 package: registry: nuget name: OpenTelemetry.Exporter.OpenTelemetryProtocol - version: 1.8.0-rc.1 + version: 1.8.0 diff --git a/data/registry/exporter-dotnet-zipkin.yml b/data/registry/exporter-dotnet-zipkin.yml index 791c23b06234..9134aed63cb8 100644 --- a/data/registry/exporter-dotnet-zipkin.yml +++ b/data/registry/exporter-dotnet-zipkin.yml @@ -12,7 +12,7 @@ authors: package: name: OpenTelemetry.Exporter.Zipkin registry: nuget - version: 1.8.0-rc.1 + version: 1.8.0 urls: repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Zipkin createdAt: 2022-11-07 diff --git a/data/registry/instrumentation-js-prisma.yml b/data/registry/instrumentation-js-prisma.yml index 8b7561889708..e81ab15e1f62 100644 --- a/data/registry/instrumentation-js-prisma.yml +++ b/data/registry/instrumentation-js-prisma.yml @@ -17,4 +17,4 @@ createdAt: 2022-08-25 package: registry: npm name: '@prisma/instrumentation' - version: 5.11.0 + version: 5.12.0 From 7952ea8074b020da6c08226ec2379179cfe0cc7f Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Wed, 3 Apr 2024 01:39:33 -0400 Subject: [PATCH 07/22] Normalize vendors.yaml, and don't spell-check it (#4238) Co-authored-by: Phillip Carter --- .cspell.yml | 1 + data/ecosystem/vendors.yaml | 253 ++++++++++++++++++------------------ 2 files changed, 127 insertions(+), 127 deletions(-) diff --git a/.cspell.yml b/.cspell.yml index f2faf61458b7..d1cbfd8c7f7c 100644 --- a/.cspell.yml +++ b/.cspell.yml @@ -5,6 +5,7 @@ version: '0.2' caseSensitive: true ignorePaths: - '*.svg' + - 'vendors.yaml' # words here are only listed for their spelling, if there is a certain way # to write a word (e.g. OpenTelemetry vs Opentelemetry or cloud native vs # cloud-native), edit the text-lint rules in .textlintrc.yml diff --git a/data/ecosystem/vendors.yaml b/data/ecosystem/vendors.yaml index fb07ff083d78..9049968596e0 100644 --- a/data/ecosystem/vendors.yaml +++ b/data/ecosystem/vendors.yaml @@ -1,394 +1,393 @@ -# cSpell:ignore Causely Coralogix Cribl ITRS Kloud Logz Crowdstrike Humio Lumigo observ Uptrace Greptime KloudMate qryn ClickHouse Tracetest opensource OneUptime - name: AppDynamics (Cisco) nativeOTLP: true - url: 'https://docs.appdynamics.com/latest/en/application-monitoring/appdynamics-for-opentelemetry' - contact: '' + url: https://docs.appdynamics.com/latest/en/application-monitoring/appdynamics-for-opentelemetry + contact: oss: false commercial: true - name: Aria by VMware (Wavefront) nativeOTLP: true - url: 'https://docs.wavefront.com/opentelemetry_tracing.html' - contact: '' + url: https://docs.wavefront.com/opentelemetry_tracing.html + contact: oss: false commercial: true - name: Aspecto nativeOTLP: true - url: 'https://www.aspecto.io' - contact: '' + url: https://www.aspecto.io + contact: oss: false commercial: true - name: AWS nativeOTLP: false - url: 'https://aws-otel.github.io' - contact: '' + url: https://aws-otel.github.io + contact: oss: false commercial: true - name: Azure nativeOTLP: false - url: 'https://docs.microsoft.com/azure/azure-monitor/app/opentelemetry-overview' - contact: '' + url: https://docs.microsoft.com/azure/azure-monitor/app/opentelemetry-overview + contact: oss: false commercial: true - name: Better Stack nativeOTLP: true url: https://betterstack.com/docs/logs/open-telemetry/#2-setup - contact: 'hello@betterstack.com' + contact: hello@betterstack.com oss: false commercial: true - name: Causely distribution: false nativeOTLP: true - url: 'https://github.com/Causely/documentation' - contact: 'support@causely.io' + url: https://github.com/Causely/documentation + contact: support@causely.io oss: false commercial: true - name: Chronosphere distribution: false nativeOTLP: true - url: 'https://docs.chronosphere.io/ingest/otel/otel-ingest' - contact: 'support@chronosphere.io' + url: https://docs.chronosphere.io/ingest/otel/otel-ingest + contact: support@chronosphere.io oss: false commercial: true - name: Control Plane nativeOTLP: true - url: 'https://docs.controlplane.com/reference/org#tracing' - contact: 'support@controlplane.com' + url: https://docs.controlplane.com/reference/org#tracing + contact: support@controlplane.com oss: false commercial: true - name: Coralogix nativeOTLP: true - url: 'https://coralogix.com/docs/opentelemetry/' - contact: '' + url: https://coralogix.com/docs/opentelemetry/ + contact: oss: false commercial: true - name: Cribl nativeOTLP: true - url: 'https://docs.cribl.io/stream/sources-otel' - contact: 'hello@cribl.io' + url: https://docs.cribl.io/stream/sources-otel + contact: hello@cribl.io oss: false commercial: true - name: DaoCloud nativeOTLP: true - url: 'https://docs.daocloud.io/en/insight/06UserGuide/01quickstart/otel/otel/' - contact: '' + url: https://docs.daocloud.io/en/insight/06UserGuide/01quickstart/otel/otel/ + contact: oss: false commercial: true - name: Datadog nativeOTLP: true - url: 'https://docs.datadoghq.com/opentelemetry/' - contact: '' + url: https://docs.datadoghq.com/opentelemetry/ + contact: oss: false commercial: true - name: Dynatrace nativeOTLP: true - url: 'https://www.dynatrace.com/support/help/how-to-use-dynatrace/transactions-and-services/service-monitoring-settings/opentelemetry/' - contact: '' + url: https://www.dynatrace.com/support/help/how-to-use-dynatrace/transactions-and-services/service-monitoring-settings/opentelemetry/ + contact: oss: false commercial: true - name: Elastic nativeOTLP: true - url: 'https://www.elastic.co/guide/en/apm/get-started/current/open-telemetry-elastic.html' - contact: '' + url: https://www.elastic.co/guide/en/apm/get-started/current/open-telemetry-elastic.html + contact: oss: false commercial: true - name: F5 nativeOTLP: true - url: 'https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/f5cloudexporter' - contact: '' + url: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/f5cloudexporter + contact: oss: false commercial: true - name: Google Cloud Platform nativeOTLP: true - url: 'https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlecloudexporter' - contact: '' + url: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlecloudexporter + contact: oss: false commercial: true - name: Grafana Labs nativeOTLP: true - url: 'https://grafana.com/oss/opentelemetry/' - contact: 'https://github.com/jpkrohling/' + url: https://grafana.com/oss/opentelemetry/ + contact: https://github.com/jpkrohling/ oss: true commercial: true - name: Helios nativeOTLP: true - url: 'https://gethelios.dev/' - contact: '' + url: https://gethelios.dev/ + contact: oss: false commercial: true - name: Highlight nativeOTLP: true - url: 'https://www.highlight.io/docs/general/company/open-source/contributing/adding-an-sdk/' - contact: 'support@highlight.io' + url: https://www.highlight.io/docs/general/company/open-source/contributing/adding-an-sdk/ + contact: support@highlight.io oss: true commercial: true - name: Honeycomb nativeOTLP: true - url: 'https://docs.honeycomb.io/getting-data-in/' - contact: '' + url: https://docs.honeycomb.io/getting-data-in/ + contact: oss: false commercial: true - name: HyperDX nativeOTLP: true - url: 'https://www.hyperdx.io/docs/install/opentelemetry' - contact: 'support@hyperdx.io' + url: https://www.hyperdx.io/docs/install/opentelemetry + contact: support@hyperdx.io oss: true commercial: true - name: Immersive Fusion nativeOTLP: true - url: 'https://docs.immersivefusion.com/instrument' - contact: 'support@immersivefusion.com' + url: https://docs.immersivefusion.com/instrument + contact: support@immersivefusion.com oss: false commercial: true - name: Instana nativeOTLP: true - url: 'https://www.ibm.com/docs/en/obi/current?topic=apis-opentelemetry' - contact: '' + url: https://www.ibm.com/docs/en/obi/current?topic=apis-opentelemetry + contact: oss: false commercial: true - name: ITRS nativeOTLP: true - url: 'https://docs.itrsgroup.com/docs/geneos/data-collection/opentelemetry/current/opentelemetry.html' - contact: '' + url: https://docs.itrsgroup.com/docs/geneos/data-collection/opentelemetry/current/opentelemetry.html + contact: oss: false commercial: true - name: KloudFuse nativeOTLP: true - url: 'https://kloudfuse.atlassian.net/wiki/spaces/EX/pages/753860609/APM#Sending-traces-to-Kloudfuse-data-plane%3A' - contact: '' + url: https://kloudfuse.atlassian.net/wiki/spaces/EX/pages/753860609/APM#Sending-traces-to-Kloudfuse-data-plane%3A + contact: oss: false commercial: true - name: KloudMate nativeOTLP: true - url: 'https://docs.kloudmate.com/using-opentelemetry-collector' - contact: 'hello@kloudmate.com' + url: https://docs.kloudmate.com/using-opentelemetry-collector + contact: hello@kloudmate.com oss: false commercial: true - name: ServiceNow Cloud Observability (Lightstep) nativeOTLP: true - url: 'https://github.com/lightstep?q=launcher' - contact: '' + url: https://github.com/lightstep?q=launcher + contact: oss: false commercial: true - name: LogicMonitor nativeOTLP: true - url: 'https://www.logicmonitor.com/support/tracing/getting-started-with-tracing' - contact: '' + url: https://www.logicmonitor.com/support/tracing/getting-started-with-tracing + contact: oss: false commercial: true - name: Logz.io nativeOTLP: false - url: 'https://docs.logz.io/shipping/tracing-sources/opentelemetry.html#overview' - contact: '' + url: https://docs.logz.io/shipping/tracing-sources/opentelemetry.html#overview + contact: oss: false commercial: true - name: LogScale by Crowdstrike (Humio) nativeOTLP: true - url: 'https://library.humio.com/falcon-logscale/log-shippers-opentelemetry.html' - contact: '' + url: https://library.humio.com/falcon-logscale/log-shippers-opentelemetry.html + contact: oss: false commercial: true - name: Lumigo nativeOTLP: true - url: 'https://docs.lumigo.io/docs/opentelemetry' - contact: '' + url: https://docs.lumigo.io/docs/opentelemetry + contact: oss: false commercial: true - name: Middleware nativeOTLP: true - url: 'https://docs.middleware.io/open-telemetry' - contact: 'hello@middleware.io' + url: https://docs.middleware.io/open-telemetry + contact: hello@middleware.io oss: false commercial: true - name: New Relic nativeOTLP: true - url: 'https://newrelic.com/solutions/opentelemetry' - contact: '' + url: https://newrelic.com/solutions/opentelemetry + contact: oss: false commercial: true - name: Observe, Inc. nativeOTLP: true - url: 'https://docs.observeinc.com/en/latest/content/integrations/otel/opentelemetry.html' - contact: '' + url: https://docs.observeinc.com/en/latest/content/integrations/otel/opentelemetry.html + contact: oss: false commercial: true - name: observIQ nativeOTLP: true - url: 'https://docs.bindplane.observiq.com' - contact: '' + url: https://docs.bindplane.observiq.com + contact: oss: true commercial: true - name: OneUptime nativeOTLP: true - url: 'https://oneuptime.com/product/apm' - contact: 'hello@oneuptime.com' + url: https://oneuptime.com/product/apm + contact: hello@oneuptime.com oss: true commercial: true - name: OpenObserve nativeOTLP: true - url: 'https://openobserve.ai/docs/ingestion/logs/otlp/' - contact: 'hello@openobserve.ai' + url: https://openobserve.ai/docs/ingestion/logs/otlp/ + contact: hello@openobserve.ai oss: true commercial: true - name: OpenText nativeOTLP: true - url: 'https://docs.microfocus.com/doc/OBS/SaaS/ConfigureOTELCollector' - contact: 'skotagiri@opentext.com' + url: https://docs.microfocus.com/doc/OBS/SaaS/ConfigureOTELCollector + contact: skotagiri@opentext.com oss: false commercial: true - name: Oracle nativeOTLP: true - url: 'https://docs.oracle.com/en-us/iaas/application-performance-monitoring/doc/configure-open-source-tracing-systems.html#GUID-4D941163-F357-4839-8B06-688876D4C61F' - contact: '' + url: https://docs.oracle.com/en-us/iaas/application-performance-monitoring/doc/configure-open-source-tracing-systems.html#GUID-4D941163-F357-4839-8B06-688876D4C61F + contact: oss: false commercial: true - name: qryn nativeOTLP: true - url: 'https://qryn.metrico.in/#/support?id=tempo-api' - contact: 'https://github.com/lmangani' + url: https://qryn.metrico.in/#/support?id=tempo-api + contact: https://github.com/lmangani oss: true commercial: true - name: Sentry nativeOTLP: false - url: 'https://sentry.io/for/opentelemetry/' - contact: '' + url: https://sentry.io/for/opentelemetry/ + contact: oss: false commercial: true - name: Red Hat nativeOTLP: true - url: 'https://docs.openshift.com/container-platform/4.14/otel/otel-release-notes.html' - contact: 'ploffay@redhat.com' + url: https://docs.openshift.com/container-platform/4.14/otel/otel-release-notes.html + contact: ploffay@redhat.com oss: true commercial: true - name: Sentry Software nativeOTLP: true - url: 'https://www.sentrysoftware.com/products/hardware-sentry-opentelemetry-collector.html' - contact: '' + url: https://www.sentrysoftware.com/products/hardware-sentry-opentelemetry-collector.html + contact: oss: false commercial: true - name: ServicePilot nativeOTLP: true - url: 'https://www.servicepilot.com/en/doc/apm#opentelemetry' - contact: '' + url: https://www.servicepilot.com/en/doc/apm#opentelemetry + contact: oss: false commercial: true - name: SigNoz nativeOTLP: true - url: 'https://signoz.io' - contact: '' + url: https://signoz.io + contact: oss: true commercial: true - name: SolarWinds nativeOTLP: true - url: 'https://documentation.solarwinds.com/en/success_center/observability/default.htm#cshid=third-otel-integration' - contact: '' + url: https://documentation.solarwinds.com/en/success_center/observability/default.htm#cshid=third-otel-integration + contact: oss: false commercial: true - name: Splunk nativeOTLP: true - url: 'https://docs.splunk.com/Observability/gdi/opentelemetry/opentelemetry.html' - contact: '' + url: https://docs.splunk.com/Observability/gdi/opentelemetry/opentelemetry.html + contact: oss: false commercial: true - name: Sumo Logic nativeOTLP: true - url: 'https://help.sumologic.com/docs/send-data/opentelemetry-collector/' - contact: 'https://github.com/astencel-sumo' + url: https://help.sumologic.com/docs/send-data/opentelemetry-collector/ + contact: https://github.com/astencel-sumo oss: false commercial: true - name: TelemetryHub nativeOTLP: true - url: 'https://app.telemetryhub.com/docs' - contact: '' + url: https://app.telemetryhub.com/docs + contact: oss: false commercial: true - name: Traceloop nativeOTLP: true - url: 'https://www.traceloop.com' - contact: '' + url: https://www.traceloop.com + contact: oss: false commercial: true - name: Uptrace nativeOTLP: true - url: 'https://uptrace.dev' - contact: '' + url: https://uptrace.dev + contact: oss: false commercial: true - name: Apache SkyWalking nativeOTLP: true - url: 'https://skywalking.apache.org/docs/main/v9.0.0/en/setup/backend/opentelemetry-receiver/' - contact: '' + url: https://skywalking.apache.org/docs/main/v9.0.0/en/setup/backend/opentelemetry-receiver/ + contact: oss: true commercial: false - name: Fluent Bit nativeOTLP: true url: https://docs.fluentbit.io/manual/pipeline/inputs/opentelemetry/ - contact: '' + contact: oss: true commercial: false - name: Jaeger nativeOTLP: true url: https://www.jaegertracing.io/docs/1.47/getting-started/ - contact: '' + contact: oss: true commercial: false - name: ObserveAny nativeOTLP: true url: https://www.observeany.com/learn/opentelemetry-receiver - contact: 'contact@observeany.com' + contact: contact@observeany.com oss: false commercial: true - name: GreptimeDB nativeOTLP: true url: https://docs.greptime.com/user-guide/clients/otlp - contact: 'info@greptime.com' + contact: info@greptime.com oss: true commercial: true - name: ClickHouse nativeOTLP: false - url: 'https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/clickhouseexporter' - contact: 'https://github.com/tbragin' + url: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/clickhouseexporter + contact: https://github.com/tbragin oss: true commercial: true - name: TingYun nativeOTLP: true - url: 'https://wukongdoc.tingyun.com/apm/userguide/deploy_manage/opentelemetry.html' - contact: 'otel@tingyun.com' + url: https://wukongdoc.tingyun.com/apm/userguide/deploy_manage/opentelemetry.html + contact: otel@tingyun.com oss: false commercial: true - name: VictoriaMetrics nativeOTLP: true - url: 'https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/docs#sending-data-via-opentelemetry' - contact: 'https://github.com/hagen1778' + url: https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/docs#sending-data-via-opentelemetry + contact: https://github.com/hagen1778 oss: true commercial: true - name: Tracetest nativeOTLP: true - url: 'https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector' - contact: 'https://github.com/adnanrahic' + url: https://docs.tracetest.io/configuration/connecting-to-data-stores/opentelemetry-collector + contact: https://github.com/adnanrahic oss: true commercial: true - name: Alibaba Cloud nativeOTLP: true - url: 'https://www.alibabacloud.com/help/en/arms/tracing-analysis/get-started-with-tracing-analysis' - contact: 'opensource@alibaba-inc.com' + url: https://www.alibabacloud.com/help/en/arms/tracing-analysis/get-started-with-tracing-analysis + contact: opensource@alibaba-inc.com oss: false commercial: true - name: Seq nativeOTLP: true - url: 'https://docs.datalust.co/docs/opentelemetry-net-sdk-1' - contact: 'support@datalust.co' + url: https://docs.datalust.co/docs/opentelemetry-net-sdk-1 + contact: support@datalust.co oss: false commercial: true - name: VuNet Systems nativeOTLP: true - url: 'https://vunetsystems.com/vuapp360/' - contact: 'info@vunetsystems.com' + url: https://vunetsystems.com/vuapp360/ + contact: info@vunetsystems.com oss: false commercial: true -- name: Bonree # cspell:ignore Bonree +- name: Bonree distribution: false nativeOTLP: true - url: 'https://one.bonree.com/open/document/187' - contact: 'otel@bonree.com' + url: https://one.bonree.com/open/document/187 + contact: otel@bonree.com oss: false commercial: true From ad29f7a568b7804939c487d0d226aec61f9096da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Wed, 3 Apr 2024 10:38:18 +0200 Subject: [PATCH 08/22] Go: OTLP metrics exporters are stable (#4240) --- content/en/docs/languages/go/exporters.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/languages/go/exporters.md b/content/en/docs/languages/go/exporters.md index 86d5f1608752..7214a2b2d615 100644 --- a/content/en/docs/languages/go/exporters.md +++ b/content/en/docs/languages/go/exporters.md @@ -110,7 +110,7 @@ docker run -d --name jaeger \ jaegertracing/all-in-one:latest ``` -### OTLP metrics over HTTP (Experimental) +### OTLP metrics over HTTP [`go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp`](https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp) contains an implementation of OTLP metrics exporter using HTTP with binary @@ -129,7 +129,7 @@ func newExporter(ctx context.Context) (metric.Exporter, error) { } ``` -### OTLP metrics over gRPC (Experimental) +### OTLP metrics over gRPC [`go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc`](https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc) contains an implementation of OTLP metrics exporter using gRPC. From bd0a67fb5925bf9a3d32b2dffab04cbc20a3dda1 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Wed, 3 Apr 2024 18:19:08 -0400 Subject: [PATCH 09/22] CONTRIBUTING: link to website page not repo src (#4232) --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 63d9d1a43755..67979d4ccf84 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -69,8 +69,8 @@ PR shortly or let maintainers now if you run into any blockers. ## Contributor's guide To learn how to contribute fixes and new content to this project, read the -[Contributor's guide](/content/en/docs/contributing), which includes a style -guide and useful information on the review process. +[Contributor's guide](https://opentelemetry.io/docs/contributing/), which +includes a style guide and useful information on the review process. ## Development From ff05f49ff256e69d0c985674f919ed8a62332046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Kie=C5=82kowicz?= Date: Thu, 4 Apr 2024 00:23:56 +0200 Subject: [PATCH 10/22] [OTel.NET.Auto] Avoid reference to prerelease (#4243) --- content/en/docs/languages/net/automatic/nuget-packages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/languages/net/automatic/nuget-packages.md b/content/en/docs/languages/net/automatic/nuget-packages.md index 051a130179fa..be7bbbe89f4c 100644 --- a/content/en/docs/languages/net/automatic/nuget-packages.md +++ b/content/en/docs/languages/net/automatic/nuget-packages.md @@ -37,7 +37,7 @@ To automatically instrument your application with OpenTelemetry .NET add the `OpenTelemetry.AutoInstrumentation` package to your project: ```terminal -dotnet add [] package OpenTelemetry.AutoInstrumentation --prerelease +dotnet add [] package OpenTelemetry.AutoInstrumentation ``` If the application references packages that can be instrumented, but, require @@ -46,7 +46,7 @@ you to either add the missing instrumentation package or to skip the instrumentation of the corresponding package: ```terminal -~packages/opentelemetry.autoinstrumentation.buildtasks/1.0.0-rc.1/build/OpenTelemetry.AutoInstrumentation.BuildTasks.targets(29,5): error : OpenTelemetry.AutoInstrumentation: add a reference to the instrumentation package 'MongoDB.Driver.Core.Extensions.DiagnosticSources' version 1.3.0 or add 'MongoDB.Driver.Core' to the property 'SkippedInstrumentations' to suppress this error. +~packages/opentelemetry.autoinstrumentation.buildtasks/1.4.0/build/OpenTelemetry.AutoInstrumentation.BuildTasks.targets(29,5): error : OpenTelemetry.AutoInstrumentation: add a reference to the instrumentation package 'MongoDB.Driver.Core.Extensions.DiagnosticSources' version 1.3.0 or add 'MongoDB.Driver.Core' to the property 'SkippedInstrumentations' to suppress this error. ``` To resolve the error either add the recommended instrumentation package or skip From b0210a97f575201a115d3ef9fc2b37e7ab63d4a5 Mon Sep 17 00:00:00 2001 From: Ronen Schaffer Date: Thu, 4 Apr 2024 01:42:10 +0300 Subject: [PATCH 11/22] Update example.md (#4244) --- content/en/docs/languages/python/automatic/example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/languages/python/automatic/example.md b/content/en/docs/languages/python/automatic/example.md index 2b66f9417ed6..d1c087a3f342 100644 --- a/content/en/docs/languages/python/automatic/example.md +++ b/content/en/docs/languages/python/automatic/example.md @@ -284,7 +284,7 @@ instrumentor.instrument_app(app, excluded_urls="/server_request") ``` After running the example again, no instrumentation should appear on the server -side. This is because or the `excluded_urls` option passed to `instrument_app` +side. This is because of the `excluded_urls` option passed to `instrument_app` that effectively stops the `server_request` function from being instrumented as its URL matches the regular expression passed to `excluded_urls`. From 444f4c9e4e17d84c66db7943697a1b6c678df662 Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri-Benedetti Date: Thu, 4 Apr 2024 16:11:06 +0200 Subject: [PATCH 12/22] Replace recommendationCache for recommendationServiceCacheFailure (#4249) --- content/en/docs/demo/scenarios/recommendation-cache/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/en/docs/demo/scenarios/recommendation-cache/index.md b/content/en/docs/demo/scenarios/recommendation-cache/index.md index 881a19916d38..4db3ba63386d 100644 --- a/content/en/docs/demo/scenarios/recommendation-cache/index.md +++ b/content/en/docs/demo/scenarios/recommendation-cache/index.md @@ -12,8 +12,9 @@ traces to determine the cause of a memory leak. ## Setup To run this scenario, you will need to deploy the demo application and enable -the `recommendationCache` feature flag. Let the application run for about 10 -minutes or so after enabling the feature flag to allow for data to populate. +the `recommendationServiceCacheFailure` feature flag. Let the application run +for about 10 minutes or so after enabling the feature flag to allow for data to +populate. ## Diagnosis From 9fed7f3f154511b224e168274a564b8419fcc89b Mon Sep 17 00:00:00 2001 From: Fabrizio Ferri-Benedetti Date: Thu, 4 Apr 2024 16:21:27 +0200 Subject: [PATCH 13/22] Remove note regarding load-balancing exporter (#4248) Co-authored-by: Phillip Carter --- content/en/docs/collector/deployment/gateway.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/content/en/docs/collector/deployment/gateway.md b/content/en/docs/collector/deployment/gateway.md index e4d7f03cf720..5f0547c8b1f0 100644 --- a/content/en/docs/collector/deployment/gateway.md +++ b/content/en/docs/collector/deployment/gateway.md @@ -35,9 +35,6 @@ Let's have a look at such a case where we are using the load-balancing exporter: signals to a group of collectors. 3. The collectors are configured to send telemetry data to one or more backends. -{{% alert title="Note" color="info" %}} Currently, the load-balancing exporter -only supports pipelines of the `traces` type. {{% /alert %}} - ## Examples ### NGINX as an "out-of-the-box" load balancer From 795f40da10dec57bf977b2447d37619a49868420 Mon Sep 17 00:00:00 2001 From: hime Date: Thu, 4 Apr 2024 20:04:24 +0530 Subject: [PATCH 14/22] updated connector readme (#4086) --- content/en/docs/collector/building/connector.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/en/docs/collector/building/connector.md b/content/en/docs/collector/building/connector.md index 9f2c8f80f184..e36741c2f030 100644 --- a/content/en/docs/collector/building/connector.md +++ b/content/en/docs/collector/building/connector.md @@ -44,7 +44,8 @@ pipeline and send it to the metrics pipeline. Historically, some processors transmitted data by making use of a work-around that follows a bad practice where a processor directly exports data after processing. The connector component solves the need for this work-around and the processors that used the -work around have been deprecated. +work around have been deprecated. On the same line, above mentioned processors +are also now deprecated in recent releases and are replaced by the connectors. Additional details about the connector's full capabilities can be found at the following links: From 426fa3b9f77489f9dbd4e5a016e4b4e86073cd71 Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Fri, 5 Apr 2024 02:23:05 +0200 Subject: [PATCH 15/22] Update semantic-conventions version to v1.25.0 (#4253) --- .gitmodules | 2 +- content-modules/semantic-conventions | 2 +- scripts/content-modules/adjust-pages.pl | 4 ++- static/refcache.json | 44 +++++++++++++++++++++++++ 4 files changed, 49 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index bdcd3962d38e..5af52073fd80 100644 --- a/.gitmodules +++ b/.gitmodules @@ -19,7 +19,7 @@ [submodule "content-modules/semantic-conventions"] path = content-modules/semantic-conventions url = https://github.com/open-telemetry/semantic-conventions - semconv-pin = v1.24.0 + semconv-pin = v1.25.0 [submodule "content-modules/opamp-spec"] path = content-modules/opamp-spec url = https://github.com/open-telemetry/opamp-spec diff --git a/content-modules/semantic-conventions b/content-modules/semantic-conventions index cafda7127683..f1be1511d917 160000 --- a/content-modules/semantic-conventions +++ b/content-modules/semantic-conventions @@ -1 +1 @@ -Subproject commit cafda7127683b7f667e27cdbd3220510b6f998c9 +Subproject commit f1be1511d91743a457974ed9a21b9193b2fe0e51 diff --git a/scripts/content-modules/adjust-pages.pl b/scripts/content-modules/adjust-pages.pl index 9e5d63367a4e..24037d945e73 100755 --- a/scripts/content-modules/adjust-pages.pl +++ b/scripts/content-modules/adjust-pages.pl @@ -20,7 +20,7 @@ my %versions = qw( spec: 1.31.0 otlp: 1.1.0 - semconv: 1.24.0 + semconv: 1.25.0 ); my $otelSpecVers = $versions{'spec:'}; my $otlpSpecVers = $versions{'otlp:'}; @@ -104,6 +104,8 @@ () # TODO: drop after fix of https://github.com/open-telemetry/semantic-conventions/issues/419 s|#instrument-advice\b|#instrument-advisory-parameters|g; + # TODO: drop after fix of https://github.com/open-telemetry/semantic-conventions/pull/883 + s|(\]\(process.md)#process(\))|$1$2|g; } # SPECIFICATION custom processing diff --git a/static/refcache.json b/static/refcache.json index 293e8bbcc98b..66acfeeda282 100644 --- a/static/refcache.json +++ b/static/refcache.json @@ -23,6 +23,10 @@ "StatusCode": 206, "LastSeen": "2024-01-18T19:02:04.404963-05:00" }, + "http://publicsuffix.org": { + "StatusCode": 206, + "LastSeen": "2024-04-04T20:00:39.641034-04:00" + }, "http://surl.li/fqdox": { "StatusCode": 200, "LastSeen": "2024-01-30T05:19:24.403175-05:00" @@ -4639,6 +4643,10 @@ "StatusCode": 200, "LastSeen": "2024-01-30T16:14:52.798893-05:00" }, + "https://img.shields.io/badge/-experimental-blue": { + "StatusCode": 200, + "LastSeen": "2024-04-04T20:00:41.081038-04:00" + }, "https://img.shields.io/badge/-stable-lightgreen": { "StatusCode": 200, "LastSeen": "2024-01-30T16:14:23.500512-05:00" @@ -4863,6 +4871,18 @@ "StatusCode": 200, "LastSeen": "2024-01-30T15:25:14.866011-05:00" }, + "https://learn.microsoft.com/azure/event-hubs/event-hubs-about": { + "StatusCode": 200, + "LastSeen": "2024-04-04T20:00:42.394166-04:00" + }, + "https://learn.microsoft.com/azure/service-bus-messaging/message-transfers-locks-settlement#peeklock": { + "StatusCode": 200, + "LastSeen": "2024-04-04T20:00:36.37594-04:00" + }, + "https://learn.microsoft.com/azure/service-bus-messaging/service-bus-messaging-overview": { + "StatusCode": 200, + "LastSeen": "2024-04-04T20:00:36.708409-04:00" + }, "https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.diagnostics.iexceptionhandler": { "StatusCode": 200, "LastSeen": "2024-01-30T16:14:24.003181-05:00" @@ -4907,6 +4927,10 @@ "StatusCode": 200, "LastSeen": "2024-01-30T16:14:24.361664-05:00" }, + "https://learn.microsoft.com/windows/win32/api/ws2tcpip/nf-ws2tcpip-getaddrinfo": { + "StatusCode": 200, + "LastSeen": "2024-04-04T20:00:38.324091-04:00" + }, "https://letsencrypt.org/": { "StatusCode": 206, "LastSeen": "2024-01-18T19:02:28.807499-05:00" @@ -4975,6 +4999,10 @@ "StatusCode": 206, "LastSeen": "2024-01-18T08:54:07.441277-05:00" }, + "https://man7.org/linux/man-pages/man3/getaddrinfo.3.html": { + "StatusCode": 206, + "LastSeen": "2024-04-04T20:00:36.904671-04:00" + }, "https://man7.org/linux/man-pages/man5/proc.5.html": { "StatusCode": 206, "LastSeen": "2024-01-30T16:04:48.740728-05:00" @@ -7895,6 +7923,10 @@ "StatusCode": 206, "LastSeen": "2024-01-30T16:05:22.031745-05:00" }, + "https://www.freedesktop.org/software/systemd/man/machine-id.html": { + "StatusCode": 206, + "LastSeen": "2024-04-04T20:00:40.645221-04:00" + }, "https://www.fulcrumapp.com/": { "StatusCode": 206, "LastSeen": "2024-01-30T06:06:09.538965-05:00" @@ -7963,6 +7995,10 @@ "StatusCode": 206, "LastSeen": "2024-01-18T19:07:50.513752-05:00" }, + "https://www.ietf.org/rfc/rfc4122.txt": { + "StatusCode": 206, + "LastSeen": "2024-04-04T20:00:31.717502-04:00" + }, "https://www.influxdata.com/time-series-platform/telegraf/": { "StatusCode": 206, "LastSeen": "2024-01-30T16:05:10.329813-05:00" @@ -8519,6 +8555,10 @@ "StatusCode": 206, "LastSeen": "2024-01-18T19:10:25.020977-05:00" }, + "https://www.rfc-editor.org/rfc/rfc2732#section-2": { + "StatusCode": 206, + "LastSeen": "2024-04-04T20:00:34.113871-04:00" + }, "https://www.rfc-editor.org/rfc/rfc3986": { "StatusCode": 206, "LastSeen": "2024-01-30T06:01:08.536854-05:00" @@ -8547,6 +8587,10 @@ "StatusCode": 206, "LastSeen": "2024-01-30T16:04:54.139913-05:00" }, + "https://www.rfc-editor.org/rfc/rfc7301.html": { + "StatusCode": 206, + "LastSeen": "2024-04-04T20:00:34.603183-04:00" + }, "https://www.rfc-editor.org/rfc/rfc9110.html": { "StatusCode": 200, "LastSeen": "2024-01-18T19:07:23.848229-05:00" From 9b9596e21766406b0d93b203fd1bf184f831111e Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:21:33 +0200 Subject: [PATCH 16/22] Auto-update registry versions (8309a4bd1b5cae966e651e7a39532beb3509a9b0) (#4255) --- data/registry/exporter-js-jaeger.yml | 2 +- data/registry/exporter-js-prometheus.yml | 2 +- data/registry/exporter-js-zipkin.yml | 2 +- data/registry/instrumentation-dotnet-aspnetcore.yml | 2 +- data/registry/instrumentation-dotnet-grpcnetclient.yml | 2 +- data/registry/instrumentation-dotnet-http.yml | 2 +- data/registry/instrumentation-dotnet-sqlclient.yml | 2 +- data/registry/instrumentation-js-amqplib.yml | 2 +- data/registry/instrumentation-js-aws-lambda.yml | 2 +- data/registry/instrumentation-js-aws-sdk.yml | 2 +- data/registry/instrumentation-js-bunyan.yml | 2 +- data/registry/instrumentation-js-cassandra-driver.yml | 2 +- data/registry/instrumentation-js-cassandra.yml | 2 +- data/registry/instrumentation-js-connect.yml | 2 +- data/registry/instrumentation-js-cucumber.yml | 2 +- data/registry/instrumentation-js-dataloader.yml | 2 +- data/registry/instrumentation-js-dns.yml | 2 +- data/registry/instrumentation-js-document-load.yml | 2 +- data/registry/instrumentation-js-express.yml | 2 +- data/registry/instrumentation-js-fastify.yml | 2 +- data/registry/instrumentation-js-fetch.yml | 2 +- data/registry/instrumentation-js-fs.yml | 2 +- data/registry/instrumentation-js-generic-pool.yml | 2 +- data/registry/instrumentation-js-graphql.yml | 2 +- data/registry/instrumentation-js-grpc.yml | 2 +- data/registry/instrumentation-js-hapi.yml | 2 +- data/registry/instrumentation-js-http.yml | 2 +- data/registry/instrumentation-js-ioredis.yml | 2 +- data/registry/instrumentation-js-knex.yml | 2 +- data/registry/instrumentation-js-koa.yml | 2 +- data/registry/instrumentation-js-long-task.yml | 2 +- data/registry/instrumentation-js-lru-memoizer.yml | 2 +- data/registry/instrumentation-js-memcached.yml | 2 +- data/registry/instrumentation-js-mongodb.yml | 2 +- data/registry/instrumentation-js-mongoose-instrumentation.yml | 2 +- data/registry/instrumentation-js-mysql.yml | 2 +- data/registry/instrumentation-js-mysql2.yml | 2 +- data/registry/instrumentation-js-nestjs-core.yml | 2 +- data/registry/instrumentation-js-nestjs.yml | 2 +- data/registry/instrumentation-js-net.yml | 2 +- data/registry/instrumentation-js-pg.yml | 2 +- data/registry/instrumentation-js-pillarjs-router.yml | 2 +- data/registry/instrumentation-js-pino.yml | 2 +- data/registry/instrumentation-js-postgres.yml | 2 +- data/registry/instrumentation-js-prisma.yml | 2 +- data/registry/instrumentation-js-redis-4.yml | 2 +- data/registry/instrumentation-js-redis.yml | 2 +- data/registry/instrumentation-js-restify.yml | 2 +- data/registry/instrumentation-js-router.yml | 2 +- data/registry/instrumentation-js-socket.io.yml | 2 +- data/registry/instrumentation-js-tedious.yml | 2 +- data/registry/instrumentation-js-user-interaction.yml | 2 +- data/registry/instrumentation-js-winston.yml | 2 +- data/registry/instrumentation-js-xml-http-request.yml | 2 +- data/registry/instrumentation-php-laravel.yml | 2 +- data/registry/resource-detector-js-alibabacloud.yml | 2 +- data/registry/resource-detector-js-aws.yml | 2 +- data/registry/resource-detector-js-azure.yml | 2 +- data/registry/resource-detector-js-container.yml | 2 +- data/registry/resource-detector-js-gcp.yml | 2 +- data/registry/resource-detector-js-instana.yml | 2 +- data/registry/tools-ruby-sentry.yml | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/data/registry/exporter-js-jaeger.yml b/data/registry/exporter-js-jaeger.yml index 4b99c5a9cb30..f585efbd76c4 100644 --- a/data/registry/exporter-js-jaeger.yml +++ b/data/registry/exporter-js-jaeger.yml @@ -14,4 +14,4 @@ createdAt: 2020-02-06 package: registry: npm name: '@opentelemetry/exporter-jaeger' - version: 1.22.0 + version: 1.23.0 diff --git a/data/registry/exporter-js-prometheus.yml b/data/registry/exporter-js-prometheus.yml index 41c5f5185e48..1b63b84f1de1 100644 --- a/data/registry/exporter-js-prometheus.yml +++ b/data/registry/exporter-js-prometheus.yml @@ -14,4 +14,4 @@ createdAt: 2020-02-06 package: registry: npm name: '@opentelemetry/exporter-prometheus' - version: 0.49.1 + version: 0.50.0 diff --git a/data/registry/exporter-js-zipkin.yml b/data/registry/exporter-js-zipkin.yml index 2d7df21238f8..21fc00f593b3 100644 --- a/data/registry/exporter-js-zipkin.yml +++ b/data/registry/exporter-js-zipkin.yml @@ -11,7 +11,7 @@ authors: package: name: '@opentelemetry/exporter-zipkin' registry: npm - version: 1.22.0 + version: 1.23.0 urls: repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-exporter-zipkin docs: /docs/languages/js/exporters/#zipkin diff --git a/data/registry/instrumentation-dotnet-aspnetcore.yml b/data/registry/instrumentation-dotnet-aspnetcore.yml index d9d5645ff92e..265bd3793433 100644 --- a/data/registry/instrumentation-dotnet-aspnetcore.yml +++ b/data/registry/instrumentation-dotnet-aspnetcore.yml @@ -18,4 +18,4 @@ createdAt: 2022-11-07 package: registry: nuget name: OpenTelemetry.Instrumentation.AspNetCore - version: 1.7.1 + version: 1.8.0 diff --git a/data/registry/instrumentation-dotnet-grpcnetclient.yml b/data/registry/instrumentation-dotnet-grpcnetclient.yml index a20aa6ed243a..5ab4cb918ba6 100644 --- a/data/registry/instrumentation-dotnet-grpcnetclient.yml +++ b/data/registry/instrumentation-dotnet-grpcnetclient.yml @@ -18,4 +18,4 @@ createdAt: 2022-11-07 package: registry: nuget name: OpenTelemetry.Instrumentation.GrpcNetClient - version: 1.7.0-beta.1 + version: 1.8.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-http.yml b/data/registry/instrumentation-dotnet-http.yml index c5f8a61f69e9..a15f6c7b05c4 100644 --- a/data/registry/instrumentation-dotnet-http.yml +++ b/data/registry/instrumentation-dotnet-http.yml @@ -18,4 +18,4 @@ createdAt: 2022-11-07 package: registry: nuget name: OpenTelemetry.Instrumentation.Http - version: 1.7.1 + version: 1.8.0 diff --git a/data/registry/instrumentation-dotnet-sqlclient.yml b/data/registry/instrumentation-dotnet-sqlclient.yml index 528d35546e50..fe33baba3fcb 100644 --- a/data/registry/instrumentation-dotnet-sqlclient.yml +++ b/data/registry/instrumentation-dotnet-sqlclient.yml @@ -18,4 +18,4 @@ createdAt: 2022-11-07 package: registry: nuget name: OpenTelemetry.Instrumentation.SqlClient - version: 1.7.0-beta.1 + version: 1.8.0-beta.1 diff --git a/data/registry/instrumentation-js-amqplib.yml b/data/registry/instrumentation-js-amqplib.yml index 86fba2fa6a6d..67a0fef7bce7 100644 --- a/data/registry/instrumentation-js-amqplib.yml +++ b/data/registry/instrumentation-js-amqplib.yml @@ -14,7 +14,7 @@ authors: package: name: '@opentelemetry/instrumentation-amqplib' registry: npm - version: 0.35.0 + version: 0.36.0 urls: repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-amqplib createdAt: 2020-06-15 diff --git a/data/registry/instrumentation-js-aws-lambda.yml b/data/registry/instrumentation-js-aws-lambda.yml index 42d55da900fc..ec79551d99f2 100644 --- a/data/registry/instrumentation-js-aws-lambda.yml +++ b/data/registry/instrumentation-js-aws-lambda.yml @@ -15,4 +15,4 @@ createdAt: 2021-07-08 package: name: '@opentelemetry/instrumentation-aws-lambda' registry: npm - version: 0.39.0 + version: 0.40.0 diff --git a/data/registry/instrumentation-js-aws-sdk.yml b/data/registry/instrumentation-js-aws-sdk.yml index 44487f521ac2..3aac6a579424 100644 --- a/data/registry/instrumentation-js-aws-sdk.yml +++ b/data/registry/instrumentation-js-aws-sdk.yml @@ -21,4 +21,4 @@ createdAt: 2020-06-15 package: name: '@opentelemetry/instrumentation-aws-sdk' registry: npm - version: 0.39.1 + version: 0.40.0 diff --git a/data/registry/instrumentation-js-bunyan.yml b/data/registry/instrumentation-js-bunyan.yml index f36ce303d222..0f2b7c1c536a 100644 --- a/data/registry/instrumentation-js-bunyan.yml +++ b/data/registry/instrumentation-js-bunyan.yml @@ -16,4 +16,4 @@ createdAt: 2021-07-08 package: name: '@opentelemetry/instrumentation-bunyan' registry: npm - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-cassandra-driver.yml b/data/registry/instrumentation-js-cassandra-driver.yml index 3815e1f35f74..b0598a1b25eb 100644 --- a/data/registry/instrumentation-js-cassandra-driver.yml +++ b/data/registry/instrumentation-js-cassandra-driver.yml @@ -16,4 +16,4 @@ createdAt: 2021-07-08 package: name: '@opentelemetry/instrumentation-cassandra-driver' registry: npm - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-cassandra.yml b/data/registry/instrumentation-js-cassandra.yml index fb34d6553135..49fcdf367811 100644 --- a/data/registry/instrumentation-js-cassandra.yml +++ b/data/registry/instrumentation-js-cassandra.yml @@ -17,4 +17,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-cassandra-driver' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-connect.yml b/data/registry/instrumentation-js-connect.yml index eb0af507f606..03b0c536fbe6 100644 --- a/data/registry/instrumentation-js-connect.yml +++ b/data/registry/instrumentation-js-connect.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: name: '@opentelemetry/instrumentation-connect' registry: npm - version: 0.34.0 + version: 0.35.0 diff --git a/data/registry/instrumentation-js-cucumber.yml b/data/registry/instrumentation-js-cucumber.yml index e9aea617175f..39c8eb382e60 100644 --- a/data/registry/instrumentation-js-cucumber.yml +++ b/data/registry/instrumentation-js-cucumber.yml @@ -17,4 +17,4 @@ createdAt: 2022-10-27 package: registry: npm name: '@opentelemetry/instrumentation-cucumber' - version: 0.4.0 + version: 0.5.0 diff --git a/data/registry/instrumentation-js-dataloader.yml b/data/registry/instrumentation-js-dataloader.yml index c9754ab90a2c..8e3f31e53038 100644 --- a/data/registry/instrumentation-js-dataloader.yml +++ b/data/registry/instrumentation-js-dataloader.yml @@ -15,4 +15,4 @@ createdAt: 2022-10-27 package: registry: npm name: '@opentelemetry/instrumentation-dataloader' - version: 0.7.0 + version: 0.8.0 diff --git a/data/registry/instrumentation-js-dns.yml b/data/registry/instrumentation-js-dns.yml index 6275ca2d75ce..0a885b37d5d2 100644 --- a/data/registry/instrumentation-js-dns.yml +++ b/data/registry/instrumentation-js-dns.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-dns' - version: 0.34.0 + version: 0.35.0 diff --git a/data/registry/instrumentation-js-document-load.yml b/data/registry/instrumentation-js-document-load.yml index 8e436308747c..36156997e6d5 100644 --- a/data/registry/instrumentation-js-document-load.yml +++ b/data/registry/instrumentation-js-document-load.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-document-load' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-express.yml b/data/registry/instrumentation-js-express.yml index bc3bdd3ef2bf..4c84c3ae931d 100644 --- a/data/registry/instrumentation-js-express.yml +++ b/data/registry/instrumentation-js-express.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-express' - version: 0.36.1 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-fastify.yml b/data/registry/instrumentation-js-fastify.yml index ec3e20f81425..a48ec66b3c0a 100644 --- a/data/registry/instrumentation-js-fastify.yml +++ b/data/registry/instrumentation-js-fastify.yml @@ -15,4 +15,4 @@ createdAt: 2020-08-28 package: registry: npm name: '@opentelemetry/instrumentation-fastify' - version: 0.34.0 + version: 0.35.0 diff --git a/data/registry/instrumentation-js-fetch.yml b/data/registry/instrumentation-js-fetch.yml index aa447736383c..a290a8a67404 100644 --- a/data/registry/instrumentation-js-fetch.yml +++ b/data/registry/instrumentation-js-fetch.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-fetch' - version: 0.49.1 + version: 0.50.0 diff --git a/data/registry/instrumentation-js-fs.yml b/data/registry/instrumentation-js-fs.yml index 8412398943e4..84e1cfe6b861 100644 --- a/data/registry/instrumentation-js-fs.yml +++ b/data/registry/instrumentation-js-fs.yml @@ -15,4 +15,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-fs' - version: 0.10.0 + version: 0.11.0 diff --git a/data/registry/instrumentation-js-generic-pool.yml b/data/registry/instrumentation-js-generic-pool.yml index fa1609960466..6bdeac780705 100644 --- a/data/registry/instrumentation-js-generic-pool.yml +++ b/data/registry/instrumentation-js-generic-pool.yml @@ -16,4 +16,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-generic-pool' - version: 0.34.0 + version: 0.35.0 diff --git a/data/registry/instrumentation-js-graphql.yml b/data/registry/instrumentation-js-graphql.yml index 2ea692ae0e6a..11f9d8da6bcb 100644 --- a/data/registry/instrumentation-js-graphql.yml +++ b/data/registry/instrumentation-js-graphql.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-graphql' - version: 0.38.1 + version: 0.39.0 diff --git a/data/registry/instrumentation-js-grpc.yml b/data/registry/instrumentation-js-grpc.yml index fdbeb93df87a..a8729e1856fd 100644 --- a/data/registry/instrumentation-js-grpc.yml +++ b/data/registry/instrumentation-js-grpc.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-grpc' - version: 0.49.1 + version: 0.50.0 diff --git a/data/registry/instrumentation-js-hapi.yml b/data/registry/instrumentation-js-hapi.yml index feb2ff1e9d9e..970c5b87660a 100644 --- a/data/registry/instrumentation-js-hapi.yml +++ b/data/registry/instrumentation-js-hapi.yml @@ -15,4 +15,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-hapi' - version: 0.35.0 + version: 0.36.0 diff --git a/data/registry/instrumentation-js-http.yml b/data/registry/instrumentation-js-http.yml index fe895fa9002f..441e61323b17 100644 --- a/data/registry/instrumentation-js-http.yml +++ b/data/registry/instrumentation-js-http.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-http' - version: 0.49.1 + version: 0.50.0 diff --git a/data/registry/instrumentation-js-ioredis.yml b/data/registry/instrumentation-js-ioredis.yml index 27c1694d92c8..4ecfdafac291 100644 --- a/data/registry/instrumentation-js-ioredis.yml +++ b/data/registry/instrumentation-js-ioredis.yml @@ -15,4 +15,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-ioredis' - version: 0.38.0 + version: 0.39.0 diff --git a/data/registry/instrumentation-js-knex.yml b/data/registry/instrumentation-js-knex.yml index 4df576a5f3d8..64314246ad6d 100644 --- a/data/registry/instrumentation-js-knex.yml +++ b/data/registry/instrumentation-js-knex.yml @@ -17,4 +17,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-knex' - version: 0.34.0 + version: 0.35.0 diff --git a/data/registry/instrumentation-js-koa.yml b/data/registry/instrumentation-js-koa.yml index 1f19337b85bf..a61d3dac4b7d 100644 --- a/data/registry/instrumentation-js-koa.yml +++ b/data/registry/instrumentation-js-koa.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-koa' - version: 0.38.0 + version: 0.39.0 diff --git a/data/registry/instrumentation-js-long-task.yml b/data/registry/instrumentation-js-long-task.yml index fb38abb4c3dc..5320293b5e2f 100644 --- a/data/registry/instrumentation-js-long-task.yml +++ b/data/registry/instrumentation-js-long-task.yml @@ -14,4 +14,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-long-task' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-lru-memoizer.yml b/data/registry/instrumentation-js-lru-memoizer.yml index a6387ad9e1f2..8863ef4b7a24 100644 --- a/data/registry/instrumentation-js-lru-memoizer.yml +++ b/data/registry/instrumentation-js-lru-memoizer.yml @@ -17,4 +17,4 @@ createdAt: 2022-10-27 package: registry: npm name: '@opentelemetry/instrumentation-lru-memoizer' - version: 0.35.0 + version: 0.36.0 diff --git a/data/registry/instrumentation-js-memcached.yml b/data/registry/instrumentation-js-memcached.yml index 1d0024a3630f..397f2fc678c2 100644 --- a/data/registry/instrumentation-js-memcached.yml +++ b/data/registry/instrumentation-js-memcached.yml @@ -15,4 +15,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-memcached' - version: 0.34.0 + version: 0.35.0 diff --git a/data/registry/instrumentation-js-mongodb.yml b/data/registry/instrumentation-js-mongodb.yml index d9f933366b20..739df76f8c0f 100644 --- a/data/registry/instrumentation-js-mongodb.yml +++ b/data/registry/instrumentation-js-mongodb.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-mongodb' - version: 0.41.0 + version: 0.42.0 diff --git a/data/registry/instrumentation-js-mongoose-instrumentation.yml b/data/registry/instrumentation-js-mongoose-instrumentation.yml index a4fa71096bb0..f200dc9953f2 100644 --- a/data/registry/instrumentation-js-mongoose-instrumentation.yml +++ b/data/registry/instrumentation-js-mongoose-instrumentation.yml @@ -16,4 +16,4 @@ createdAt: 2021-02-17 package: registry: npm name: '@opentelemetry/instrumentation-mongoose' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-mysql.yml b/data/registry/instrumentation-js-mysql.yml index 54d0951f5ff9..91175cc6f664 100644 --- a/data/registry/instrumentation-js-mysql.yml +++ b/data/registry/instrumentation-js-mysql.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-mysql' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-mysql2.yml b/data/registry/instrumentation-js-mysql2.yml index cc4101f13e00..0578fc7ea8b7 100644 --- a/data/registry/instrumentation-js-mysql2.yml +++ b/data/registry/instrumentation-js-mysql2.yml @@ -18,4 +18,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-mysql2' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-nestjs-core.yml b/data/registry/instrumentation-js-nestjs-core.yml index e33ee4a43a8e..2de9f7a0950e 100644 --- a/data/registry/instrumentation-js-nestjs-core.yml +++ b/data/registry/instrumentation-js-nestjs-core.yml @@ -17,4 +17,4 @@ createdAt: 2021-07-09 package: registry: npm name: '@opentelemetry/instrumentation-nestjs-core' - version: 0.35.0 + version: 0.36.0 diff --git a/data/registry/instrumentation-js-nestjs.yml b/data/registry/instrumentation-js-nestjs.yml index d7d52ef06caa..191ab728bb9c 100644 --- a/data/registry/instrumentation-js-nestjs.yml +++ b/data/registry/instrumentation-js-nestjs.yml @@ -16,4 +16,4 @@ createdAt: 2021-07-09 package: registry: npm name: '@opentelemetry/instrumentation-nestjs-core' - version: 0.35.0 + version: 0.36.0 diff --git a/data/registry/instrumentation-js-net.yml b/data/registry/instrumentation-js-net.yml index f503bd46b827..91b59e5307ca 100644 --- a/data/registry/instrumentation-js-net.yml +++ b/data/registry/instrumentation-js-net.yml @@ -14,4 +14,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-net' - version: 0.34.0 + version: 0.35.0 diff --git a/data/registry/instrumentation-js-pg.yml b/data/registry/instrumentation-js-pg.yml index a9489ddbb822..5110ebc16a17 100644 --- a/data/registry/instrumentation-js-pg.yml +++ b/data/registry/instrumentation-js-pg.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-pg' - version: 0.39.1 + version: 0.40.0 diff --git a/data/registry/instrumentation-js-pillarjs-router.yml b/data/registry/instrumentation-js-pillarjs-router.yml index 931727243069..0861bfd5fdc6 100644 --- a/data/registry/instrumentation-js-pillarjs-router.yml +++ b/data/registry/instrumentation-js-pillarjs-router.yml @@ -20,4 +20,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-restify' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-pino.yml b/data/registry/instrumentation-js-pino.yml index c3c50694f04b..21f1afb0988c 100644 --- a/data/registry/instrumentation-js-pino.yml +++ b/data/registry/instrumentation-js-pino.yml @@ -16,4 +16,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-pino' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-postgres.yml b/data/registry/instrumentation-js-postgres.yml index aab7cdbb75f0..56db2613caf7 100644 --- a/data/registry/instrumentation-js-postgres.yml +++ b/data/registry/instrumentation-js-postgres.yml @@ -17,4 +17,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-pg' - version: 0.39.1 + version: 0.40.0 diff --git a/data/registry/instrumentation-js-prisma.yml b/data/registry/instrumentation-js-prisma.yml index e81ab15e1f62..aef9d6ed05a8 100644 --- a/data/registry/instrumentation-js-prisma.yml +++ b/data/registry/instrumentation-js-prisma.yml @@ -17,4 +17,4 @@ createdAt: 2022-08-25 package: registry: npm name: '@prisma/instrumentation' - version: 5.12.0 + version: 5.12.1 diff --git a/data/registry/instrumentation-js-redis-4.yml b/data/registry/instrumentation-js-redis-4.yml index f122e3549c86..c5f53df2383c 100644 --- a/data/registry/instrumentation-js-redis-4.yml +++ b/data/registry/instrumentation-js-redis-4.yml @@ -14,4 +14,4 @@ createdAt: 2022-10-27 package: registry: npm name: '@opentelemetry/instrumentation-redis-4' - version: 0.37.0 + version: 0.38.0 diff --git a/data/registry/instrumentation-js-redis.yml b/data/registry/instrumentation-js-redis.yml index d57544045d23..def29c6e9be6 100644 --- a/data/registry/instrumentation-js-redis.yml +++ b/data/registry/instrumentation-js-redis.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-redis' - version: 0.37.0 + version: 0.38.0 diff --git a/data/registry/instrumentation-js-restify.yml b/data/registry/instrumentation-js-restify.yml index 7b426a89cd54..de0262a362ce 100644 --- a/data/registry/instrumentation-js-restify.yml +++ b/data/registry/instrumentation-js-restify.yml @@ -15,4 +15,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-restify' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-router.yml b/data/registry/instrumentation-js-router.yml index 44afaac1f8e1..f621fabfdf1b 100644 --- a/data/registry/instrumentation-js-router.yml +++ b/data/registry/instrumentation-js-router.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-router' - version: 0.35.0 + version: 0.36.0 diff --git a/data/registry/instrumentation-js-socket.io.yml b/data/registry/instrumentation-js-socket.io.yml index d555e0643a0f..2a76cc319a75 100644 --- a/data/registry/instrumentation-js-socket.io.yml +++ b/data/registry/instrumentation-js-socket.io.yml @@ -16,4 +16,4 @@ createdAt: 2022-10-27 package: registry: npm name: '@opentelemetry/instrumentation-socket.io' - version: 0.37.0 + version: 0.38.0 diff --git a/data/registry/instrumentation-js-tedious.yml b/data/registry/instrumentation-js-tedious.yml index ca3f4b200aea..e47d68abd9d8 100644 --- a/data/registry/instrumentation-js-tedious.yml +++ b/data/registry/instrumentation-js-tedious.yml @@ -16,4 +16,4 @@ createdAt: 2022-10-27 package: registry: npm name: '@opentelemetry/instrumentation-tedious' - version: 0.8.0 + version: 0.9.0 diff --git a/data/registry/instrumentation-js-user-interaction.yml b/data/registry/instrumentation-js-user-interaction.yml index 17f4b378f8c0..68766b845cda 100644 --- a/data/registry/instrumentation-js-user-interaction.yml +++ b/data/registry/instrumentation-js-user-interaction.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-user-interaction' - version: 0.36.0 + version: 0.37.0 diff --git a/data/registry/instrumentation-js-winston.yml b/data/registry/instrumentation-js-winston.yml index d4918ac63fd9..568dc99d657b 100644 --- a/data/registry/instrumentation-js-winston.yml +++ b/data/registry/instrumentation-js-winston.yml @@ -16,4 +16,4 @@ createdAt: 2021-07-08 package: registry: npm name: '@opentelemetry/instrumentation-winston' - version: 0.35.0 + version: 0.36.0 diff --git a/data/registry/instrumentation-js-xml-http-request.yml b/data/registry/instrumentation-js-xml-http-request.yml index 525d1d5ba4b0..e91e6ac24558 100644 --- a/data/registry/instrumentation-js-xml-http-request.yml +++ b/data/registry/instrumentation-js-xml-http-request.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: npm name: '@opentelemetry/instrumentation-xml-http-request' - version: 0.49.1 + version: 0.50.0 diff --git a/data/registry/instrumentation-php-laravel.yml b/data/registry/instrumentation-php-laravel.yml index ead5cfb5f858..9502051108a0 100644 --- a/data/registry/instrumentation-php-laravel.yml +++ b/data/registry/instrumentation-php-laravel.yml @@ -15,4 +15,4 @@ createdAt: 2023-05-22 package: registry: packagist name: open-telemetry/opentelemetry-auto-laravel - version: 0.0.23 + version: 0.0.24 diff --git a/data/registry/resource-detector-js-alibabacloud.yml b/data/registry/resource-detector-js-alibabacloud.yml index 3fee4353eb6e..b5915407cbb3 100644 --- a/data/registry/resource-detector-js-alibabacloud.yml +++ b/data/registry/resource-detector-js-alibabacloud.yml @@ -16,4 +16,4 @@ createdAt: 2022-12-07 package: registry: npm name: '@opentelemetry/resource-detector-alibaba-cloud' - version: 0.28.7 + version: 0.28.8 diff --git a/data/registry/resource-detector-js-aws.yml b/data/registry/resource-detector-js-aws.yml index 259720874d90..8628f28c45ee 100644 --- a/data/registry/resource-detector-js-aws.yml +++ b/data/registry/resource-detector-js-aws.yml @@ -15,4 +15,4 @@ createdAt: 2022-12-07 package: registry: npm name: '@opentelemetry/resource-detector-aws' - version: 1.4.0 + version: 1.4.1 diff --git a/data/registry/resource-detector-js-azure.yml b/data/registry/resource-detector-js-azure.yml index 00a8e5cd5e34..cd4bb2abba91 100644 --- a/data/registry/resource-detector-js-azure.yml +++ b/data/registry/resource-detector-js-azure.yml @@ -15,4 +15,4 @@ createdAt: 2022-12-07 package: registry: npm name: '@opentelemetry/resource-detector-azure' - version: 0.2.5 + version: 0.2.6 diff --git a/data/registry/resource-detector-js-container.yml b/data/registry/resource-detector-js-container.yml index 1b8aeebce09f..10c5b4575a22 100644 --- a/data/registry/resource-detector-js-container.yml +++ b/data/registry/resource-detector-js-container.yml @@ -17,4 +17,4 @@ createdAt: 2022-12-07 package: registry: npm name: '@opentelemetry/resource-detector-container' - version: 0.3.7 + version: 0.3.8 diff --git a/data/registry/resource-detector-js-gcp.yml b/data/registry/resource-detector-js-gcp.yml index 82a39fc69838..6421c1451767 100644 --- a/data/registry/resource-detector-js-gcp.yml +++ b/data/registry/resource-detector-js-gcp.yml @@ -15,4 +15,4 @@ createdAt: 2022-12-07 package: registry: npm name: '@opentelemetry/resource-detector-gcp' - version: 0.29.7 + version: 0.29.8 diff --git a/data/registry/resource-detector-js-instana.yml b/data/registry/resource-detector-js-instana.yml index d7775f87a951..b64fef57a356 100644 --- a/data/registry/resource-detector-js-instana.yml +++ b/data/registry/resource-detector-js-instana.yml @@ -17,4 +17,4 @@ createdAt: 2022-12-07 package: registry: npm name: '@opentelemetry/resource-detector-instana' - version: 0.7.0 + version: 0.8.0 diff --git a/data/registry/tools-ruby-sentry.yml b/data/registry/tools-ruby-sentry.yml index c964b0899fac..fbc4813549d0 100644 --- a/data/registry/tools-ruby-sentry.yml +++ b/data/registry/tools-ruby-sentry.yml @@ -23,4 +23,4 @@ createdAt: 2023-01-31 package: registry: gems name: sentry-opentelemetry - version: 5.17.1 + version: 5.17.2 From 8fd42acd211ef45652700837ad2477ae9937b1f1 Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Fri, 5 Apr 2024 21:22:04 +0200 Subject: [PATCH 17/22] Update opentelemetry-java version to v1.37.0 (#4259) --- content/en/docs/languages/java/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/languages/java/_index.md b/content/en/docs/languages/java/_index.md index 66763c9174a2..4d06105eff0c 100644 --- a/content/en/docs/languages/java/_index.md +++ b/content/en/docs/languages/java/_index.md @@ -7,7 +7,7 @@ aliases: [/java, /java/metrics, /java/tracing] cascade: vers: instrumentation: 2.2.0 - otel: 1.36.0 + otel: 1.37.0 semconv: 1.24.0 weight: 18 --- From 17294a710320f7ffd4f62697052c92664b5c5751 Mon Sep 17 00:00:00 2001 From: Phillip Carter Date: Fri, 5 Apr 2024 12:23:56 -0700 Subject: [PATCH 18/22] Update banner to point to OTel Day (#4251) --- layouts/partials/banner.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/banner.md b/layouts/partials/banner.md index 1b14c29d1580..638780a0ff2f 100644 --- a/layouts/partials/banner.md +++ b/layouts/partials/banner.md @@ -3,8 +3,8 @@
- Don't forget to submit to -[**OTel Community Day CFP** by April 1st](https://sessionize.com/OTel-Community-Day/)! + Join us for +[**OTel Community Day** on June 25th](https://sessionize.com/OTel-Community-Day/)! {{/* From 83e6602554b38fe1fe7b2c7a7b79df4521d48332 Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Sat, 6 Apr 2024 01:27:27 +0200 Subject: [PATCH 19/22] Update opentelemetry-proto version to v1.2.0 (#4260) --- .gitmodules | 2 +- content-modules/opentelemetry-proto | 2 +- scripts/content-modules/adjust-pages.pl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 5af52073fd80..690e80fb5c0d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -15,7 +15,7 @@ [submodule "content-modules/opentelemetry-proto"] path = content-modules/opentelemetry-proto url = https://github.com/open-telemetry/opentelemetry-proto - otlp-pin = v1.1.0 + otlp-pin = v1.2.0 [submodule "content-modules/semantic-conventions"] path = content-modules/semantic-conventions url = https://github.com/open-telemetry/semantic-conventions diff --git a/content-modules/opentelemetry-proto b/content-modules/opentelemetry-proto index 4ca4f0335c63..24d4bc002003 160000 --- a/content-modules/opentelemetry-proto +++ b/content-modules/opentelemetry-proto @@ -1 +1 @@ -Subproject commit 4ca4f0335c63cda7ab31ea7ed70d6553aee14dce +Subproject commit 24d4bc002003c74db7aa608c8e254155daf8e49d diff --git a/scripts/content-modules/adjust-pages.pl b/scripts/content-modules/adjust-pages.pl index 24037d945e73..f493006d6b82 100755 --- a/scripts/content-modules/adjust-pages.pl +++ b/scripts/content-modules/adjust-pages.pl @@ -19,7 +19,7 @@ my $specBasePath = '/docs/specs'; my %versions = qw( spec: 1.31.0 - otlp: 1.1.0 + otlp: 1.2.0 semconv: 1.25.0 ); my $otelSpecVers = $versions{'spec:'}; From 459b62f1f45786a2dea2a270f18ee5b906c8801d Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Sat, 6 Apr 2024 11:24:31 +0200 Subject: [PATCH 20/22] Auto-update registry versions (4ab7250cac3d1af1e213a42183d5936e1d463c69) (#4262) --- .../instrumentation-dotnet-aspnet-telemetryhttpmodule.yml | 2 +- data/registry/instrumentation-dotnet-aspnet.yml | 2 +- data/registry/instrumentation-dotnet-entityframeworkcore.yml | 2 +- data/registry/instrumentation-dotnet-kafkaflow.yml | 2 +- data/registry/instrumentation-dotnet-quartz.yml | 2 +- data/registry/instrumentation-dotnet-runtime.yml | 2 +- data/registry/instrumentation-dotnet-stackexchangeredis.yml | 2 +- data/registry/instrumentation-dotnet-wcf.yml | 2 +- data/registry/instrumentation-ruby-active-record.yml | 2 +- data/registry/instrumentation-ruby-racecar.yml | 2 +- data/registry/instrumentation-ruby-rack.yml | 2 +- data/registry/instrumentation-ruby-rdkafka.yml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml b/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml index a63e5740de04..b56d291d429e 100644 --- a/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml +++ b/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml @@ -20,4 +20,4 @@ createdAt: 2022-11-07 package: registry: nuget name: OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule - version: 1.7.0-beta.2 + version: 1.8.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-aspnet.yml b/data/registry/instrumentation-dotnet-aspnet.yml index 49cc45665e1d..568c524d7a1c 100644 --- a/data/registry/instrumentation-dotnet-aspnet.yml +++ b/data/registry/instrumentation-dotnet-aspnet.yml @@ -17,4 +17,4 @@ createdAt: 2022-10-28 package: registry: nuget name: OpenTelemetry.Instrumentation.AspNet - version: 1.7.0-beta.2 + version: 1.8.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-entityframeworkcore.yml b/data/registry/instrumentation-dotnet-entityframeworkcore.yml index eeb5af5bb335..5fabefdd33d1 100644 --- a/data/registry/instrumentation-dotnet-entityframeworkcore.yml +++ b/data/registry/instrumentation-dotnet-entityframeworkcore.yml @@ -19,4 +19,4 @@ createdAt: 2022-10-28 package: registry: nuget name: OpenTelemetry.Instrumentation.EntityFrameworkCore - version: 1.0.0-beta.10 + version: 1.0.0-beta.11 diff --git a/data/registry/instrumentation-dotnet-kafkaflow.yml b/data/registry/instrumentation-dotnet-kafkaflow.yml index 07539cdfbb2f..f9be006be945 100644 --- a/data/registry/instrumentation-dotnet-kafkaflow.yml +++ b/data/registry/instrumentation-dotnet-kafkaflow.yml @@ -20,4 +20,4 @@ isFirstParty: true package: name: KafkaFlow.OpenTelemetry registry: nuget - version: 3.0.5 + version: 3.0.6 diff --git a/data/registry/instrumentation-dotnet-quartz.yml b/data/registry/instrumentation-dotnet-quartz.yml index d566c453fc3c..7caf7faf2033 100644 --- a/data/registry/instrumentation-dotnet-quartz.yml +++ b/data/registry/instrumentation-dotnet-quartz.yml @@ -15,4 +15,4 @@ createdAt: 2022-10-28 package: registry: nuget name: OpenTelemetry.Instrumentation.Quartz - version: 1.0.0-beta.1 + version: 1.0.0-beta.2 diff --git a/data/registry/instrumentation-dotnet-runtime.yml b/data/registry/instrumentation-dotnet-runtime.yml index abe7c834f8b5..f5566ca6a698 100644 --- a/data/registry/instrumentation-dotnet-runtime.yml +++ b/data/registry/instrumentation-dotnet-runtime.yml @@ -19,4 +19,4 @@ createdAt: 2022-08-16 package: registry: nuget name: OpenTelemetry.Instrumentation.Runtime - version: 1.7.0 + version: 1.8.0 diff --git a/data/registry/instrumentation-dotnet-stackexchangeredis.yml b/data/registry/instrumentation-dotnet-stackexchangeredis.yml index 2533de1ade8b..70732be30594 100644 --- a/data/registry/instrumentation-dotnet-stackexchangeredis.yml +++ b/data/registry/instrumentation-dotnet-stackexchangeredis.yml @@ -19,4 +19,4 @@ createdAt: 2022-10-28 package: registry: nuget name: OpenTelemetry.Instrumentation.StackExchangeRedis - version: 1.0.0-rc9.13 + version: 1.0.0-rc9.14 diff --git a/data/registry/instrumentation-dotnet-wcf.yml b/data/registry/instrumentation-dotnet-wcf.yml index ae17869f813e..3aa232d0a429 100644 --- a/data/registry/instrumentation-dotnet-wcf.yml +++ b/data/registry/instrumentation-dotnet-wcf.yml @@ -17,4 +17,4 @@ createdAt: 2022-10-28 package: registry: nuget name: OpenTelemetry.Instrumentation.Wcf - version: 1.0.0-rc.15 + version: 1.0.0-rc.16 diff --git a/data/registry/instrumentation-ruby-active-record.yml b/data/registry/instrumentation-ruby-active-record.yml index 843a4988d9ca..c39a51bb967d 100644 --- a/data/registry/instrumentation-ruby-active-record.yml +++ b/data/registry/instrumentation-ruby-active-record.yml @@ -15,4 +15,4 @@ createdAt: 2020-11-09 package: registry: gems name: opentelemetry-instrumentation-active_record - version: 0.7.0 + version: 0.7.1 diff --git a/data/registry/instrumentation-ruby-racecar.yml b/data/registry/instrumentation-ruby-racecar.yml index de22b7c81498..abcc19dc758c 100644 --- a/data/registry/instrumentation-ruby-racecar.yml +++ b/data/registry/instrumentation-ruby-racecar.yml @@ -18,4 +18,4 @@ createdAt: 2022-10-27 package: registry: gems name: opentelemetry-instrumentation-racecar - version: 0.3.0 + version: 0.3.1 diff --git a/data/registry/instrumentation-ruby-rack.yml b/data/registry/instrumentation-ruby-rack.yml index 01a372cf1766..a687ec77fab2 100644 --- a/data/registry/instrumentation-ruby-rack.yml +++ b/data/registry/instrumentation-ruby-rack.yml @@ -14,4 +14,4 @@ createdAt: 2020-11-09 package: registry: gems name: opentelemetry-instrumentation-rack - version: 0.24.0 + version: 0.24.1 diff --git a/data/registry/instrumentation-ruby-rdkafka.yml b/data/registry/instrumentation-ruby-rdkafka.yml index 81d7299552a5..a9da22a69d1c 100644 --- a/data/registry/instrumentation-ruby-rdkafka.yml +++ b/data/registry/instrumentation-ruby-rdkafka.yml @@ -18,4 +18,4 @@ createdAt: 2022-10-27 package: registry: gems name: opentelemetry-instrumentation-rdkafka - version: 0.4.2 + version: 0.4.3 From 3531169ba19d665bf6f6e166508ab5335bd525bb Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Sun, 7 Apr 2024 16:55:22 +0200 Subject: [PATCH 21/22] Auto-update registry versions (3d8233f9588e68b67ebf3a640b4a2d8f623e20b5) (#4247) From 97afffa6d0594d1c117cb90a45e0e05e81e63ac5 Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Mon, 8 Apr 2024 06:42:40 +0200 Subject: [PATCH 22/22] Auto-update registry versions (588a02eb8813791a39508e97dfd0afd66b408d6f) (#4264) --- data/registry/instrumentation-js-angular.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/registry/instrumentation-js-angular.yml b/data/registry/instrumentation-js-angular.yml index 210aac6e6083..12806cebdf68 100644 --- a/data/registry/instrumentation-js-angular.yml +++ b/data/registry/instrumentation-js-angular.yml @@ -18,4 +18,4 @@ createdAt: 2020-06-30 package: name: '@jufab/opentelemetry-angular-interceptor' registry: npm - version: 1.8.0 + version: 1.8.0-2