diff --git a/.cspell.yml b/.cspell.yml index 09675755abaa..81c8246567a4 100644 --- a/.cspell.yml +++ b/.cspell.yml @@ -46,7 +46,6 @@ words: - currencyservice - daemonset - datadog - - dataprepper - declarators - discoverability - dotnet @@ -108,6 +107,7 @@ words: - otep - otlp - overridable + - packagist - Paixão - parentbased - Pavol @@ -116,7 +116,7 @@ words: - postgresql - Pranay - Prateek - - Prepper + - prepper - Println - productcatalogservice - prometheus diff --git a/.textlintrc.yml b/.textlintrc.yml index 5d93741e5cb3..bc737deb6cff 100644 --- a/.textlintrc.yml +++ b/.textlintrc.yml @@ -9,8 +9,8 @@ filters: allowlist: allow: # Don't check registry .yml file fields for language, repo and tags: - - '/^(?:language|repo): .*$/m' - - /^tags:(\s*-.+$)*/m + - '/^\s*(?:language|repo|name|docs): .*$/m' + - /^(?:tags):(\s*-.+$)*/m # Hugo template syntax: - /{{.*?}}/ - /{{%.*?%}}/ diff --git a/assets/js/registrySearch.js b/assets/js/registrySearch.js index 8e3476329958..f1ed9b404826 100644 --- a/assets/js/registrySearch.js +++ b/assets/js/registrySearch.js @@ -1,21 +1,37 @@ -let summaryInclude = 60; -let fuseOptions = { - shouldSort: true, - includeMatches: true, - threshold: 0.1, - tokenize: true, - location: 0, - distance: 100, - maxPatternLength: 32, - minMatchCharLength: 1, - keys: [ - { name: 'title', weight: 0.8 }, - { name: 'description', weight: 0.5 }, - { name: 'tags', weight: 0.3 }, - { name: 'categories', weight: 0.3 }, - ], +const miniSearchOptions = { + fields: [ + 'title', + 'description', + '_key', + 'tags', + 'package.name', + 'license', + 'language', + 'registryType', + ], // fields to index for full-text search + storeFields: ['title', '_key'], // fields to return with search results + extractField: (document, fieldName) => { + if (Array.isArray(document[fieldName])) { + return document[fieldName].join(' '); + } + return fieldName.split('.').reduce((doc, key) => doc && doc[key], document); + }, + searchOptions: { + prefix: true, + boost: { + title: 4, + tags: 3, + description: 2, + }, + fuzzy: 0.2, + }, }; +const originalDocumentTitle = document.title; + +let fetched = false; +const miniSearch = new MiniSearch(miniSearchOptions); + // Get searchQuery for queryParams let pathName = window.location.pathname; let searchQuery = ''; @@ -27,14 +43,9 @@ parseUrlParams(); if (pathName.includes('registry')) { // Run search or display default body if (searchQuery) { - document.querySelector('#search-query').value = searchQuery; - document.querySelector('#default-body').style.display = 'none'; executeSearch(searchQuery); } else { - let defaultBody = document.querySelector('#default-body'); - if (defaultBody.style.display === 'none') { - defaultBody.style.display = 'block'; - } + showBody(); } if (selectedLanguage !== 'all' || selectedComponent !== 'all') { @@ -52,116 +63,22 @@ if (pathName.includes('registry')) { } updateFilters(); } -} -// Runs search through Fuse for fuzzy search -function executeSearch(searchQuery) { - fetch('/ecosystem/registry/index.json') - .then((res) => res.json()) - .then((json) => { - let fuse = new Fuse(json, fuseOptions); - let results = fuse.search(searchQuery); - - if (results.length > 0) { - populateResults(results); - } else { - document.querySelector('#search-results').innerHTML += - '

No matches found

'; - } + document.addEventListener('DOMContentLoaded', (event) => { + let searchForm = document.getElementById('searchForm'); + searchForm.addEventListener('submit', function (evt) { + evt.preventDefault(); + let val = document.getElementById('input-s').value; + setInput('s', val); + parseUrlParams(); + executeSearch(searchQuery); }); -} -// Populate the search results and render to the page -function populateResults(results) { - results.forEach((result, key) => { - let contents = result.item.description; - let snippet = ''; - let snippetHighlights = []; - - if (fuseOptions.tokenize) { - snippetHighlights.push(searchQuery); - } else { - result.matches.forEach((match) => { - if (match.key === 'tags' || match.key === 'categories') { - snippetHighlights.push(match.value); - } else if (match.key === 'description') { - start = - match.indices[0][0] - summaryInclude > 0 - ? match.indices[0][0] - summaryInclude - : 0; - end = - match.indices[0][1] + summaryInclude < contents.length - ? match.indices[0][1] + summaryInclude - : contents.length; - snippet += contents.substring(start, end); - snippetHighlights.push( - match.value.substring( - match.indices[0][0], - match.indices[0][1] - mvalue.indices[0][0] + 1, - ), - ); - } - }); - } - - if (snippet.length < 1 && contents.length > 0) { - snippet += contents.substring(0, summaryInclude * 2); - } - - // Pull template from hugo template definition - let templateDefinition = document.querySelector( - '#search-result-template', - ).innerHTML; - - // Replace values from template with search results - let output = render(templateDefinition, { - key: key, - title: result.item.title, - link: result.item.permalink, - tags: result.item.tags, - categories: result.item.categories, - description: result.item.description, - repo: result.item.repo, - registryType: result.item.registryType, - language: result.item.language, - snippet: snippet, - otVersion: result.item.otVersion, + let searchInput = document.getElementById('input-s'); + searchInput.addEventListener('keyup', function (evt) { + autoSuggest(evt.target.value); }); - document.querySelector('#search-results').innerHTML += output; - }); -} -// Helper function to generate HTML for a search result -function render(templateString, data) { - let conditionalMatches, conditionalPattern, copy; - conditionalPattern = /\$\{\s*isset ([a-zA-Z]*) \s*\}(.*)\$\{\s*end\s*}/g; - //since loop below depends on re.lastInxdex, we use a copy to capture any manipulations whilst inside the loop - copy = templateString; - while ( - (conditionalMatches = conditionalPattern.exec(templateString)) !== null - ) { - if (data[conditionalMatches[1]]) { - //valid key, remove conditionals, leave contents. - copy = copy.replace(conditionalMatches[0], conditionalMatches[2]); - } else { - //not valid, remove entire section - copy = copy.replace(conditionalMatches[0], ''); - } - } - templateString = copy; - - //now any conditionals removed we can do simple substitution - let key, find, re; - for (key in data) { - find = '\\$\\{\\s*' + key + '\\s*\\}'; - re = new RegExp(find, 'g'); - templateString = templateString.replace(re, data[key]); - } - return templateString; -} - -if (pathName.includes('registry')) { - document.addEventListener('DOMContentLoaded', (event) => { let languageList = document .getElementById('languageFilter') .querySelectorAll('.dropdown-item'); @@ -191,6 +108,98 @@ if (pathName.includes('registry')) { }); } +function showBody() { + document.title = originalDocumentTitle; + document.querySelector('#search-results').innerHTML = ''; + let defaultBody = document.querySelector('#default-body'); + if (defaultBody.style.display === 'none') { + defaultBody.style.display = 'block'; + } +} + +// Runs search through Fuse for fuzzy search +function executeSearch(searchQuery) { + if (searchQuery === '') { + showBody(); + return; + } + + document.title = searchQuery + ' at ' + originalDocumentTitle; + document.querySelector('#input-s').value = searchQuery; + document.querySelector('#default-body').style.display = 'none'; + document.querySelector('#search-results').innerHTML = ''; + document.getElementById('search-loading').style.display = 'block'; + + const run = function (searchQuery) { + // The 0-timeout is here if search is blocking, such that the "search loading" is rendered properly + setTimeout(() => { + let results = miniSearch.search(searchQuery); + document.getElementById('search-loading').style.display = 'none'; + + if (results.length > 0) { + populateResults(results); + } else { + document.querySelector('#search-results').innerHTML += + '

No matches found

'; + } + }, 0); + }; + + if (fetched) { + run(searchQuery); + } else { + fetch('/ecosystem/registry/index.json') + .then((res) => res.json()) + .then((json) => { + fetched = true; + miniSearch.addAll(json); + run(searchQuery); + }); + } +} + +function autoSuggest(value) { + if (value === '') { + return; + } + + const run = function (value) { + const suggestions = miniSearch.autoSuggest(value, { + // we only use title, otherwise we get strange suggestions, especially with description + fields: ['title'], + }); + const list = document.getElementById('search-suggestions'); + list.innerHTML = suggestions + .map(({ suggestion }) => ``) + .join(''); + }; + + if (fetched) { + run(value); + } else { + fetch('/ecosystem/registry/index.json') + .then((res) => res.json()) + .then((json) => { + fetched = true; + miniSearch.addAll(json); + run(value); + }); + } +} + +// Populate the search results and render to the page +function populateResults(results) { + document.querySelector('#search-results').innerHTML += results.reduce( + (acc, result) => { + return ( + acc + + document.querySelector(`[data-registry-id="${result._key}"]`).outerHTML + ); + }, + '', + ); +} + function setInput(key, value) { document.getElementById(`input-${key}`).value = value; var queryParams = new URLSearchParams(window.location.search); diff --git a/assets/scss/_registry.scss b/assets/scss/_registry.scss index 078821959705..6d6855dae410 100644 --- a/assets/scss/_registry.scss +++ b/assets/scss/_registry.scss @@ -6,6 +6,13 @@ } } + @each $component, $color in $otel-registry-license-colors { + &.badge-#{$component} { + color: white; + background-color: $color; + } + } + &.badge-elixir { color: map-get($otel-component-colors, erlang); background-color: inherit; @@ -28,3 +35,35 @@ color: color-contrast($default-otel-badge-bg); background-color: $default-otel-badge-bg; } + +.registry-entry { + @extend .shadow; +} + +// fix me: the registry seems not to load the main.min.css with the extended +// styles, so we need to define the styles here again. +.highlight { + margin: 1rem 0; + padding: 0; + position: relative; + max-width: 95%; + border: var(--bs-card-border-width) solid var(--bs-card-border-color); + border-radius: var(--bs-card-border-radius); + & pre { + padding: 1rem; + margin: 0; + display: block; + text-align: right; + overflow-y: auto; + & button.td-click-to-copy { + position: absolute; + color: #ced4da; + border-radius: 3px; + border-width: 0; + background-color: inherit; + box-shadow: 1px 1px #ced4da; + right: 4px; + top: 2px; + } + } +} diff --git a/assets/scss/_variables_project.scss b/assets/scss/_variables_project.scss index 90fc12dfcb90..83860361c271 100644 --- a/assets/scss/_variables_project.scss +++ b/assets/scss/_variables_project.scss @@ -33,6 +33,13 @@ $otel-component-colors: ( 'utilities': #2cd3b4, ); +$otel-registry-license-colors: ( + 'apache-20': #e83e8c, + 'bsd-2-clause': #8ce83e, + 'mit': #3e8ce8, + 'artistic-10-perl': #e8c83e, +); + $primary: map-get($otel-colors, 'blue'); $secondary: map-get($otel-colors, 'orange'); $td-enable-google-fonts: false; diff --git a/content/en/blog/2023/logs-collection/index.md b/content/en/blog/2023/logs-collection/index.md index 9931e65d854e..a4e3c0dc16fa 100644 --- a/content/en/blog/2023/logs-collection/index.md +++ b/content/en/blog/2023/logs-collection/index.md @@ -420,9 +420,8 @@ extend Yoda's code to do the following: [transform or attributes processors](/docs/collector/transforming-telemetry/). 1. Add [tracing](/docs/concepts/signals/traces/) support by emitting spans, where it makes sense. -1. Add an Observability backend such as OpenSearch (along with [Data - Prepper][dataprepper]) to the setup, allowing to ingest spans and logs in - OTLP format. +1. Add an Observability backend such as OpenSearch (along with [Data Prepper]) + to the setup, allowing to ingest spans and logs in OTLP format. 1. Once you have traces and logs ingested in a backend, try to correlate these two telemetry signal types in the backend along with a frontend such as Grafana. @@ -466,7 +465,7 @@ check out the following resources: [otlp]: /docs/specs/otlp/ [otelbin-yoda]: https://www.otelbin.io/?#config=receivers%3A*N__otlp%3A*N____protocols%3A*N______grpc%3A*Nexporters%3A*N__logging%3A*N____verbosity%3A_detailed*Nservice%3A*N__pipelines%3A*N____logs%3A*N______receivers%3A_%5B_otlp_%5D*N______exporters%3A_%5B_logging_%5D%7E -[dataprepper]: https://opensearch.org/docs/latest/data-prepper/index/ +[data prepper]: https://opensearch.org/docs/latest/data-prepper/index/ [svrnm]: https://github.com/svrnm [hossko]: https://github.com/hossko [otel-logs-spec]: /docs/specs/otel/logs/ diff --git a/content/en/docs/demo/feature-flags.md b/content/en/docs/demo/feature-flags.md index 28ddbb0b339e..eeca0b01bc74 100644 --- a/content/en/docs/demo/feature-flags.md +++ b/content/en/docs/demo/feature-flags.md @@ -1,6 +1,6 @@ --- title: Feature Flags -aliases: [feature_flags, ../feature_flags/] +aliases: [feature_flags] cSpell:ignore: OLJCESPC7Z --- diff --git a/content/en/docs/demo/telemetry-features/_index.md b/content/en/docs/demo/telemetry-features/_index.md index f871113d116c..ef1571fc9b6a 100644 --- a/content/en/docs/demo/telemetry-features/_index.md +++ b/content/en/docs/demo/telemetry-features/_index.md @@ -1,7 +1,7 @@ --- title: Telemetry Features linkTitle: Telemetry Features -aliases: [demo_features] +aliases: [demo_features, features] --- ## OpenTelemetry @@ -25,8 +25,8 @@ aliases: [demo_features] Grafana. - **[Jaeger](https://www.jaegertracing.io/)**: all generated traces are being sent to Jaeger. -- **[OpenSearch](https://opensearch.org/)**: all generated logs are sent to - DataPrepper. OpenSearch will be used to centralize logging data from services. +- **[OpenSearch](https://opensearch.org/)**: all generated logs are sent to Data + Prepper. OpenSearch will be used to centralize logging data from services. - **[Prometheus](https://prometheus.io/)**: all generated metrics and exemplars are scraped by Prometheus. diff --git a/content/en/docs/demo/telemetry-features/logging-features.md b/content/en/docs/demo/telemetry-features/logging-features.md index 73bb621b0192..ec91cb93678f 100644 --- a/content/en/docs/demo/telemetry-features/logging-features.md +++ b/content/en/docs/demo/telemetry-features/logging-features.md @@ -1,7 +1,7 @@ --- title: Log Coverage by Service linkTitle: Log Coverage -aliases: [log_service_features, ../log_features] +aliases: [log_service_features, ../logging-features] --- | Service | Language | OTLP Logs | diff --git a/content/en/docs/demo/telemetry-features/manual-span-attributes.md b/content/en/docs/demo/telemetry-features/manual-span-attributes.md index 8083297849cb..170d28257158 100644 --- a/content/en/docs/demo/telemetry-features/manual-span-attributes.md +++ b/content/en/docs/demo/telemetry-features/manual-span-attributes.md @@ -1,11 +1,10 @@ --- title: Manual Span Attributes -aliases: [manual_span_attributes] +aliases: [manual_span_attributes, ../manual-span-attributes] cSpell:ignore: featureflag --- -This document contains the list of manual Span Attributes used throughout the -demo: +This page lists the manual Span Attributes used throughout the demo: ## AdService diff --git a/content/en/docs/demo/telemetry-features/metric-features.md b/content/en/docs/demo/telemetry-features/metric-features.md index bd6ca6a195ea..158737b019f9 100644 --- a/content/en/docs/demo/telemetry-features/metric-features.md +++ b/content/en/docs/demo/telemetry-features/metric-features.md @@ -1,7 +1,7 @@ --- title: Metric Coverage by Service linkTitle: Metric Coverage -aliases: [metric_service_features, ../metric_features] +aliases: [metric_service_features, ../metric-features] --- | Service | Language | Auto-instrumentation | Manual Instrumentation | Multiple Instruments | Views | Custom Attributes | Resource Detection | Trace Exemplars | diff --git a/content/en/docs/demo/telemetry-features/trace-features.md b/content/en/docs/demo/telemetry-features/trace-features.md index dff6432d2eda..2b289cba428b 100644 --- a/content/en/docs/demo/telemetry-features/trace-features.md +++ b/content/en/docs/demo/telemetry-features/trace-features.md @@ -1,7 +1,7 @@ --- title: Trace Coverage by Service linkTitle: Trace Coverage -aliases: [trace_service_features, ../trace_features] +aliases: [trace_service_features, ../trace-features] --- | Service | Language | Instrumentation Libraries | Manual Span Creation | Span Data Enrichment | RPC Context Propagation | Span Links | Baggage | Resource Detection | diff --git a/content/en/docs/languages/js/libraries.md b/content/en/docs/languages/js/libraries.md index 38d4449df398..a7994d7b5894 100644 --- a/content/en/docs/languages/js/libraries.md +++ b/content/en/docs/languages/js/libraries.md @@ -6,39 +6,7 @@ description: How to instrument libraries an app depends on cSpell:ignore: autoinstrumentation metapackage metapackages --- -When you develop an app, you make use of third-party libraries and frameworks to -accelerate your work and to not reinvent the wheel. If you now instrument your -app with OpenTelemetry, you don't want to spend additional time on manually -adding traces, logs and metrics to those libraries and frameworks. Fortunately, -you don't have to reinvent the wheel for those either: libraries might come with -OpenTelemetry support natively or you can use an -[Instrumentation Library](/docs/concepts/instrumentation/libraries/) in order to -generate telemetry data for a library or framework. - -If you are instrumenting an app, you can learn on this page how to make use of -natively instrumented libraries and Instrumentation Libraries for your -dependencies. - -If you want to instrument a library, you can learn on this page what you need to -do to natively instrument your own library or how you can create an -Instrumentation Library for a third-party library if none is available. - -## Use natively instrumented libraries - -If a library comes with OpenTelemetry out of the box, you get the traces, -metrics and logs emitted from that library, by adding and setting up the -OpenTelemetry SDK with your app. - -The library may provide some additional configuration for the instrumentation. -Go to the documentation of that library to learn more. - -{{% alert title="Help wanted" color="warning" %}} - -As of today, we don't know about any JavaScript library that has OpenTelemetry -natively integrated. If you know about such a library, -[let us know](https://github.com/open-telemetry/opentelemetry.io/issues/new). - -{{% /alert %}} +{{% docs/languages/libraries-intro JavaScript %}} ## Use Instrumentation Libraries diff --git a/content/en/docs/languages/net/automatic/config.md b/content/en/docs/languages/net/automatic/config.md index 4a7af58069d6..275a231d01e2 100644 --- a/content/en/docs/languages/net/automatic/config.md +++ b/content/en/docs/languages/net/automatic/config.md @@ -3,7 +3,7 @@ title: Configuration and settings linkTitle: Configuration weight: 20 # prettier-ignore -cSpell:ignore: AZUREAPPSERVICE Bitness CLSID CORECLR dylib NETFX UNHANDLEDEXCEPTION +cSpell:ignore: AZUREAPPSERVICE Bitness CLSID CORECLR dylib NETFX PROCESSRUNTIME UNHANDLEDEXCEPTION --- ## Configuration methods @@ -95,10 +95,13 @@ for more details. The following resource detectors are included and enabled by default: -| ID | Description | Documentation | Status | -| ----------------- | -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------- | -| `CONTAINER` | Container detector | [Container resource detector documentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/ResourceDetectors.Container-1.0.0-beta.3/src/OpenTelemetry.ResourceDetectors.Container/README.md) | [Experimental](/docs/specs/otel/versioning-and-stability) | -| `AZUREAPPSERVICE` | Azure App Service detector | [Azure resource detector documentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/ResourceDetectors.Azure-1.0.0-beta.2/src/OpenTelemetry.ResourceDetectors.Azure/README.md) | [Experimental](/docs/specs/otel/versioning-and-stability) | +| ID | Description | Documentation | Status | +| ----------------- | -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------- | +| `AZUREAPPSERVICE` | Azure App Service detector | [Azure resource detector documentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/ResourceDetectors.Azure-1.0.0-beta.4/src/OpenTelemetry.ResourceDetectors.Azure/README.md) | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `CONTAINER` | Container detector | [Container resource detector documentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/ResourceDetectors.Container-1.0.0-beta.5/src/OpenTelemetry.ResourceDetectors.Container/README.md) | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `HOST` | Host detector | [Host resource detector documentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/ResourceDetectors.Host-0.1.0-alpha.2/src/OpenTelemetry.ResourceDetectors.Host/README.md) | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `PROCESS` | Process detector | [Process resource detector documentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/ResourceDetectors.Process-0.1.0-alpha.2/src/OpenTelemetry.ResourceDetectors.Process/README.md) | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `PROCESSRUNTIME` | Process Runtime detector | [Process Runtime resource detector documentation](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/ResourceDetectors.ProcessRuntime-0.1.0-alpha.2/src/OpenTelemetry.ResourceDetectors.ProcessRuntime/README.md) | [Experimental](/docs/specs/otel/versioning-and-stability) | ## Propagators diff --git a/content/en/docs/languages/net/automatic/instrumentations.md b/content/en/docs/languages/net/automatic/instrumentations.md index 7804c030859a..5e0b336400a5 100644 --- a/content/en/docs/languages/net/automatic/instrumentations.md +++ b/content/en/docs/languages/net/automatic/instrumentations.md @@ -52,13 +52,14 @@ stable semantic convention. | `GRAPHQL` | [GraphQL](https://www.nuget.org/packages/GraphQL) **Not supported on .NET Framework** | ≥7.5.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `GRPCNETCLIENT` | [Grpc.Net.Client](https://www.nuget.org/packages/Grpc.Net.Client) | ≥2.52.0 & < 3.0.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `HTTPCLIENT` | [System.Net.Http.HttpClient](https://docs.microsoft.com/dotnet/api/system.net.http.httpclient) and [System.Net.HttpWebRequest](https://docs.microsoft.com/dotnet/api/system.net.httpwebrequest) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | -| `QUARTZ` | [Quartz](https://www.nuget.org/packages/Quartz) **Not supported on .NET Framework 4.7.1 and older** | ≥3.4.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `KAFKA` | [Confluent.Kafka](https://www.nuget.org/packages/Confluent.Kafka) | ≥1.4.0 < 3.0.0 | bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | | `MASSTRANSIT` | [MassTransit](https://www.nuget.org/packages/MassTransit) **Not supported on .NET Framework** | ≥8.0.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `MONGODB` | [MongoDB.Driver.Core](https://www.nuget.org/packages/MongoDB.Driver.Core) | ≥2.13.3 & < 3.0.0 | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | | `MYSQLCONNECTOR` | [MySqlConnector](https://www.nuget.org/packages/MySqlConnector) | ≥2.0.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `MYSQLDATA` | [MySql.Data](https://www.nuget.org/packages/MySql.Data) **Not supported on .NET Framework** | ≥8.1.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `NPGSQL` | [Npgsql](https://www.nuget.org/packages/Npgsql) | ≥6.0.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `NSERVICEBUS` | [NServiceBus](https://www.nuget.org/packages/NServiceBus) | ≥8.0.0 | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `QUARTZ` | [Quartz](https://www.nuget.org/packages/Quartz) **Not supported on .NET Framework 4.7.1 and older** | ≥3.4.0 | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `SQLCLIENT` | [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient), [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient) and `System.Data` (shipped with .NET Framework) | \* \[4\] | source | [Experimental](/docs/specs/otel/versioning-and-stability) | | `STACKEXCHANGEREDIS` | [StackExchange.Redis](https://www.nuget.org/packages/StackExchange.Redis) **Not supported on .NET Framework** | ≥2.0.405 < 3.0.0 | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | | `WCFCLIENT` | WCF | \* | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | @@ -81,14 +82,14 @@ to [issue](https://github.com/open-telemetry/opentelemetry-dotnet/issues/4243). stable, but particular instrumentation are in Experimental status due to lack of stable semantic convention. -| ID | Instrumented library | Documentation | Supported versions | Instrumentation type | Status | -| ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | -------------------- | --------------------------------------------------------- | -| `ASPNET` | ASP.NET Framework \[1\] **Not supported on .NET** | [ASP.NET metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.0.0-rc9.9/src/OpenTelemetry.Instrumentation.AspNet/README.md#list-of-metrics-produced) | \* | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | -| `ASPNETCORE` | ASP.NET Core \[2\] **Not supported on .NET Framework** | [ASP.NET Core metrics](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.5.0/src/OpenTelemetry.Instrumentation.AspNetCore/README.md#list-of-metrics-produced) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | -| `HTTPCLIENT` | [System.Net.Http.HttpClient](https://docs.microsoft.com/dotnet/api/system.net.http.httpclient) and [System.Net.HttpWebRequest](https://docs.microsoft.com/dotnet/api/system.net.httpwebrequest) | [HttpClient metrics](https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.5.0/src/OpenTelemetry.Instrumentation.Http/README.md#list-of-metrics-produced) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | -| `NETRUNTIME` | [OpenTelemetry.Instrumentation.Runtime](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Runtime) | [Runtime metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Runtime-1.5.1/src/OpenTelemetry.Instrumentation.Process/README.md#metrics) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | -| `PROCESS` | [OpenTelemetry.Instrumentation.Process](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Process) | [Process metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Process-0.5.0-beta.3/src/OpenTelemetry.Instrumentation.Process/README.md#metrics) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | -| `NSERVICEBUS` | [NServiceBus](https://www.nuget.org/packages/NServiceBus) | [NServiceBus metrics](https://docs.particular.net/samples/open-telemetry/prometheus-grafana/#reporting-metric-values) | ≥8.0.0 | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | +| ID | Instrumented library | Documentation | Supported versions | Instrumentation type | Status | +| ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------ | -------------------- | --------------------------------------------------------- | +| `ASPNET` | ASP.NET Framework \[1\] **Not supported on .NET** | [ASP.NET metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.7.0-beta.1/src/OpenTelemetry.Instrumentation.AspNet/README.md#list-of-metrics-produced) | \* | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `ASPNETCORE` | ASP.NET Core \[2\] **Not supported on .NET Framework** | [ASP.NET Core metrics](https://github.com/open-telemetry/opentelemetry-dotnet/blob/Instrumentation.AspNetCore-1.7.0/src/OpenTelemetry.Instrumentation.AspNetCore/README.md#list-of-metrics-produced) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `HTTPCLIENT` | [System.Net.Http.HttpClient](https://docs.microsoft.com/dotnet/api/system.net.http.httpclient) and [System.Net.HttpWebRequest](https://docs.microsoft.com/dotnet/api/system.net.httpwebrequest) | [HttpClient metrics](https://github.com/open-telemetry/opentelemetry-dotnet/blob/Instrumentation.Http-1.7.0/src/OpenTelemetry.Instrumentation.Http/README.md#list-of-metrics-produced) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `NETRUNTIME` | [OpenTelemetry.Instrumentation.Runtime](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Runtime) | [Runtime metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Runtime-1.7.0/src/OpenTelemetry.Instrumentation.Process/README.md#metrics) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `PROCESS` | [OpenTelemetry.Instrumentation.Process](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Process) | [Process metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Process-0.5.0-beta.4/src/OpenTelemetry.Instrumentation.Process/README.md#metrics) | \* | source | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `NSERVICEBUS` | [NServiceBus](https://www.nuget.org/packages/NServiceBus) | [NServiceBus metrics](https://docs.particular.net/samples/open-telemetry/prometheus-grafana/#reporting-metric-values) | ≥8.0.0 | source & bytecode | [Experimental](/docs/specs/otel/versioning-and-stability) | \[1\]: The ASP.NET metrics are generated only if the `AspNet` trace instrumentation is also enabled. @@ -102,7 +103,7 @@ instrumentation is also enabled. | ID | Instrumented library | Supported versions | Instrumentation type | Status | | --------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------ | -------------------- | --------------------------------------------------------- | -| `ILOGGER` | [Microsoft.Extensions.Logging](https://www.nuget.org/packages/Microsoft.Extensions.Logging) **Not supported on .NET Framework** | ≥6.0.0 | bytecode or source | [Experimental](/docs/specs/otel/versioning-and-stability) | +| `ILOGGER` | [Microsoft.Extensions.Logging](https://www.nuget.org/packages/Microsoft.Extensions.Logging) **Not supported on .NET Framework** | ≥8.0.0 | bytecode or source | [Experimental](/docs/specs/otel/versioning-and-stability) | For ASP.NET Core applications, the `LoggingBuilder` instrumentation can be enabled without using the .NET CLR Profiler by setting the diff --git a/content/en/docs/languages/php/_index.md b/content/en/docs/languages/php/_index.md index e1b3c00f1403..fecc5f8e1b4e 100644 --- a/content/en/docs/languages/php/_index.md +++ b/content/en/docs/languages/php/_index.md @@ -4,7 +4,7 @@ description: >- PHP A language-specific implementation of OpenTelemetry in PHP. weight: 21 -cSpell:ignore: mbstring opcache packagist +cSpell:ignore: mbstring opcache --- {{% docs/languages/index-intro php /%}} diff --git a/content/en/docs/languages/php/automatic.md b/content/en/docs/languages/php/automatic.md index 57da16d203ef..1be02f687429 100644 --- a/content/en/docs/languages/php/automatic.md +++ b/content/en/docs/languages/php/automatic.md @@ -3,7 +3,7 @@ title: Automatic Instrumentation linkTitle: Automatic weight: 30 # prettier-ignore -cSpell:ignore: centos configurator democlass epel myapp packagist pecl phar remi unindented userland +cSpell:ignore: centos configurator democlass epel myapp pecl phar remi unindented userland --- Automatic instrumentation with PHP requires at least PHP 8.0, and the diff --git a/content/en/docs/languages/ruby/libraries.md b/content/en/docs/languages/ruby/libraries.md index f5292cbe9150..3c86db788120 100644 --- a/content/en/docs/languages/ruby/libraries.md +++ b/content/en/docs/languages/ruby/libraries.md @@ -1,40 +1,12 @@ --- title: Using instrumentation libraries -linkTitle: Library +linkTitle: Libraries aliases: [configuring_automatic_instrumentation, automatic] cSpell:ignore: faraday metapackage sinatra weight: 30 --- -When you develop an app, you make use of third-party libraries and frameworks to -accelerate your work and to not reinvent the wheel. If you now instrument your -app with OpenTelemetry, you don't want to spend additional time on manually -adding traces, logs and metrics to those libraries and frameworks. Fortunately, -you don't have to reinvent the wheel for those either: libraries might come with -OpenTelemetry support natively or you can use an -[Instrumentation Library](/docs/concepts/instrumentation/libraries/) in order to -generate telemetry data for a library or framework. - -If you are instrumenting an app, you can learn on this page how to make use of -natively instrumented libraries and Instrumentation Libraries for your -dependencies. - -## Use natively instrumented libraries - -If a library comes with OpenTelemetry out of the box, you get the traces, -metrics and logs emitted from that library, by adding and setting up the -OpenTelemetry SDK with your app. - -The library may provide some additional configuration for the instrumentation. -Go to the documentation of that library to learn more. - -{{% alert title="Help wanted" color="warning" %}} - -As of today, we don't know about any Ruby library that has OpenTelemetry -natively integrated. If you know about such a library, -[let us know](https://github.com/open-telemetry/opentelemetry.io/issues/new). - -{{% /alert %}} +{{% docs/languages/libraries-intro Ruby %}} ## Use Instrumentation Libraries diff --git a/content/en/ecosystem/registry/_index.md b/content/en/ecosystem/registry/_index.md index f240daab6d7d..e3e00247be74 100644 --- a/content/en/ecosystem/registry/_index.md +++ b/content/en/ecosystem/registry/_index.md @@ -1,8 +1,8 @@ --- title: Registry description: >- - Find libraries, plugins, integrations, and other useful tools for extending - OpenTelemetry. + Find libraries, plugins, integrations, and other useful tools for using and + extending OpenTelemetry. # The redirects and aliases implement catch-all rules for old registry entries; # we don't publish individual entry pages anymore. # @@ -19,7 +19,7 @@ body_class: registry weight: 20 --- -{{% blocks/lead color="white" %}} +{{% blocks/lead color="dark" %}} @@ -29,25 +29,8 @@ weight: 20 {{% /blocks/lead %}} -{{% blocks/section color="dark" %}} - -## What do you need? - -The OpenTelemetry Registry allows you to search for instrumentation libraries, -tracer implementations, utilities, and other useful projects in the -OpenTelemetry ecosystem. - -- Not able to find an exporter for your language? Remember, the - [OpenTelemetry Collector](/docs/collector) supports exporting to a variety of - systems and works with all OpenTelemetry Core Components! -- Are you a project maintainer? See, - [Adding a project to the OpenTelemetry Registry](adding). -- Check back regularly, the community and registry are growing! - -{{% /blocks/section %}} - {{< blocks/section color="white" type="container-lg" >}} -{{}} +{{< ecosystem/registry/search-form >}} {{< /blocks/section >}} diff --git a/content/en/status.md b/content/en/status.md index 6a3692ce5e59..55aac19db39f 100644 --- a/content/en/status.md +++ b/content/en/status.md @@ -28,15 +28,13 @@ For more details on the specification compliance per implementation, see the ## Collector -The collector status is: -[mixed](http://localhost:1313/docs/specs/otel/document-status/#mixed), since +The collector status is: [mixed](/docs/specs/otel/document-status/#mixed), since core collector components currently have mixed [stability levels](https://github.com/open-telemetry/opentelemetry-collector#stability-levels). **Collector components** differ in their maturity levels. Each component has its stability documented in its `README.md`. You can find a list of all available -collector components in the -[registry](http://localhost:1313/ecosystem/registry/?language=collector). +collector components in the [registry](/ecosystem/registry/?language=collector). ## Specifications diff --git a/data/ecosystem/integrations.yaml b/data/ecosystem/integrations.yaml index 9cfc727b0401..c747b901fda6 100644 --- a/data/ecosystem/integrations.yaml +++ b/data/ecosystem/integrations.yaml @@ -58,6 +58,7 @@ url: https://nextjs.org/ docsUrl: https://nextjs.org/docs/app/building-your-application/optimizing/open-telemetry components: [JavaScript] + native: true # Next.js provides a native integration of the OpenTelemetry API oss: true - name: ThousandEyes (Cisco) url: https://www.thousandeyes.com/ @@ -68,6 +69,7 @@ url: https://cerbos.dev/ docsUrl: https://github.com/cerbos/cerbos-sdk-javascript/tree/main/packages/opentelemetry components: [JavaScript] + native: false # Cerbos provides a first party instrumentation library oss: true - name: Tyk API Gateway url: https://tyk.io diff --git a/data/registry/collector-builder.yml b/data/registry/collector-builder.yml index e8721b50103f..7a91f770b204 100644 --- a/data/registry/collector-builder.yml +++ b/data/registry/collector-builder.yml @@ -1,13 +1,16 @@ +# cSpell:ignore builder title: OpenTelemetry Collector Builder registryType: core -isThirdParty: true language: collector tags: - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/cmd/builder license: Apache 2.0 description: A CLI tool that generates OpenTelemetry Collector binaries based on a manifest. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/cmd/builder + docs: /docs/collector/custom-collector/ +createdAt: 2023-12-18 diff --git a/data/registry/collector-exporter-alertmanager.yml b/data/registry/collector-exporter-alertmanager.yml index 67149273de37..6ee314f91d93 100644 --- a/data/registry/collector-exporter-alertmanager.yml +++ b/data/registry/collector-exporter-alertmanager.yml @@ -1,18 +1,23 @@ -# cSpell:ignore alertmanager +# cSpell:ignore alertmanager alertmanagerexporter title: Alertmanager Exporter registryType: exporter -isThirdParty: false language: collector tags: - alertmanager - prometheus - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/alertmanagerexporter license: Apache 2.0 description: Exports OTel Events (SpanEvent in Tracing added by AddEvent API) as Alerts to [Alertmanager](https://prometheus.io/docs/alerting/latest/alertmanager/) back-end to notify Errors or Change events. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alertmanagerexporter + version: v0.92.0 +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/alertmanagerexporter +createdAt: 2023-12-05 diff --git a/data/registry/collector-exporter-alibaba-cloud-log-service.yml b/data/registry/collector-exporter-alibaba-cloud-log-service.yml index 27206bfeb814..28b50360addd 100644 --- a/data/registry/collector-exporter-alibaba-cloud-log-service.yml +++ b/data/registry/collector-exporter-alibaba-cloud-log-service.yml @@ -1,14 +1,20 @@ +# cSpell:ignore alibabacloudlogserviceexporter title: Alibaba Cloud Log Service Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/alibabacloudlogserviceexporter license: Apache 2.0 description: The Alibaba Cloud Log Service Exporter for the OpenTelemetry Collector. -authors: Alibaba Cloud -otVersion: latest +authors: + - name: Alibaba Cloud +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/alibabacloudlogserviceexporter +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alibabacloudlogserviceexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-apiclarity.yml b/data/registry/collector-exporter-apiclarity.yml index b9265b5e7ee0..17ec3a49f6f6 100644 --- a/data/registry/collector-exporter-apiclarity.yml +++ b/data/registry/collector-exporter-apiclarity.yml @@ -1,16 +1,17 @@ # cSpell:ignore apiclarity title: APIClarity HTTP Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector - apiclarity -repo: https://github.com/openclarity/apiclarity/tree/master/plugins/otel-collector license: Apache 2.0 description: Exports traces and/or metrics via HTTP to an APIClarity endpoint for analysis. -authors: Cisco Systems -otVersion: latest +authors: + - name: Cisco Systems +urls: + repo: https://github.com/openclarity/apiclarity/tree/master/plugins/otel-collector +createdAt: 2022-11-28 diff --git a/data/registry/collector-exporter-aws-xray.yml b/data/registry/collector-exporter-aws-xray.yml index 95f8344fa162..96b464d29ed4 100644 --- a/data/registry/collector-exporter-aws-xray.yml +++ b/data/registry/collector-exporter-aws-xray.yml @@ -1,13 +1,19 @@ +# cSpell:ignore awsxrayexporter title: AWS X-Ray Tracing Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awsxrayexporter license: Apache 2.0 description: The AWS X-Ray Tracing Exporter for the OpenTelemetry Collector. -authors: Amazon Web Services -otVersion: latest +authors: + - name: Amazon Web Services +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awsxrayexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsxrayexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-awscloudwatchlogs.yml b/data/registry/collector-exporter-awscloudwatchlogs.yml index 6fe01bd98cf0..e595e43dd7ed 100644 --- a/data/registry/collector-exporter-awscloudwatchlogs.yml +++ b/data/registry/collector-exporter-awscloudwatchlogs.yml @@ -1,13 +1,19 @@ +# cSpell:ignore awscloudwatchlogsexporter title: AWS CloudWatch Logs Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awscloudwatchlogsexporter license: Apache 2.0 description: AWS CloudWatch Logs Exporter sends logs data to AWS CloudWatch Logs -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awscloudwatchlogsexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awscloudwatchlogsexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-awsemf.yml b/data/registry/collector-exporter-awsemf.yml index e43c25667028..cb6d62b387d2 100644 --- a/data/registry/collector-exporter-awsemf.yml +++ b/data/registry/collector-exporter-awsemf.yml @@ -1,13 +1,19 @@ +# cSpell:ignore awsemfexporter title: AWS CloudWatch EMF Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awsemfexporter license: Apache 2.0 description: The AWS CloudWatch EMF Exporter for the OpenTelemetry Collector. -authors: Amazon Web Services -otVersion: latest +authors: + - name: Amazon Web Services +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awsemfexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsemfexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-awskinesis.yml b/data/registry/collector-exporter-awskinesis.yml index f48516100004..4398b9fcfdbf 100644 --- a/data/registry/collector-exporter-awskinesis.yml +++ b/data/registry/collector-exporter-awskinesis.yml @@ -1,13 +1,15 @@ +# cSpell:ignore awskinesisexporter title: Kinesis Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awskinesisexporter license: Apache 2.0 description: The OpenTelemetry Kinesis Exporter for Go. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awskinesisexporter +createdAt: 2020-06-06 diff --git a/data/registry/collector-exporter-awss3.yml b/data/registry/collector-exporter-awss3.yml index 99b5be612a7b..8b3da531e77a 100644 --- a/data/registry/collector-exporter-awss3.yml +++ b/data/registry/collector-exporter-awss3.yml @@ -1,14 +1,20 @@ +# cSpell:ignore awss3exporter title: AWS S3 Exporter for OpenTelemetry Collector registryType: exporter -isThirdParty: false language: collector tags: - aws - s3 - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awss3exporter license: Apache 2.0 description: This exporter targets to support proto/JSON and proto/binary format -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awss3exporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awss3exporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-azure-monitor.yml b/data/registry/collector-exporter-azure-monitor.yml index b625fdcced15..c27c492127a8 100644 --- a/data/registry/collector-exporter-azure-monitor.yml +++ b/data/registry/collector-exporter-azure-monitor.yml @@ -1,13 +1,19 @@ +# cSpell:ignore azuremonitorexporter title: Azure Monitor Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/azuremonitorexporter license: Apache 2.0 description: The Azure Monitor Exporter for the OpenTelemetry Collector. -authors: Microsoft -otVersion: latest +authors: + - name: Microsoft +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/azuremonitorexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuremonitorexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-azuredataexplorer.yml b/data/registry/collector-exporter-azuredataexplorer.yml index 8aac5b7ac2a0..368b89402990 100644 --- a/data/registry/collector-exporter-azuredataexplorer.yml +++ b/data/registry/collector-exporter-azuredataexplorer.yml @@ -1,14 +1,20 @@ +# cSpell:ignore azuredataexplorerexporter title: Azure Data Explorer Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/azuredataexplorerexporter license: Apache 2.0 description: This exporter sends metrics, logs and trace data to Azure Data Explorer -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/azuredataexplorerexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuredataexplorerexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-carbon.yml b/data/registry/collector-exporter-carbon.yml index 4f4f2d078740..9cacccceb595 100644 --- a/data/registry/collector-exporter-carbon.yml +++ b/data/registry/collector-exporter-carbon.yml @@ -1,13 +1,19 @@ +# cSpell:ignore carbonexporter title: Carbon Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/carbonexporter license: Apache 2.0 description: The Carbon Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/carbonexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/carbonexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-cassandra.yml b/data/registry/collector-exporter-cassandra.yml index ff1db91b07cb..246c9871a697 100644 --- a/data/registry/collector-exporter-cassandra.yml +++ b/data/registry/collector-exporter-cassandra.yml @@ -1,14 +1,20 @@ +# cSpell:ignore cassandraexporter title: Cassandra Exporter registryType: exporter -isThirdParty: false language: collector tags: - cassandra - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/cassandraexporter license: Apache 2.0 description: This exporter supports sending OpenTelemetry logs and traces to Cassandra -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/cassandraexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/cassandraexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-clickhouse.yml b/data/registry/collector-exporter-clickhouse.yml index 3c2f25efdd00..847edbcd9619 100644 --- a/data/registry/collector-exporter-clickhouse.yml +++ b/data/registry/collector-exporter-clickhouse.yml @@ -1,14 +1,20 @@ +# cSpell:ignore clickhouseexporter title: ClickHouse Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/clickhouseexporter license: Apache 2.0 description: This exporter supports sending OpenTelemetry logs and spans to ClickHouse -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/clickhouseexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/clickhouseexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-coralogix.yml b/data/registry/collector-exporter-coralogix.yml index 85cf761498d2..1b30fdc47c19 100644 --- a/data/registry/collector-exporter-coralogix.yml +++ b/data/registry/collector-exporter-coralogix.yml @@ -1,14 +1,19 @@ -# cSpell:ignore coralogix +# cSpell:ignore coralogix coralogixexporter title: Coralogix Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/coralogixexporter license: Apache 2.0 description: The Coralogix Exporter for the OpenTelemetry Collector. -authors: Coralogix -otVersion: latest +authors: + - name: Coralogix +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/coralogixexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/coralogixexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-datadog.yml b/data/registry/collector-exporter-datadog.yml index ed4e599c7f39..18c2c1f77e18 100644 --- a/data/registry/collector-exporter-datadog.yml +++ b/data/registry/collector-exporter-datadog.yml @@ -1,13 +1,19 @@ +# cSpell:ignore datadogexporter title: Datadog Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/datadogexporter license: Apache 2.0 description: The Datadog Exporter for the OpenTelemetry Collector. -authors: Datadog -otVersion: latest +authors: + - name: Datadog +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/datadogexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datadogexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-dataset.yml b/data/registry/collector-exporter-dataset.yml index 7f8ed27c83cd..298d9d1810a9 100644 --- a/data/registry/collector-exporter-dataset.yml +++ b/data/registry/collector-exporter-dataset.yml @@ -1,13 +1,19 @@ +# cSpell:ignore datasetexporter title: Dataset Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/datasetexporter license: Apache 2.0 description: The Dataset Exporter for the OpenTelemetry Collector. -authors: Dataset -otVersion: latest +authors: + - name: Dataset +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/datasetexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datasetexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-debug.yml b/data/registry/collector-exporter-debug.yml index c5bc1e877698..a8d6bfac5ae2 100644 --- a/data/registry/collector-exporter-debug.yml +++ b/data/registry/collector-exporter-debug.yml @@ -1,13 +1,15 @@ +# cSpell:ignore debugexporter title: Debug Exporter registryType: exporter -isThirdParty: false language: collector tags: - debug - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/debugexporter license: Apache 2.0 description: Exports data to the console via zap.Logger. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/debugexporter +createdAt: 2020-11-05 diff --git a/data/registry/collector-exporter-dynatrace.yml b/data/registry/collector-exporter-dynatrace.yml index d1c35f5a34ef..f9136a3e7bee 100644 --- a/data/registry/collector-exporter-dynatrace.yml +++ b/data/registry/collector-exporter-dynatrace.yml @@ -1,13 +1,19 @@ +# cSpell:ignore dynatraceexporter title: Dynatrace Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/dynatraceexporter license: Apache 2.0 description: The Dynatrace Exporter for the OpenTelemetry Collector. -authors: Dynatrace -otVersion: latest +authors: + - name: Dynatrace +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/dynatraceexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/dynatraceexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-elasticsearch.yml b/data/registry/collector-exporter-elasticsearch.yml index 2748611ec4e0..bcdfeb6462a5 100644 --- a/data/registry/collector-exporter-elasticsearch.yml +++ b/data/registry/collector-exporter-elasticsearch.yml @@ -1,13 +1,19 @@ +# cSpell:ignore elasticsearchexporter title: Elasticsearch Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/elasticsearchexporter license: Apache 2.0 description: This exporter supports sending OpenTelemetry logs to Elasticsearch -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/elasticsearchexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/elasticsearchexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-f5cloud.yml b/data/registry/collector-exporter-f5cloud.yml index efc349f03b50..bf943bb9cde9 100644 --- a/data/registry/collector-exporter-f5cloud.yml +++ b/data/registry/collector-exporter-f5cloud.yml @@ -1,13 +1,19 @@ +# cSpell:ignore f5cloudexporter title: F5 Cloud Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/f5cloudexporter license: Apache 2.0 description: The OpenTelemetry Collector Exporter for F5 Cloud -authors: F5 -otVersion: latest +authors: + - name: F5 +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/f5cloudexporter +createdAt: 2020-10-22 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/f5cloudexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-file.yml b/data/registry/collector-exporter-file.yml index 4ed4325d0b29..082abbe18eb2 100644 --- a/data/registry/collector-exporter-file.yml +++ b/data/registry/collector-exporter-file.yml @@ -1,13 +1,19 @@ +# cSpell:ignore fileexporter title: File Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/fileexporter license: Apache 2.0 description: The File Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/fileexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-googlecloud.yml b/data/registry/collector-exporter-googlecloud.yml index 8b30b77095ef..3eb6968f9bd0 100644 --- a/data/registry/collector-exporter-googlecloud.yml +++ b/data/registry/collector-exporter-googlecloud.yml @@ -1,14 +1,20 @@ +# cSpell:ignore googlecloudexporter title: Google Cloud Operations Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlecloudexporter license: Apache 2.0 description: The Google Cloud Operations Exporter for the OpenTelemetry Collector. -authors: Google -otVersion: latest +authors: + - name: Google +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlecloudexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/googlecloudexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-googlecloudpubsub.yml b/data/registry/collector-exporter-googlecloudpubsub.yml index f388dc5069a4..96431a4bac06 100644 --- a/data/registry/collector-exporter-googlecloudpubsub.yml +++ b/data/registry/collector-exporter-googlecloudpubsub.yml @@ -1,13 +1,19 @@ +# cSpell:ignore googlecloudpubsubexporter title: Google Cloud Pubsub Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlecloudpubsubexporter license: Apache 2.0 description: This exporter sends OTLP messages to a Google Cloud Pubsub topic. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlecloudpubsubexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/googlecloudpubsubexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-googlemanagedprometheus.yml b/data/registry/collector-exporter-googlemanagedprometheus.yml index 0e8a530fbc49..4d2d045e269d 100644 --- a/data/registry/collector-exporter-googlemanagedprometheus.yml +++ b/data/registry/collector-exporter-googlemanagedprometheus.yml @@ -1,15 +1,21 @@ +# cSpell:ignore googlemanagedprometheusexporter title: Google Managed Service for Prometheus Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlemanagedprometheusexporter license: Apache 2.0 description: This exporter can be used to send metrics and traces to Google Cloud Managed Service for Prometheus. -authors: Google -otVersion: latest +authors: + - name: Google +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/googlemanagedprometheusexporter +createdAt: 2022-10-27 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/googlemanagedprometheusexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-honeycombmarker.yml b/data/registry/collector-exporter-honeycombmarker.yml index 1707ae51b091..8425ab673423 100644 --- a/data/registry/collector-exporter-honeycombmarker.yml +++ b/data/registry/collector-exporter-honeycombmarker.yml @@ -1,16 +1,21 @@ -# cSpell:ignore honeycombmarker +# cSpell:ignore honeycombmarker honeycombmarkerexporter title: Honeycomb Marker Exporter registryType: exporter -isThirdParty: false language: collector tags: - honeycombmarker - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/honeycombmarkerexporter license: Apache 2.0 description: This exporter allows creating markers, via the Honeycomb Markers API, based on the look of incoming telemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/honeycombmarkerexporter +createdAt: 2023-10-17 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/honeycombmarkerexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-influxdb.yml b/data/registry/collector-exporter-influxdb.yml index 4dc58a59c3d7..9e2fb9a5706c 100644 --- a/data/registry/collector-exporter-influxdb.yml +++ b/data/registry/collector-exporter-influxdb.yml @@ -1,14 +1,20 @@ +# cSpell:ignore influxdbexporter title: InfluxDB Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/influxdbexporter license: Apache 2.0 description: This exporter supports sending tracing, metrics, and logging data to InfluxDB -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/influxdbexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/influxdbexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-instana.yml b/data/registry/collector-exporter-instana.yml index 66501301e571..9e9b189041e8 100644 --- a/data/registry/collector-exporter-instana.yml +++ b/data/registry/collector-exporter-instana.yml @@ -1,13 +1,19 @@ +# cSpell:ignore instanaexporter title: Instana Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/instanaexporter license: Apache 2.0 description: The Instana Exporter for the OpenTelemetry Collector. -authors: Instana Authors -otVersion: latest +authors: + - name: Instana Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/instanaexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/instanaexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-kafka.yml b/data/registry/collector-exporter-kafka.yml index 71df18ad3b61..92aa4a849185 100644 --- a/data/registry/collector-exporter-kafka.yml +++ b/data/registry/collector-exporter-kafka.yml @@ -1,13 +1,19 @@ +# cSpell:ignore kafkaexporter title: Kafka Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/kafkaexporter license: Apache 2.0 description: The Kafka Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/kafkaexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-kinesis.yml b/data/registry/collector-exporter-kinesis.yml index f48516100004..4398b9fcfdbf 100644 --- a/data/registry/collector-exporter-kinesis.yml +++ b/data/registry/collector-exporter-kinesis.yml @@ -1,13 +1,15 @@ +# cSpell:ignore awskinesisexporter title: Kinesis Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awskinesisexporter license: Apache 2.0 description: The OpenTelemetry Kinesis Exporter for Go. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awskinesisexporter +createdAt: 2020-06-06 diff --git a/data/registry/collector-exporter-kinetica.yml b/data/registry/collector-exporter-kinetica.yml index 966215c4baef..e29f15227086 100644 --- a/data/registry/collector-exporter-kinetica.yml +++ b/data/registry/collector-exporter-kinetica.yml @@ -1,16 +1,21 @@ -# cSpell:ignore kinetica +# cSpell:ignore kinetica kineticaexporter title: Kinetica OpenTelemetry Collector Exporter Plug-In registryType: exporter -isThirdParty: false language: collector tags: - kinetica - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/kineticaexporter license: Apache 2.0 description: The schema name `otel` is an example. The user may change this to another name but the same name has to be used -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/kineticaexporter +createdAt: 2023-09-19 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kineticaexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-load-balancing.yml b/data/registry/collector-exporter-load-balancing.yml index 0e3529a75c5b..432a9abceab2 100644 --- a/data/registry/collector-exporter-load-balancing.yml +++ b/data/registry/collector-exporter-load-balancing.yml @@ -1,13 +1,19 @@ +# cSpell:ignore loadbalancingexporter title: Trace ID aware load-balancing Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/loadbalancingexporter license: Apache 2.0 description: The Trace ID aware load-balancing for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/loadbalancingexporter +createdAt: 2020-10-22 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-logging.yml b/data/registry/collector-exporter-logging.yml index 69af46408bf7..b29dc7e69d5b 100644 --- a/data/registry/collector-exporter-logging.yml +++ b/data/registry/collector-exporter-logging.yml @@ -1,13 +1,19 @@ +# cSpell:ignore loggingexporter title: Logging Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/loggingexporter license: Apache 2.0 description: The Logging Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/loggingexporter +createdAt: 2020-11-05 +deprecated: + reason: + This exporter is being deprecated in favour of the [debug + exporter](https://github.com/open-telemetry/opentelemetry-collector/blob/main/exporter/debugexporter/README.md). diff --git a/data/registry/collector-exporter-logicmonitor.yml b/data/registry/collector-exporter-logicmonitor.yml index 143d6a5e7dd3..19d1bbec12a8 100644 --- a/data/registry/collector-exporter-logicmonitor.yml +++ b/data/registry/collector-exporter-logicmonitor.yml @@ -1,14 +1,19 @@ -# cSpell:ignore logicmonitor +# cSpell:ignore logicmonitor logicmonitorexporter title: LogicMonitor Exporter registryType: exporter -isThirdParty: false language: collector tags: - logicmonitor - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/logicmonitorexporter license: Apache 2.0 description: This exporter supports sending logs and traces data to Logicmonitor -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/logicmonitorexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/logicmonitorexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-logzio.yml b/data/registry/collector-exporter-logzio.yml index aa616414823e..b99f9144e8bc 100644 --- a/data/registry/collector-exporter-logzio.yml +++ b/data/registry/collector-exporter-logzio.yml @@ -1,14 +1,19 @@ -# cSpell:ignore logz +# cSpell:ignore logz logzioexporter title: Logz.io Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/logzioexporter license: Apache 2.0 description: The OpenTelemetry Collector Exporter for Logz.io -authors: Logz.io -otVersion: latest +authors: + - name: Logz.io +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/logzioexporter +createdAt: 2020-10-22 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/logzioexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-loki.yml b/data/registry/collector-exporter-loki.yml index 4c168b5b7be1..e5e88f9d095e 100644 --- a/data/registry/collector-exporter-loki.yml +++ b/data/registry/collector-exporter-loki.yml @@ -1,13 +1,19 @@ +# cSpell:ignore lokiexporter title: Loki Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/lokiexporter license: Apache 2.0 description: The OpenTelemetry Collector Exporter for Loki -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/lokiexporter +createdAt: 2020-10-22 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/lokiexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-mezmo.yml b/data/registry/collector-exporter-mezmo.yml index 2999a7d45869..2b8cf09ed95c 100644 --- a/data/registry/collector-exporter-mezmo.yml +++ b/data/registry/collector-exporter-mezmo.yml @@ -1,14 +1,19 @@ -# cSpell:ignore mezmo +# cSpell:ignore mezmo mezmoexporter title: Mezmo Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/mezmoexporter license: Apache 2.0 description: This exporter supports sending OpenTelemetry log data to Mezmo. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/mezmoexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/mezmoexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-opencensus.yml b/data/registry/collector-exporter-opencensus.yml index 7e45097aff15..db435fa74963 100644 --- a/data/registry/collector-exporter-opencensus.yml +++ b/data/registry/collector-exporter-opencensus.yml @@ -1,13 +1,19 @@ +# cSpell:ignore opencensusexporter title: OpenCensus Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/opencensusexporter license: Apache 2.0 description: The OpenCensus Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/opencensusexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/opencensusexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-opensearch.yml b/data/registry/collector-exporter-opensearch.yml index 23ddfc9a38fd..00c43177103b 100644 --- a/data/registry/collector-exporter-opensearch.yml +++ b/data/registry/collector-exporter-opensearch.yml @@ -1,15 +1,21 @@ +# cSpell:ignore opensearchexporter title: OpenSearch Exporter registryType: exporter -isThirdParty: false language: collector tags: - opensearch - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/opensearchexporter license: Apache 2.0 description: OpenSearch exporter supports sending OpenTelemetry signals as documents to OpenSearch. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/opensearchexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/opensearchexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-otlp-http.yml b/data/registry/collector-exporter-otlp-http.yml index ed6ffd853655..6592a37397db 100644 --- a/data/registry/collector-exporter-otlp-http.yml +++ b/data/registry/collector-exporter-otlp-http.yml @@ -1,13 +1,15 @@ +# cSpell:ignore otlphttpexporter title: OTLP HTTP Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/otlphttpexporter license: Apache 2.0 description: The OTLP HTTP Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/otlphttpexporter +createdAt: 2020-11-05 diff --git a/data/registry/collector-exporter-otlp.yml b/data/registry/collector-exporter-otlp.yml index b9a4560c7c30..f76e7a43f2b7 100644 --- a/data/registry/collector-exporter-otlp.yml +++ b/data/registry/collector-exporter-otlp.yml @@ -1,13 +1,15 @@ +# cSpell:ignore otlpexporter title: OTLP gRPC Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/otlpexporter license: Apache 2.0 description: The OTLP gRPC Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/otlpexporter +createdAt: 2020-11-05 diff --git a/data/registry/collector-exporter-prometheus-remote-write.yml b/data/registry/collector-exporter-prometheus-remote-write.yml index c343f5aa7737..8cdb1cf1e3bf 100644 --- a/data/registry/collector-exporter-prometheus-remote-write.yml +++ b/data/registry/collector-exporter-prometheus-remote-write.yml @@ -1,14 +1,20 @@ +# cSpell:ignore prometheusremotewriteexporter title: Prometheus Remote Write Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/prometheusremotewriteexporter license: Apache 2.0 description: The Prometheus Remote Write Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/prometheusremotewriteexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusremotewriteexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-prometheus.yml b/data/registry/collector-exporter-prometheus.yml index 2b16285832ed..0c5d34034345 100644 --- a/data/registry/collector-exporter-prometheus.yml +++ b/data/registry/collector-exporter-prometheus.yml @@ -1,13 +1,19 @@ +# cSpell:ignore prometheusexporter title: Prometheus Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/prometheusexporter license: Apache 2.0 description: The Prometheus Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/prometheusexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-pulsar.yml b/data/registry/collector-exporter-pulsar.yml index f607cf097be0..0d0a674fb2e8 100644 --- a/data/registry/collector-exporter-pulsar.yml +++ b/data/registry/collector-exporter-pulsar.yml @@ -1,15 +1,21 @@ +# cSpell:ignore pulsarexporter title: Pulsar Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/pulsarexporter license: Apache 2.0 description: Pulsar exporter exports logs, metrics, and traces to Pulsar. This exporter uses a synchronous producer -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/pulsarexporter +createdAt: 2022-10-27 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/pulsarexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-qryn.yml b/data/registry/collector-exporter-qryn.yml index fbaede7e4bb9..e393fdfda589 100644 --- a/data/registry/collector-exporter-qryn.yml +++ b/data/registry/collector-exporter-qryn.yml @@ -1,7 +1,6 @@ # cSpell:ignore qryn loki title: qryn exporter registryType: exporter -isThirdParty: true language: collector tags: - go @@ -10,10 +9,15 @@ tags: - loki - prometheus - tempo -repo: https://github.com/metrico/otel-collector license: Apache 2.0 description: This exporter supports sending OpenTelemetry logs, traces and metrics to ClickHouse using the qryn polyglot format. -authors: akvlad@qxip.net, lorenzo@qxip.net -otVersion: latest +authors: + - name: lorenzo@qxip.net + email: lorenzo@qxip.net + - name: akvlad@qxip.net + email: akvlad@qxip.net +urls: + repo: https://github.com/metrico/otel-collector +createdAt: 2023-10-17 diff --git a/data/registry/collector-exporter-sapm.yml b/data/registry/collector-exporter-sapm.yml index 129c9fe623e5..15c249d7dbe8 100644 --- a/data/registry/collector-exporter-sapm.yml +++ b/data/registry/collector-exporter-sapm.yml @@ -1,16 +1,21 @@ -# cSpell:ignore sapm +# cSpell:ignore sapm sapmexporter title: SAPM Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sapmexporter license: Apache 2.0 description: The SAPM exporter builds on the Jaeger proto and adds additional batching on top. This allows -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sapmexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sapmexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-sentry.yml b/data/registry/collector-exporter-sentry.yml index 14fbf6f892cc..6c5a71bd2e73 100644 --- a/data/registry/collector-exporter-sentry.yml +++ b/data/registry/collector-exporter-sentry.yml @@ -1,13 +1,19 @@ +# cSpell:ignore sentryexporter title: Sentry Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sentryexporter license: Apache 2.0 description: The Sentry Exporter for the OpenTelemetry Collector. -authors: Sentry -otVersion: latest +authors: + - name: Sentry +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sentryexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sentryexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-signalfx.yml b/data/registry/collector-exporter-signalfx.yml index b67653e70def..4cd87fe92b00 100644 --- a/data/registry/collector-exporter-signalfx.yml +++ b/data/registry/collector-exporter-signalfx.yml @@ -1,13 +1,19 @@ +# cSpell:ignore signalfxexporter title: SignalFx Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/signalfxexporter license: Apache 2.0 description: The SignalFx Exporter for the OpenTelemetry Collector. -authors: Splunk -otVersion: latest +authors: + - name: Splunk +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/signalfxexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-skywalking.yml b/data/registry/collector-exporter-skywalking.yml index 1e185fb8f448..05bdb391e812 100644 --- a/data/registry/collector-exporter-skywalking.yml +++ b/data/registry/collector-exporter-skywalking.yml @@ -1,16 +1,21 @@ -# cSpell:ignore skywalking +# cSpell:ignore skywalking skywalkingexporter title: SkyWalking gRPC Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/skywalkingexporter license: Apache 2.0 description: Exports data via gRPC using skywalking-data-collect-protocol format. By default, this exporter requires TLS and offers queued retry capabilities. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/skywalkingexporter +createdAt: 2022-10-27 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/skywalkingexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-splunk-apm.yml b/data/registry/collector-exporter-splunk-apm.yml index b1ad8fb5d455..b1f87b1a94fd 100644 --- a/data/registry/collector-exporter-splunk-apm.yml +++ b/data/registry/collector-exporter-splunk-apm.yml @@ -1,14 +1,15 @@ # cSpell:ignore sapm title: Splunk APM (SAPM) Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sapmexporter license: Apache 2.0 description: The OpenTelemetry Splunk APM Exporter for Go. -authors: Splunk Authors -otVersion: latest +authors: + - name: Splunk Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sapmexporter +createdAt: 2020-06-06 diff --git a/data/registry/collector-exporter-splunk-hec.yml b/data/registry/collector-exporter-splunk-hec.yml index 22b31b830696..09f526024df8 100644 --- a/data/registry/collector-exporter-splunk-hec.yml +++ b/data/registry/collector-exporter-splunk-hec.yml @@ -1,15 +1,21 @@ +# cSpell:ignore splunkhecexporter title: Splunk HTTP Event Collector (HEC) Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/splunkhecexporter license: Apache 2.0 description: The Splunk HTTP Event Collector (HEC) Exporter for the OpenTelemetry Collector. -authors: Splunk -otVersion: latest +authors: + - name: Splunk +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/splunkhecexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/splunkhecexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-splunk-imm.yml b/data/registry/collector-exporter-splunk-imm.yml index 8cb650633401..ce12e6214768 100644 --- a/data/registry/collector-exporter-splunk-imm.yml +++ b/data/registry/collector-exporter-splunk-imm.yml @@ -1,13 +1,15 @@ +# cSpell:ignore signalfxexporter title: Splunk Infrastructure Monitoring Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/signalfxexporter license: Apache 2.0 description: The OpenTelemetry Splunk Infrastructure Monitoring Exporter for Go. -authors: Splunk Authors -otVersion: latest +authors: + - name: Splunk Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/signalfxexporter +createdAt: 2020-11-05 diff --git a/data/registry/collector-exporter-splunk-sapm.yml b/data/registry/collector-exporter-splunk-sapm.yml index 2d2cb2319f96..00747e4c6d47 100644 --- a/data/registry/collector-exporter-splunk-sapm.yml +++ b/data/registry/collector-exporter-splunk-sapm.yml @@ -1,14 +1,19 @@ -# cSpell:ignore sapm +# cSpell:ignore sapm sapmexporter title: Splunk SAPM Collector Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sapmexporter license: Apache 2.0 description: The Splunk SAPM Exporter for the OpenTelemetry Collector. -authors: Splunk -otVersion: latest +authors: + - name: Splunk +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sapmexporter +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sapmexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-sumologic.yml b/data/registry/collector-exporter-sumologic.yml index 5b0344dfb4c2..51665106d94a 100644 --- a/data/registry/collector-exporter-sumologic.yml +++ b/data/registry/collector-exporter-sumologic.yml @@ -1,13 +1,19 @@ +# cSpell:ignore sumologicexporter title: Sumo Logic Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sumologicexporter license: Apache 2.0 description: The OpenTelemetry Collector Exporter for Sumo Logic -authors: Sumo Logic -otVersion: latest +authors: + - name: Sumo Logic +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/sumologicexporter +createdAt: 2020-10-22 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sumologicexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-syslog.yml b/data/registry/collector-exporter-syslog.yml index d604d28a042f..a4dd955b4aae 100644 --- a/data/registry/collector-exporter-syslog.yml +++ b/data/registry/collector-exporter-syslog.yml @@ -1,14 +1,20 @@ +# cSpell:ignore syslogexporter title: Syslog Exporter registryType: exporter -isThirdParty: false language: collector tags: - syslog - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/syslogexporter license: Apache 2.0 description: The syslog exporter supports sending messages to a remote syslog server. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/syslogexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/syslogexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-tanzu-observability.yml b/data/registry/collector-exporter-tanzu-observability.yml index fe22d129c77b..f1d70e4d628e 100644 --- a/data/registry/collector-exporter-tanzu-observability.yml +++ b/data/registry/collector-exporter-tanzu-observability.yml @@ -1,15 +1,20 @@ -# cSpell:ignore tanzu +# cSpell:ignore tanzu tanzuobservabilityexporter title: Tanzu Observability Collector Traces Exporter registryType: exporter -isThirdParty: true language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/tanzuobservabilityexporter license: Apache 2.0 description: The Tanzu Observability (Wavefront) Exporter for the OpenTelemetry Collector. -authors: Tanzu Observability -otVersion: latest +authors: + - name: Tanzu Observability +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/tanzuobservabilityexporter +createdAt: 2021-05-27 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/tanzuobservabilityexporter + version: v0.91.0 diff --git a/data/registry/collector-exporter-tencentcloudlogservice.yml b/data/registry/collector-exporter-tencentcloudlogservice.yml index be012d081daf..8c9ac111bb5c 100644 --- a/data/registry/collector-exporter-tencentcloudlogservice.yml +++ b/data/registry/collector-exporter-tencentcloudlogservice.yml @@ -1,14 +1,20 @@ +# cSpell:ignore tencentcloudlogserviceexporter title: TencentCloud LogService Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/tencentcloudlogserviceexporter license: Apache 2.0 description: This exporter supports sending OpenTelemetry log data to LogService. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/tencentcloudlogserviceexporter +createdAt: 2022-10-27 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/tencentcloudlogserviceexporter + version: v0.92.0 diff --git a/data/registry/collector-exporter-zipkin.yml b/data/registry/collector-exporter-zipkin.yml index 2d852aad2e2c..ee6ed1c5128f 100644 --- a/data/registry/collector-exporter-zipkin.yml +++ b/data/registry/collector-exporter-zipkin.yml @@ -1,13 +1,19 @@ +# cSpell:ignore zipkinexporter title: Zipkin Collector Exporter registryType: exporter -isThirdParty: false language: collector tags: - go - exporter - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/zipkinexporter license: Apache 2.0 description: The Zipkin Exporter for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/zipkinexporter +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/zipkinexporter + version: v0.92.0 diff --git a/data/registry/collector-extension-asapauth.yml b/data/registry/collector-extension-asapauth.yml index 65cddc859be0..ea8d64684df4 100644 --- a/data/registry/collector-extension-asapauth.yml +++ b/data/registry/collector-extension-asapauth.yml @@ -1,16 +1,22 @@ +# cSpell:ignore asapauthextension title: ASAP Client Authentication Extension registryType: extension -isThirdParty: false language: collector tags: - asap - auth - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/asapauthextension license: Apache 2.0 description: This extension provides Atlassian Service Authentication Protocol (ASAP) client credentials for HTTP or gRPC based exporters. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/asapauthextension +createdAt: 2022-11-07 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/asapauthextension + version: v0.92.0 diff --git a/data/registry/collector-extension-ballast.yml b/data/registry/collector-extension-ballast.yml index 069d6a50f166..7222358250f7 100644 --- a/data/registry/collector-extension-ballast.yml +++ b/data/registry/collector-extension-ballast.yml @@ -1,15 +1,17 @@ +# cSpell:ignore ballastextension title: Memory Ballast registryType: extension -isThirdParty: false language: collector tags: - ballast - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/extension/ballastextension license: Apache 2.0 description: Memory Ballast extension enables applications to configure memory ballast for the process. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/extension/ballastextension +createdAt: 2022-11-07 diff --git a/data/registry/collector-extension-basicauth.yml b/data/registry/collector-extension-basicauth.yml index 322a36db133b..5009a6b8fe60 100644 --- a/data/registry/collector-extension-basicauth.yml +++ b/data/registry/collector-extension-basicauth.yml @@ -1,17 +1,22 @@ -# cSpell:ignore basicauth configauth +# cSpell:ignore basicauth configauth basicauthextension title: Basic Authenticator registryType: extension -isThirdParty: false language: collector tags: - basicauth - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/basicauthextension license: Apache 2.0 description: This extension implements both configauth.ServerAuthenticator and configauth.ClientAuthenticator to authenticate clients and servers using Basic Authentication. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/basicauthextension +createdAt: 2022-11-07 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/basicauthextension + version: v0.92.0 diff --git a/data/registry/collector-extension-bearertokenauth.yml b/data/registry/collector-extension-bearertokenauth.yml index e1e1fa93baa8..f6a100043af5 100644 --- a/data/registry/collector-extension-bearertokenauth.yml +++ b/data/registry/collector-extension-bearertokenauth.yml @@ -1,15 +1,21 @@ +# cSpell:ignore bearertokenauthextension title: Bearer token authenticator extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/bearertokenauthextension license: Apache 2.0 description: The Bearer token authenticator extension allows gRPC and HTTP-based exporters to add authentication data to outgoing calls based on a static token. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/bearertokenauthextension +createdAt: 2021-06-22 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/bearertokenauthextension + version: v0.92.0 diff --git a/data/registry/collector-extension-encoding.yml b/data/registry/collector-extension-encoding.yml index 5f35ebbfb3d9..5b7817913e0d 100644 --- a/data/registry/collector-extension-encoding.yml +++ b/data/registry/collector-extension-encoding.yml @@ -1,15 +1,21 @@ +# cSpell:ignore encoding title: Encoding extension registryType: extension -isThirdParty: false language: collector tags: - encoding - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/encoding license: Apache 2.0 description: The encoding extension allows for other components to reference ingress/egress data formats -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/encoding +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding + version: v0.92.0 diff --git a/data/registry/collector-extension-headerssetter.yml b/data/registry/collector-extension-headerssetter.yml index 95c1bd1cd593..18ee14c8af25 100644 --- a/data/registry/collector-extension-headerssetter.yml +++ b/data/registry/collector-extension-headerssetter.yml @@ -1,17 +1,23 @@ +# cSpell:ignore headerssetterextension title: Headers Setter extension registryType: extension -isThirdParty: false language: collector tags: - headers - setter - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/headerssetterextension license: Apache 2.0 description: The headers_setter extension implements ClientAuthenticator and is used to set requests headers in gRPC / HTTP exporters with values provided via extension configurations or requests metadata (context). -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/headerssetterextension +createdAt: 2022-11-07 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/headerssetterextension + version: v0.92.0 diff --git a/data/registry/collector-extension-healthcheck.yml b/data/registry/collector-extension-healthcheck.yml index 63d78991b9e8..9be19d63565d 100644 --- a/data/registry/collector-extension-healthcheck.yml +++ b/data/registry/collector-extension-healthcheck.yml @@ -1,15 +1,21 @@ +# cSpell:ignore healthcheckextension title: Health Check Collector Extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/healthcheckextension license: Apache 2.0 description: The Health Check Extension for the OpenTelemetry Collector enables an HTTP URL that can be probed to check the status of the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/healthcheckextension +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension + version: v0.92.0 diff --git a/data/registry/collector-extension-http-forwarder.yml b/data/registry/collector-extension-http-forwarder.yml index bc02372eddde..55adcba3f34e 100644 --- a/data/registry/collector-extension-http-forwarder.yml +++ b/data/registry/collector-extension-http-forwarder.yml @@ -1,15 +1,21 @@ +# cSpell:ignore httpforwarder title: HTTP Forwarder Collector Extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/httpforwarder license: Apache 2.0 description: The HTTP Forwarder Extension for the OpenTelemetry Collector accepts HTTP requests, optionally adds headers to them and forwards them. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/httpforwarder +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/httpforwarder + version: v0.92.0 diff --git a/data/registry/collector-extension-jaegerremotesampling.yml b/data/registry/collector-extension-jaegerremotesampling.yml index 638cf4ac7a63..2f4a4a4e25cd 100644 --- a/data/registry/collector-extension-jaegerremotesampling.yml +++ b/data/registry/collector-extension-jaegerremotesampling.yml @@ -1,16 +1,22 @@ +# cSpell:ignore jaegerremotesampling title: ASAP Client Authentication Extension registryType: extension -isThirdParty: false language: collector tags: - jaeger - sampling - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/jaegerremotesampling license: Apache 2.0 description: This extension allows serving sampling strategies following the Jaeger's remote sampling API. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/jaegerremotesampling +createdAt: 2022-11-07 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/jaegerremotesampling + version: v0.92.0 diff --git a/data/registry/collector-extension-oauth2clientauth.yml b/data/registry/collector-extension-oauth2clientauth.yml index 213f84ac49e8..f22cec9c466c 100644 --- a/data/registry/collector-extension-oauth2clientauth.yml +++ b/data/registry/collector-extension-oauth2clientauth.yml @@ -1,15 +1,21 @@ +# cSpell:ignore oauth2clientauthextension title: OAuth2 Client Credentials authenticator extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/oauth2clientauthextension license: Apache 2.0 description: The OAuth2 Client Credentials authenticator extension allows gRPC and HTTP-based exporters to add authentication data to outgoing calls. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/oauth2clientauthextension +createdAt: 2021-06-22 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/oauth2clientauthextension + version: v0.92.0 diff --git a/data/registry/collector-extension-observer.yml b/data/registry/collector-extension-observer.yml index 44e41ebc2b0b..4c600f75257a 100644 --- a/data/registry/collector-extension-observer.yml +++ b/data/registry/collector-extension-observer.yml @@ -1,16 +1,18 @@ +# cSpell:ignore observer title: Host Observer Collector Extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/observer/ license: Apache 2.0 description: Observers are implemented as an extension to discover networked endpoints like a Kubernetes pod, Docker container, or local listening port. Currently available are observers for docker, ecs, ecs_task, host and K8s. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/observer/ +createdAt: 2021-02-24 diff --git a/data/registry/collector-extension-oidcauth.yml b/data/registry/collector-extension-oidcauth.yml index 276018281b2b..5fb4e000967b 100644 --- a/data/registry/collector-extension-oidcauth.yml +++ b/data/registry/collector-extension-oidcauth.yml @@ -1,17 +1,22 @@ -# cSpell:ignore oidc +# cSpell:ignore oidc oidcauthextension title: OIDC authenticator extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector - oidc -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/oidcauthextension license: Apache 2.0 description: The OIDC authenticator extension allows gRPC and HTTP-based receivers to require authentication from remote clients. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/oidcauthextension +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/oidcauthextension + version: v0.92.0 diff --git a/data/registry/collector-extension-opamp.yml b/data/registry/collector-extension-opamp.yml index f5912543fd64..566cdb132adc 100644 --- a/data/registry/collector-extension-opamp.yml +++ b/data/registry/collector-extension-opamp.yml @@ -1,13 +1,19 @@ +# cSpell:ignore opampextension title: OpAMP Agent Extension registryType: extension -isThirdParty: false language: collector tags: - opamp - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/opampextension license: Apache 2.0 description: Collector extension for OpAMP -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/opampextension +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/opampextension + version: v0.92.0 diff --git a/data/registry/collector-extension-pprof.yml b/data/registry/collector-extension-pprof.yml index 92ced377baf3..286a6f7d1550 100644 --- a/data/registry/collector-extension-pprof.yml +++ b/data/registry/collector-extension-pprof.yml @@ -1,15 +1,21 @@ +# cSpell:ignore pprofextension title: Performance Profiler Collector Extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/pprofextension license: Apache 2.0 description: The Performance Profiler Extension for the OpenTelemetry Collector can be used to collect performance profiles and investigate issues with the service. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/pprofextension +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/pprofextension + version: v0.92.0 diff --git a/data/registry/collector-extension-remotetap.yml b/data/registry/collector-extension-remotetap.yml index b02789cd9dd5..cbd9cfc86aab 100644 --- a/data/registry/collector-extension-remotetap.yml +++ b/data/registry/collector-extension-remotetap.yml @@ -1,16 +1,22 @@ +# cSpell:ignore remotetapextension title: Remote Tap Extension registryType: extension -isThirdParty: false language: collector tags: - remote - tap - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/remotetapextension license: Apache 2.0 description: This extension runs as a Web server that loads the remote observers that are registered against it. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/remotetapextension +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/remotetapextension + version: v0.92.0 diff --git a/data/registry/collector-extension-sigv4auth.yml b/data/registry/collector-extension-sigv4auth.yml index 882ee60d4a6a..9a06fd9a9c57 100644 --- a/data/registry/collector-extension-sigv4auth.yml +++ b/data/registry/collector-extension-sigv4auth.yml @@ -1,17 +1,22 @@ -# cSpell:ignore sigv4 +# cSpell:ignore sigv4 sigv4authextension title: Authenticator - SigV4 registryType: extension -isThirdParty: false language: collector tags: - sigv4 - auth - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/sigv4authextension license: Apache 2.0 description: This extension provides SigV4 authentication for making requests to AWS services. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/extension/sigv4authextension +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/extension/sigv4authextension + version: v0.92.0 diff --git a/data/registry/collector-extension-zpages.yml b/data/registry/collector-extension-zpages.yml index 978660c94b49..4f88ff825295 100644 --- a/data/registry/collector-extension-zpages.yml +++ b/data/registry/collector-extension-zpages.yml @@ -1,16 +1,18 @@ +# cSpell:ignore zpagesextension title: zPages Collector Extension registryType: extension -isThirdParty: false language: collector tags: - go - extension - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/extension/zpagesextension license: Apache 2.0 description: The zPages Extension for the OpenTelemetry Collector serves zPages, an HTTP endpoint that provides live data for debugging different components that were properly instrumented for such. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/extension/zpagesextension +createdAt: 2021-02-24 diff --git a/data/registry/collector-processor-attributes.yml b/data/registry/collector-processor-attributes.yml index c0cb4e72f357..96f11727afc2 100644 --- a/data/registry/collector-processor-attributes.yml +++ b/data/registry/collector-processor-attributes.yml @@ -1,15 +1,21 @@ +# cSpell:ignore attributesprocessor title: Attribute Collector Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/attributesprocessor license: Apache 2.0 description: The Attribute Processor for the OpenTelemetry Collector modifies attributes of a span. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/attributesprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-batch.yml b/data/registry/collector-processor-batch.yml index 1a924d802335..bf44f449b6f9 100644 --- a/data/registry/collector-processor-batch.yml +++ b/data/registry/collector-processor-batch.yml @@ -1,15 +1,17 @@ +# cSpell:ignore batchprocessor title: Batch Collector Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/processor/batchprocessor license: Apache 2.0 description: The Batch Processor for the OpenTelemetry Collector accepts spans, metrics, or logs and places them into batches. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/processor/batchprocessor +createdAt: 2021-02-24 diff --git a/data/registry/collector-processor-cumulativetodelta.yml b/data/registry/collector-processor-cumulativetodelta.yml index 024c6f41346c..03bec5609c9c 100644 --- a/data/registry/collector-processor-cumulativetodelta.yml +++ b/data/registry/collector-processor-cumulativetodelta.yml @@ -1,16 +1,22 @@ +# cSpell:ignore cumulativetodeltaprocessor title: Cumulative to Delta Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/cumulativetodeltaprocessor license: Apache 2.0 description: The cumulative to delta processor converts monotonic, cumulative sum and histogram metrics to monotonic, delta metrics. Non-monotonic sums and exponential histograms are excluded. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/cumulativetodeltaprocessor +createdAt: 2022-10-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/cumulativetodeltaprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-datadog.yml b/data/registry/collector-processor-datadog.yml index 12213f918944..20d2d6cb3c1c 100644 --- a/data/registry/collector-processor-datadog.yml +++ b/data/registry/collector-processor-datadog.yml @@ -1,14 +1,20 @@ +# cSpell:ignore datadogprocessor title: Datadog Processor registryType: processor -isThirdParty: false language: collector tags: - datadog - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/datadogprocessor license: Apache 2.0 description: The Datadog Processor can be used to compute Datadog APM Stats pre-sampling. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/datadogprocessor +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/datadogprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-deltatorate.yml b/data/registry/collector-processor-deltatorate.yml index 8b6734452aa2..49923498923e 100644 --- a/data/registry/collector-processor-deltatorate.yml +++ b/data/registry/collector-processor-deltatorate.yml @@ -1,15 +1,21 @@ +# cSpell:ignore deltatorateprocessor title: Delta to Rate Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/deltatorateprocessor license: Apache 2.0 description: The delta to rate processor converts delta sum metrics to rate metrics. This rate is a gauge. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/deltatorateprocessor +createdAt: 2022-10-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/deltatorateprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-filter.yml b/data/registry/collector-processor-filter.yml index 7fb92bb4b79c..3ea1ea469a3d 100644 --- a/data/registry/collector-processor-filter.yml +++ b/data/registry/collector-processor-filter.yml @@ -1,15 +1,21 @@ +# cSpell:ignore filterprocessor title: Filter Collector Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/filterprocessor license: Apache 2.0 description: The Filter Processor for the OpenTelemetry Collector can be configured to include or exclude metrics. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/filterprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/filterprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-group-by-trace.yml b/data/registry/collector-processor-group-by-trace.yml index c5dc0cc0e4ac..8a081fa0a3e8 100644 --- a/data/registry/collector-processor-group-by-trace.yml +++ b/data/registry/collector-processor-group-by-trace.yml @@ -1,16 +1,22 @@ +# cSpell:ignore groupbytraceprocessor title: Group by Trace Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/groupbytraceprocessor license: Apache 2.0 description: The Group by Trace Processor for the OpenTelemetry Collector collects all the spans from the same trace, waiting a pre-determined amount of time before releasing the trace to the next processor. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/groupbytraceprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/groupbytraceprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-groupbyattrs.yml b/data/registry/collector-processor-groupbyattrs.yml index d1e2644a5a78..326911b11a00 100644 --- a/data/registry/collector-processor-groupbyattrs.yml +++ b/data/registry/collector-processor-groupbyattrs.yml @@ -1,17 +1,23 @@ +# cSpell:ignore groupbyattrsprocessor title: Group by Attributes processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/groupbyattrsprocessor license: Apache 2.0 description: This processor re-associates spans, log records and metric data points to a Resource that matches with the specified attributes. As a result, all spans, log records or metric data points with the same values for the specified attributes are "grouped" under the same Resource. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/groupbyattrsprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/groupbyattrsprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-k8sattributes.yml b/data/registry/collector-processor-k8sattributes.yml index 0f3e1c82f5e0..e58d54622383 100644 --- a/data/registry/collector-processor-k8sattributes.yml +++ b/data/registry/collector-processor-k8sattributes.yml @@ -1,16 +1,22 @@ +# cSpell:ignore k8sattributesprocessor title: K8s Attribute Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/k8sattributesprocessor license: Apache 2.0 description: The K8s Attribute Processor for the OpenTelemetry Collector automatically discovers K8s resources (pods), extracts metadata from them and adds the extracted metadata to the relevant spans, metrics and logs. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/k8sattributesprocessor +createdAt: 2022-03-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-logstransform.yml b/data/registry/collector-processor-logstransform.yml index efdae5094631..83349c508a6b 100644 --- a/data/registry/collector-processor-logstransform.yml +++ b/data/registry/collector-processor-logstransform.yml @@ -1,15 +1,21 @@ +# cSpell:ignore logstransformprocessor title: Logs Transform Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/logstransformprocessor license: Apache 2.0 description: The logs transform processor can be used to apply log operators to logs coming from any receiver. Please refer to config.go for the config spec. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/logstransformprocessor +createdAt: 2022-10-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/logstransformprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-memory-limiter.yml b/data/registry/collector-processor-memory-limiter.yml index 8ced8214dae9..a6ad96801fba 100644 --- a/data/registry/collector-processor-memory-limiter.yml +++ b/data/registry/collector-processor-memory-limiter.yml @@ -1,15 +1,17 @@ +# cSpell:ignore memorylimiterprocessor title: Memory Limiter Collector Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/processor/memorylimiterprocessor license: Apache 2.0 description: The Memory Limiter Processor for the OpenTelemetry Collector is used to prevent out of memory situations on the collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/processor/memorylimiterprocessor +createdAt: 2021-02-24 diff --git a/data/registry/collector-processor-metrics-transform.yml b/data/registry/collector-processor-metrics-transform.yml index f187bff10e8c..83de4ea1b5db 100644 --- a/data/registry/collector-processor-metrics-transform.yml +++ b/data/registry/collector-processor-metrics-transform.yml @@ -1,16 +1,22 @@ +# cSpell:ignore metricstransformprocessor title: Metrics Transform Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/metricstransformprocessor license: Apache 2.0 description: The Metrics Transform Processor for the OpenTelemetry Collector can be used to rename metrics, and add, rename or delete label keys and values. It can also be used to perform aggregations on metrics across labels or label values. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/metricstransformprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricstransformprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-metricsgeneration.yml b/data/registry/collector-processor-metricsgeneration.yml index 8bfa9b72efbf..b2d40c36d0c9 100644 --- a/data/registry/collector-processor-metricsgeneration.yml +++ b/data/registry/collector-processor-metricsgeneration.yml @@ -1,16 +1,22 @@ +# cSpell:ignore metricsgenerationprocessor title: Metrics Generation Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/metricsgenerationprocessor license: Apache 2.0 description: The metrics generation processor can be used to create new metrics using existing metrics following a given rule. Currently it supports following two approaches for creating a new metric. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/metricsgenerationprocessor +createdAt: 2022-10-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricsgenerationprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-probabilisticsampler.yml b/data/registry/collector-processor-probabilisticsampler.yml index f61d9d4d4bf6..2a103c59581d 100644 --- a/data/registry/collector-processor-probabilisticsampler.yml +++ b/data/registry/collector-processor-probabilisticsampler.yml @@ -1,15 +1,21 @@ +# cSpell:ignore probabilisticsamplerprocessor title: Probabilistic Sampling Collector Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/probabilisticsamplerprocessor license: Apache 2.0 description: The Probabilistic Sampling Processor for the OpenTelemetry Collector provides probabilistic sampling of traces. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/probabilisticsamplerprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/probabilisticsamplerprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-redaction.yml b/data/registry/collector-processor-redaction.yml index cc124607ca9c..563899b4f69c 100644 --- a/data/registry/collector-processor-redaction.yml +++ b/data/registry/collector-processor-redaction.yml @@ -1,14 +1,20 @@ +# cSpell:ignore redactionprocessor title: Redaction processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/redactionprocessor license: Apache 2.0 description: This processor deletes span attributes that don't match a list of allowed span -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/redactionprocessor +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/redactionprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-remotetap.yml b/data/registry/collector-processor-remotetap.yml index 5d46716dff04..813dd6579a3a 100644 --- a/data/registry/collector-processor-remotetap.yml +++ b/data/registry/collector-processor-remotetap.yml @@ -1,6 +1,6 @@ +# cSpell:ignore remotetapprocessor title: Websocket Processor registryType: processor -isThirdParty: false language: collector tags: - websocket @@ -8,10 +8,16 @@ tags: - tap - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/remotetapprocessor license: Apache 2.0 description: The WebSocket processor, which can be positioned anywhere in a pipeline, allows -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/remotetapprocessor +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/remotetapprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-resource-detection.yml b/data/registry/collector-processor-resource-detection.yml index 29f5b1bf8d4f..ceceeddc82de 100644 --- a/data/registry/collector-processor-resource-detection.yml +++ b/data/registry/collector-processor-resource-detection.yml @@ -1,17 +1,23 @@ +# cSpell:ignore resourcedetectionprocessor title: Resource Detection Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/resourcedetectionprocessor license: Apache 2.0 description: The Resource Detection Processor for the OpenTelemetry Collector can be used to detect resource information from the host, in a format that conforms to the OpenTelemetry resource semantic conventions, and append or override the resource value in telemetry data with this information. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/resourcedetectionprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourcedetectionprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-resource.yml b/data/registry/collector-processor-resource.yml index 8e5486bed3d3..74b85b5227c9 100644 --- a/data/registry/collector-processor-resource.yml +++ b/data/registry/collector-processor-resource.yml @@ -1,15 +1,21 @@ +# cSpell:ignore resourceprocessor title: Resource Collector Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/resourceprocessor license: Apache 2.0 description: The Resource Processor for the OpenTelemetry Collector can be used to apply changes on resource attributes. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/resourceprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-routing.yml b/data/registry/collector-processor-routing.yml index 02411b88677e..25fc9c552587 100644 --- a/data/registry/collector-processor-routing.yml +++ b/data/registry/collector-processor-routing.yml @@ -1,16 +1,22 @@ +# cSpell:ignore routingprocessor title: Routing Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/routingprocessor license: Apache 2.0 description: The Routing Processor for the OpenTelemetry Collector will read a header from the incoming HTTP request (gRPC or plain HTTP) and direct the trace information to specific exporters based on the attribute's value. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/routingprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/routingprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-schema.yml b/data/registry/collector-processor-schema.yml index 13b65240aef0..df3073ca3232 100644 --- a/data/registry/collector-processor-schema.yml +++ b/data/registry/collector-processor-schema.yml @@ -1,15 +1,21 @@ +# cSpell:ignore schemaprocessor title: Schema Transformer Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/schemaprocessor license: Apache 2.0 description: The Schema Processor is used to convert existing telemetry data or signals to a version of the semantic convention defined as part of the configuration. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/schemaprocessor +createdAt: 2022-10-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/schemaprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-servicegraph.yml b/data/registry/collector-processor-servicegraph.yml index 8c1390cd4100..2dea4e7dc4de 100644 --- a/data/registry/collector-processor-servicegraph.yml +++ b/data/registry/collector-processor-servicegraph.yml @@ -1,15 +1,21 @@ +# cSpell:ignore servicegraphprocessor title: Service graph processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/servicegraphprocessor license: Apache 2.0 description: The service graphs processor is a traces processor that builds a map representing the interrelationships between various services in a system. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/servicegraphprocessor +createdAt: 2022-10-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/servicegraphprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-span-metrics.yml b/data/registry/collector-processor-span-metrics.yml index 277b9d35aa0f..850bb141bdef 100644 --- a/data/registry/collector-processor-span-metrics.yml +++ b/data/registry/collector-processor-span-metrics.yml @@ -1,15 +1,21 @@ +# cSpell:ignore spanmetricsprocessor title: Span Metrics Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/spanmetricsprocessor license: Apache 2.0 description: The Span Metrics Processor for the OpenTelemetry Collector aggregates Request, Error and Duration (R.E.D) metrics from span data. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/spanmetricsprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/spanmetricsprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-span.yml b/data/registry/collector-processor-span.yml index ac425d8b62f1..2dcac3ddb7ad 100644 --- a/data/registry/collector-processor-span.yml +++ b/data/registry/collector-processor-span.yml @@ -1,15 +1,21 @@ +# cSpell:ignore spanprocessor title: Span Collector Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/spanprocessor license: Apache 2.0 description: The Span Processor for the OpenTelemetry Collector modifies either the span name or attributes of a span based on the span name. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/spanprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/spanprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-sumologic.yml b/data/registry/collector-processor-sumologic.yml index bc87f0b0ce43..fcf1cfbbf35d 100644 --- a/data/registry/collector-processor-sumologic.yml +++ b/data/registry/collector-processor-sumologic.yml @@ -1,17 +1,23 @@ +# cSpell:ignore sumologicprocessor # cspell:ignore sumologic title: Sumo Logic Processor registryType: processor -isThirdParty: false language: collector tags: - sumologic - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/sumologicprocessor license: Apache 2.0 description: The Sumo Logic processor modifies the metadata on logs, metrics and traces sent to Sumo Logic so that the Sumo Logic apps can make full use of the ingested data. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/sumologicprocessor +createdAt: 2023-12-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/sumologicprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-tail-sampling.yml b/data/registry/collector-processor-tail-sampling.yml index 8a17bf856c55..ee1577588e29 100644 --- a/data/registry/collector-processor-tail-sampling.yml +++ b/data/registry/collector-processor-tail-sampling.yml @@ -1,15 +1,21 @@ +# cSpell:ignore tailsamplingprocessor title: Tail Sampling Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/tailsamplingprocessor license: Apache 2.0 description: The Tail Sampling Processor for the OpenTelemetry Collector samples traces based on a set of defined policies. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/tailsamplingprocessor +createdAt: 2021-02-24 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor + version: v0.92.0 diff --git a/data/registry/collector-processor-transform.yml b/data/registry/collector-processor-transform.yml index 1f5a56938549..1a5b2bb61578 100644 --- a/data/registry/collector-processor-transform.yml +++ b/data/registry/collector-processor-transform.yml @@ -1,17 +1,23 @@ +# cSpell:ignore transformprocessor title: Transform Processor registryType: processor -isThirdParty: false language: collector tags: - go - processor - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/transformprocessor license: Apache 2.0 description: The Transform Processor for the OpenTelemetry Collector can be used to transform any fields on traces, metrics, and logs within the collector. It utilizes a transformation language to define transformations and conditions and then applies those transformations to the specified telemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/processor/transformprocessor +createdAt: 2022-10-11 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor + version: v0.92.0 diff --git a/data/registry/collector-receiver-activedirectoryds.yml b/data/registry/collector-receiver-activedirectoryds.yml index 5b15a271a3b5..cd8fe1017596 100644 --- a/data/registry/collector-receiver-activedirectoryds.yml +++ b/data/registry/collector-receiver-activedirectoryds.yml @@ -1,15 +1,21 @@ +# cSpell:ignore activedirectorydsreceiver title: Active Directory Domain Services Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/activedirectorydsreceiver license: Apache 2.0 description: The active_directory_ds receiver scrapes metric relating to an Active Directory domain controller using the Windows Performance Counters. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/activedirectorydsreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/activedirectorydsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-aerospike.yml b/data/registry/collector-receiver-aerospike.yml index 36e967d60677..43e98712914f 100644 --- a/data/registry/collector-receiver-aerospike.yml +++ b/data/registry/collector-receiver-aerospike.yml @@ -1,16 +1,21 @@ -# cSpell:ignore aerospike +# cSpell:ignore aerospike aerospikereceiver title: Aerospike Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/aerospikereceiver license: Apache 2.0 description: The Aerospike receiver is designed to collect performance metrics from one or more Aerospike nodes. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/aerospikereceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/aerospikereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-apache.yml b/data/registry/collector-receiver-apache.yml index fb5bf550477f..f9841f8d2bf9 100644 --- a/data/registry/collector-receiver-apache.yml +++ b/data/registry/collector-receiver-apache.yml @@ -1,15 +1,21 @@ +# cSpell:ignore apachereceiver title: Apache Web Server Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/apachereceiver license: Apache 2.0 description: This receiver fetches stats from a Apache Web Server instance using the server-status?auto endpoint. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/apachereceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/apachereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-apachespark.yml b/data/registry/collector-receiver-apachespark.yml index e46b59d131b6..7a5118ba38d6 100644 --- a/data/registry/collector-receiver-apachespark.yml +++ b/data/registry/collector-receiver-apachespark.yml @@ -1,16 +1,22 @@ +# cSpell:ignore apachesparkreceiver title: Apache Spark Receiver registryType: receiver -isThirdParty: false language: collector tags: - apache - spark - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/apachesparkreceiver license: Apache 2.0 description: This receiver fetches metrics for an Apache Spark cluster through the Apache Spark REST API -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/apachesparkreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/apachesparkreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-aws-ecs-container-metrics.yml b/data/registry/collector-receiver-aws-ecs-container-metrics.yml index dd49ee1dfe47..0d9a2134f9bd 100644 --- a/data/registry/collector-receiver-aws-ecs-container-metrics.yml +++ b/data/registry/collector-receiver-aws-ecs-container-metrics.yml @@ -1,17 +1,23 @@ +# cSpell:ignore awsecscontainermetricsreceiver title: AWS ECS Container Metrics Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awsecscontainermetricsreceiver license: Apache 2.0 description: The AWS ECS Container Metrics Receiver for the OpenTelemetry Collector reads task metadata and docker stats from Amazon ECS Task Metadata Endpoint, and generates resource usage metrics (such as CPU, memory, network, and disk) from them. -authors: Amazon Web Services -otVersion: latest +authors: + - name: Amazon Web Services +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awsecscontainermetricsreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsecscontainermetricsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-aws-xray.yml b/data/registry/collector-receiver-aws-xray.yml index cec80cb7fe19..b75edee884f5 100644 --- a/data/registry/collector-receiver-aws-xray.yml +++ b/data/registry/collector-receiver-aws-xray.yml @@ -1,16 +1,22 @@ +# cSpell:ignore awsxrayreceiver title: AWS X-Ray Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awsxrayreceiver license: Apache 2.0 description: The AWS X-Ray Receiver for the OpenTelemetry Collector accepts segments (i.e. spans) in the X-Ray Segment format. This enables the collector to receive spans emitted by the existing X-Ray SDK. -authors: Amazon Web Services -otVersion: latest +authors: + - name: Amazon Web Services +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awsxrayreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsxrayreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-awscloudwatch.yml b/data/registry/collector-receiver-awscloudwatch.yml index 94dc55b60444..9cb066604157 100644 --- a/data/registry/collector-receiver-awscloudwatch.yml +++ b/data/registry/collector-receiver-awscloudwatch.yml @@ -1,15 +1,21 @@ +# cSpell:ignore awscloudwatchreceiver title: Cloudwatch Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awscloudwatchreceiver license: Apache 2.0 description: Receives Cloudwatch events from AWS CloudWatch via the AWS SDK for Cloudwatch Logs -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awscloudwatchreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscloudwatchreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-awscloudwatchmetrics.yml b/data/registry/collector-receiver-awscloudwatchmetrics.yml index 2e32e0cefca3..8d3334dd89b4 100644 --- a/data/registry/collector-receiver-awscloudwatchmetrics.yml +++ b/data/registry/collector-receiver-awscloudwatchmetrics.yml @@ -1,16 +1,23 @@ +# cSpell:ignore awscloudwatchmetricsreceiver title: CloudWatch Metrics Receiver registryType: receiver -isThirdParty: false language: collector tags: - awscloudwatchmetrics - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awscloudwatchmetricsreceiver license: Apache 2.0 description: Receives Cloudwatch metrics from AWS Cloudwatch via the AWS SDK for Cloudwatch Logs -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors # cSpell:ignore awscloudwatchmetrics + +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awscloudwatchmetricsreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscloudwatchmetricsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-awscontainerinsight.yml b/data/registry/collector-receiver-awscontainerinsight.yml index 4851adf2fc90..d3d2c293a396 100644 --- a/data/registry/collector-receiver-awscontainerinsight.yml +++ b/data/registry/collector-receiver-awscontainerinsight.yml @@ -1,15 +1,21 @@ +# cSpell:ignore awscontainerinsightreceiver title: AWS Container Insights Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awscontainerinsightreceiver license: Apache 2.0 description: AWS Container Insights Receiver is an AWS specific receiver that supports CloudWatch Container Insights. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awscontainerinsightreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscontainerinsightreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-awsfirehose.yml b/data/registry/collector-receiver-awsfirehose.yml index 70f396178cb0..fa4a93853369 100644 --- a/data/registry/collector-receiver-awsfirehose.yml +++ b/data/registry/collector-receiver-awsfirehose.yml @@ -1,15 +1,21 @@ +# cSpell:ignore awsfirehosereceiver title: AWS Kinesis Data Firehose Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awsfirehosereceiver license: Apache 2.0 description: Receiver for ingesting AWS Kinesis Data Firehose delivery stream messages and parsing the records received based on the configured record type. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/awsfirehosereceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsfirehosereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-azureblob.yml b/data/registry/collector-receiver-azureblob.yml index 44578edc88ba..4913f90c43b5 100644 --- a/data/registry/collector-receiver-azureblob.yml +++ b/data/registry/collector-receiver-azureblob.yml @@ -1,13 +1,19 @@ +# cSpell:ignore azureblobreceiver title: Azure Blob Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/azureblobreceiver license: Apache 2.0 description: This receiver reads logs and trace data from Azure Blob Storage -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/azureblobreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azureblobreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-azureeventhub.yml b/data/registry/collector-receiver-azureeventhub.yml index 690c81942925..4c8c55a32b4b 100644 --- a/data/registry/collector-receiver-azureeventhub.yml +++ b/data/registry/collector-receiver-azureeventhub.yml @@ -1,14 +1,20 @@ +# cSpell:ignore azureeventhubreceiver title: Azure Event Hub Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/azureeventhubreceiver license: Apache 2.0 description: The Azure Event Hub receiver listens to logs emitted by Azure Event hubs. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/azureeventhubreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azureeventhubreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-azuremonitor.yml b/data/registry/collector-receiver-azuremonitor.yml index 340d4b4b922d..9bb49c21f9f8 100644 --- a/data/registry/collector-receiver-azuremonitor.yml +++ b/data/registry/collector-receiver-azuremonitor.yml @@ -1,14 +1,20 @@ +# cSpell:ignore azuremonitorreceiver title: Azure Monitor Receiver registryType: receiver -isThirdParty: false language: collector tags: - azure - monitor - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/azuremonitorreceiver license: Apache 2.0 description: This receiver scrapes Azure Monitor API for resources metrics. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/azuremonitorreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azuremonitorreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-bigip.yml b/data/registry/collector-receiver-bigip.yml index 7cd66ae102d6..f6303974a3c8 100644 --- a/data/registry/collector-receiver-bigip.yml +++ b/data/registry/collector-receiver-bigip.yml @@ -1,14 +1,20 @@ +# cSpell:ignore bigipreceiver title: F5 Big-IP Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/bigipreceiver license: Apache 2.0 description: This receiver fetches stats from a F5 Big-IP node using F5's iControl REST API -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/bigipreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/bigipreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-carbon.yml b/data/registry/collector-receiver-carbon.yml index df47b75ab878..09097ef6ffb3 100644 --- a/data/registry/collector-receiver-carbon.yml +++ b/data/registry/collector-receiver-carbon.yml @@ -1,15 +1,21 @@ +# cSpell:ignore carbonreceiver title: Carbon Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/carbonreceiver license: Apache 2.0 description: The Carbon Receiver for the OpenTelemetry Collector supports Carbon's plaintext protocol. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/carbonreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/carbonreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-chrony.yml b/data/registry/collector-receiver-chrony.yml index a89274e44374..8fa616f95fea 100644 --- a/data/registry/collector-receiver-chrony.yml +++ b/data/registry/collector-receiver-chrony.yml @@ -1,16 +1,21 @@ -# cSpell:ignore chrony chronyc +# cSpell:ignore chrony chronyc chronyreceiver title: Chrony Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/chronyreceiver license: Apache 2.0 description: The chrony receiver is a pure go implementation of the command chronyc tracking -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/chronyreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/chronyreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-cloudflare.yml b/data/registry/collector-receiver-cloudflare.yml index 7aa80dc04cac..821f21d022d9 100644 --- a/data/registry/collector-receiver-cloudflare.yml +++ b/data/registry/collector-receiver-cloudflare.yml @@ -1,16 +1,21 @@ -# cSpell:ignore cloudflare +# cSpell:ignore cloudflare cloudflarereceiver title: Cloudflare Receiver registryType: receiver -isThirdParty: false language: collector tags: - cloudflare - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/cloudflarereceiver license: Apache 2.0 description: This Cloudflare receiver allows Cloudflare's LogPush Jobs to send logs from the Cloudflare logs aggregation system -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/cloudflarereceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/cloudflarereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-cloudfoundry.yml b/data/registry/collector-receiver-cloudfoundry.yml index 09c749ef9cbe..dafed1d52f83 100644 --- a/data/registry/collector-receiver-cloudfoundry.yml +++ b/data/registry/collector-receiver-cloudfoundry.yml @@ -1,15 +1,21 @@ +# cSpell:ignore cloudfoundryreceiver title: Cloud Foundry Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/cloudfoundryreceiver license: Apache 2.0 description: The Cloud Foundry receiver connects to the RLP (Reverse Log Proxy) Gateway of the Cloud Foundry installation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/cloudfoundryreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/cloudfoundryreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-collectd.yml b/data/registry/collector-receiver-collectd.yml index 5da3a591b8aa..c4b0acec3448 100644 --- a/data/registry/collector-receiver-collectd.yml +++ b/data/registry/collector-receiver-collectd.yml @@ -1,15 +1,21 @@ +# cSpell:ignore collectdreceiver title: CollectD Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/collectdreceiver license: Apache 2.0 description: The CollectD Receiver for the OpenTelemetry Collector can receive data exported by the CollectD's write_http plugin. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/collectdreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/collectdreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-couchdb.yml b/data/registry/collector-receiver-couchdb.yml index 3d62b45d584e..9b672d16a59c 100644 --- a/data/registry/collector-receiver-couchdb.yml +++ b/data/registry/collector-receiver-couchdb.yml @@ -1,15 +1,20 @@ -# cSpell:ignore couchdb +# cSpell:ignore couchdb couchdbreceiver title: CouchDB Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector - couchdb -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/couchdbreceiver license: Apache 2.0 description: This receiver fetches stats from a CouchDB server. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/couchdbreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/couchdbreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-database.yml b/data/registry/collector-receiver-database.yml index c0f0ceda42f9..aa8723450d99 100644 --- a/data/registry/collector-receiver-database.yml +++ b/data/registry/collector-receiver-database.yml @@ -1,15 +1,17 @@ # cSpell:ignore ODCD title: OTel based Data Collector for Databases (ODCD) registryType: utilities -isThirdParty: true language: java tags: - receiver - database - instana -repo: https://github.com/instana/otel-database-dc license: MIT description: A tool or template to generate OpenTelemetry metrics for various databases. -authors: 'Rui Liu (https://github.com/liurui-1)' -otVersion: latest +authors: + - name: Rui Liu + url: https://github.com/liurui-1 +urls: + repo: https://github.com/instana/otel-database-dc +createdAt: 2023-11-13 diff --git a/data/registry/collector-receiver-datadog.yml b/data/registry/collector-receiver-datadog.yml index 12175b1cdce8..8412a99b691c 100644 --- a/data/registry/collector-receiver-datadog.yml +++ b/data/registry/collector-receiver-datadog.yml @@ -1,13 +1,19 @@ +# cSpell:ignore datadogreceiver title: Datadog APM Receiver registryType: receiver -isThirdParty: false language: collector tags: - datadog - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/datadogreceiver license: Apache 2.0 description: The Datadog APM Receiver accepts traces in the Datadog APM format -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/datadogreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/datadogreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-docker-stats.yml b/data/registry/collector-receiver-docker-stats.yml index 2ee0cea9844b..21122c4faac5 100644 --- a/data/registry/collector-receiver-docker-stats.yml +++ b/data/registry/collector-receiver-docker-stats.yml @@ -1,15 +1,21 @@ +# cSpell:ignore dockerstatsreceiver title: Docker Stats Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/dockerstatsreceiver license: Apache 2.0 description: The Docker Stats Receiver queries the local Docker daemon's container stats API for all desired running containers on a configured interval. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/dockerstatsreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-elasticsearch.yml b/data/registry/collector-receiver-elasticsearch.yml index 5a77775dde56..d173326250be 100644 --- a/data/registry/collector-receiver-elasticsearch.yml +++ b/data/registry/collector-receiver-elasticsearch.yml @@ -1,16 +1,21 @@ -# cSpell:ignore statsendpoints +# cSpell:ignore statsendpoints elasticsearchreceiver title: Elasticsearch Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/elasticsearchreceiver license: Apache 2.0 description: This receiver queries the Elasticsearch node stats and index statsendpoints in order to scrape metrics from a running elasticsearch cluster. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/elasticsearchreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/elasticsearchreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-expvar.yml b/data/registry/collector-receiver-expvar.yml index ec7810e23fad..ef746e3cfe8b 100644 --- a/data/registry/collector-receiver-expvar.yml +++ b/data/registry/collector-receiver-expvar.yml @@ -1,14 +1,19 @@ -# cSpell:ignore expvar +# cSpell:ignore expvar expvarreceiver title: Expvar Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/expvarreceiver license: Apache 2.0 description: An Expvar Receiver scrapes metrics from expvar -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/expvarreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/expvarreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-file.yml b/data/registry/collector-receiver-file.yml index 7468188b6c77..9e8290d94ad5 100644 --- a/data/registry/collector-receiver-file.yml +++ b/data/registry/collector-receiver-file.yml @@ -1,15 +1,21 @@ +# cSpell:ignore filereceiver title: File Receiver registryType: receiver -isThirdParty: false language: collector tags: - file - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filereceiver license: Apache 2.0 description: The File Receiver reads the output of a File Exporter, converting that output to metrics, and sending the metrics down the pipeline. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filereceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-filelog.yml b/data/registry/collector-receiver-filelog.yml index 36df2ce1dbd2..85384ea79fa3 100644 --- a/data/registry/collector-receiver-filelog.yml +++ b/data/registry/collector-receiver-filelog.yml @@ -1,16 +1,21 @@ -# cSpell:ignore filelog +# cSpell:ignore filelog filelogreceiver title: Filelog Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filelogreceiver license: Apache 2.0 description: The Filelog Receiver tails and parses logs from files using the opentelemetry-log-collection library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filelogreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-filestats.yml b/data/registry/collector-receiver-filestats.yml index 42faa111419a..dff9eeeb9f0d 100644 --- a/data/registry/collector-receiver-filestats.yml +++ b/data/registry/collector-receiver-filestats.yml @@ -1,16 +1,21 @@ -# cSpell:ignore filestats +# cSpell:ignore filestats filestatsreceiver title: File Stats Receiver registryType: receiver -isThirdParty: false language: collector tags: - filestats - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filestatsreceiver license: Apache 2.0 description: The File Stats receiver collects metrics from files specified with a glob pattern. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filestatsreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filestatsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-flinkmetrics.yml b/data/registry/collector-receiver-flinkmetrics.yml index 6862169a66e7..1e6cebc69969 100644 --- a/data/registry/collector-receiver-flinkmetrics.yml +++ b/data/registry/collector-receiver-flinkmetrics.yml @@ -1,16 +1,21 @@ -# cSpell:ignore flink jobmanager taskmanager +# cSpell:ignore flink jobmanager taskmanager flinkmetricsreceiver title: FlinkMetrics Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/flinkmetricsreceiver license: Apache 2.0 description: This receiver uses Flink's REST API to collect Jobmanager, Taskmanager, Job, Task and Operator metrics. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/flinkmetricsreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/flinkmetricsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-fluent-forward.yml b/data/registry/collector-receiver-fluent-forward.yml index 72de53e634d4..7faa4c03709a 100644 --- a/data/registry/collector-receiver-fluent-forward.yml +++ b/data/registry/collector-receiver-fluent-forward.yml @@ -1,13 +1,19 @@ +# cSpell:ignore fluentforwardreceiver title: Fluent Forward Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/fluentforwardreceiver license: Apache 2.0 description: The Fluent Forward Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/fluentforwardreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/fluentforwardreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-git-trace2.yml b/data/registry/collector-receiver-git-trace2.yml index f7ffb94bc4b9..97f5ab31acd9 100644 --- a/data/registry/collector-receiver-git-trace2.yml +++ b/data/registry/collector-receiver-git-trace2.yml @@ -1,7 +1,6 @@ # cSpell:ignore Hostetler title: Trace2 Receiver registryType: receiver -isThirdParty: true language: collector tags: - go @@ -9,11 +8,13 @@ tags: - collector - trace2 - git -repo: https://github.com/git-ecosystem/trace2receiver license: MIT description: A receiver for git Trace2 telemetry from local git commands, translates it into an OpenTelemetry format, and forwards it to other OpenTelemetry components. -authors: Jeff Hostetler -otVersion: latest +authors: + - name: Jeff Hostetler +urls: + repo: https://github.com/git-ecosystem/trace2receiver +createdAt: 2023-10-17 diff --git a/data/registry/collector-receiver-gitprovider.yml b/data/registry/collector-receiver-gitprovider.yml index f27fe701d1c2..28e32431fbdd 100644 --- a/data/registry/collector-receiver-gitprovider.yml +++ b/data/registry/collector-receiver-gitprovider.yml @@ -1,13 +1,19 @@ +# cSpell:ignore gitproviderreceiver title: Git Provider Receiver registryType: receiver -isThirdParty: false language: collector tags: - git - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/gitproviderreceiver license: Apache 2.0 description: The Git Provider receiver scrapes data from Git vendors. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/gitproviderreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/gitproviderreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-googlecloudpubsub.yml b/data/registry/collector-receiver-googlecloudpubsub.yml index 70eee0aec7a7..a0e1f69adb25 100644 --- a/data/registry/collector-receiver-googlecloudpubsub.yml +++ b/data/registry/collector-receiver-googlecloudpubsub.yml @@ -1,14 +1,20 @@ +# cSpell:ignore googlecloudpubsubreceiver title: Google Pubsub Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/googlecloudpubsubreceiver license: Apache 2.0 description: This receiver gets OTLP messages from a Google Cloud Pubsub subscription. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/googlecloudpubsubreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/googlecloudpubsubreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-googlecloudspanner.yml b/data/registry/collector-receiver-googlecloudspanner.yml index e8c8a3688d35..d07952241289 100644 --- a/data/registry/collector-receiver-googlecloudspanner.yml +++ b/data/registry/collector-receiver-googlecloudspanner.yml @@ -1,14 +1,20 @@ +# cSpell:ignore googlecloudspannerreceiver title: Google Cloud Spanner Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/googlecloudspannerreceiver license: Apache 2.0 description: Google Cloud Spanner enable you to investigate issues with your database -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/googlecloudspannerreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/googlecloudspannerreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-haproxy.yml b/data/registry/collector-receiver-haproxy.yml index f7b83a992a84..c45f586696e6 100644 --- a/data/registry/collector-receiver-haproxy.yml +++ b/data/registry/collector-receiver-haproxy.yml @@ -1,15 +1,21 @@ +# cSpell:ignore haproxyreceiver title: HAProxy Receiver registryType: receiver -isThirdParty: false language: collector tags: - haproxy - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/haproxyreceiver license: Apache 2.0 description: The HAProxy receiver generates metrics by polling periodically the HAProxy process through a dedicated socket or HTTP URL. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/haproxyreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/haproxyreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-host-metrics.yml b/data/registry/collector-receiver-host-metrics.yml index 1b92e4bc3833..e6d30c309369 100644 --- a/data/registry/collector-receiver-host-metrics.yml +++ b/data/registry/collector-receiver-host-metrics.yml @@ -1,13 +1,19 @@ +# cSpell:ignore hostmetricsreceiver title: Host Metrics Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/hostmetricsreceiver license: Apache 2.0 description: The Host Metrics Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/hostmetricsreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/hostmetricsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-httpcheck.yml b/data/registry/collector-receiver-httpcheck.yml index 99a528e7e8cd..245f3b67107b 100644 --- a/data/registry/collector-receiver-httpcheck.yml +++ b/data/registry/collector-receiver-httpcheck.yml @@ -1,16 +1,22 @@ +# cSpell:ignore httpcheckreceiver title: HTTP Check Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/httpcheckreceiver license: Apache 2.0 description: The HTTP Check Receiver can be used for synthetic checks against HTTP endpoints. This receiver will make a request to the specified `endpoint` using the -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/httpcheckreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/httpcheckreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-iis.yml b/data/registry/collector-receiver-iis.yml index fe0b4a360692..5a4a4ab0787e 100644 --- a/data/registry/collector-receiver-iis.yml +++ b/data/registry/collector-receiver-iis.yml @@ -1,15 +1,21 @@ +# cSpell:ignore iisreceiver title: Microsoft IIS Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/iisreceiver license: Apache 2.0 description: The `iis` receiver grabs metrics about an IIS instance using the Windows Performance Counters. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/iisreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/iisreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-influxdb.yml b/data/registry/collector-receiver-influxdb.yml index e554e57b6199..4909cb850ea2 100644 --- a/data/registry/collector-receiver-influxdb.yml +++ b/data/registry/collector-receiver-influxdb.yml @@ -1,13 +1,19 @@ +# cSpell:ignore influxdbreceiver title: InfluxDB Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/influxdbreceiver license: Apache 2.0 description: This receiver accepts metrics data as InfluxDB Line Protocol. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/influxdbreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/influxdbreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-jaeger.yml b/data/registry/collector-receiver-jaeger.yml index 7ecc2017c3e5..877c27b14088 100644 --- a/data/registry/collector-receiver-jaeger.yml +++ b/data/registry/collector-receiver-jaeger.yml @@ -1,13 +1,19 @@ +# cSpell:ignore jaegerreceiver title: Jaeger Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/jaegerreceiver license: Apache 2.0 description: The Jaeger Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/jaegerreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-jmx.yml b/data/registry/collector-receiver-jmx.yml index 87c51a22c79f..9a2124e04d28 100644 --- a/data/registry/collector-receiver-jmx.yml +++ b/data/registry/collector-receiver-jmx.yml @@ -1,16 +1,22 @@ +# cSpell:ignore jmxreceiver title: JMX Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/jmxreceiver license: Apache 2.0 description: The JMX Receiver will work in conjunction with the OpenTelemetry JMX Metric Gatherer to report metrics from a target MBean server using a built-in or your custom OpenTelemetry helper-utilizing Groovy script. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/jmxreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jmxreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-journald.yml b/data/registry/collector-receiver-journald.yml index 4a87d573f79e..27c6ff433fb8 100644 --- a/data/registry/collector-receiver-journald.yml +++ b/data/registry/collector-receiver-journald.yml @@ -1,13 +1,19 @@ +# cSpell:ignore journaldreceiver title: Journald Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/journaldreceiver license: Apache 2.0 description: Parses Journald events from systemd journal. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/journaldreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/journaldreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-k8s-cluster.yml b/data/registry/collector-receiver-k8s-cluster.yml index afd8d517c339..731f59cfaeea 100644 --- a/data/registry/collector-receiver-k8s-cluster.yml +++ b/data/registry/collector-receiver-k8s-cluster.yml @@ -1,17 +1,23 @@ +# cSpell:ignore k8sclusterreceiver title: Kubernetes Cluster Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/k8sclusterreceiver license: Apache 2.0 description: The Kubernetes Cluster Receiver for the OpenTelemetry Collector collects cluster-level metrics from the Kubernetes API server. It uses the K8s API to listen for updates. A single instance of this receiver can be used to monitor a cluster. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/k8sclusterreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/k8sclusterreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-k8sevents.yml b/data/registry/collector-receiver-k8sevents.yml index 9851315dea71..c68b635a43c7 100644 --- a/data/registry/collector-receiver-k8sevents.yml +++ b/data/registry/collector-receiver-k8sevents.yml @@ -1,13 +1,19 @@ +# cSpell:ignore k8seventsreceiver title: Kubernetes Events Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/k8seventsreceiver license: Apache 2.0 description: The Kubernetes Events receiver collects events from the Kubernetes -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/k8seventsreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/k8seventsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-k8sobjects.yml b/data/registry/collector-receiver-k8sobjects.yml index 77a7c0f5d89d..ad4a5b316c34 100644 --- a/data/registry/collector-receiver-k8sobjects.yml +++ b/data/registry/collector-receiver-k8sobjects.yml @@ -1,16 +1,21 @@ -# cSpell:ignore k8sobjects +# cSpell:ignore k8sobjects k8sobjectsreceiver title: Kubernetes Objects Receiver registryType: receiver -isThirdParty: false language: collector tags: - k8sobjects - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/k8sobjectsreceiver license: Apache 2.0 description: The Kubernetes Objects receiver collects(pull/watch) objects from the Kubernetes API server. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/k8sobjectsreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/k8sobjectsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-kafka.yml b/data/registry/collector-receiver-kafka.yml index 10325d508494..7b8044a19a43 100644 --- a/data/registry/collector-receiver-kafka.yml +++ b/data/registry/collector-receiver-kafka.yml @@ -1,13 +1,19 @@ +# cSpell:ignore kafkareceiver title: Kafka Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/kafkareceiver license: Apache 2.0 description: The Kafka Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/kafkareceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-kafkametrics.yml b/data/registry/collector-receiver-kafkametrics.yml index ea6560c89514..90afaa151564 100644 --- a/data/registry/collector-receiver-kafkametrics.yml +++ b/data/registry/collector-receiver-kafkametrics.yml @@ -1,15 +1,21 @@ +# cSpell:ignore kafkametricsreceiver title: Kafka Metrics Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/kafkametricsreceiver license: Apache 2.0 description: Kafka metrics receiver collects Kafka metrics (brokers, topics, partitions, consumer groups) from Kafka server, -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/kafkametricsreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkametricsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-kubelet-stats.yml b/data/registry/collector-receiver-kubelet-stats.yml index 4b4be4406dd2..11a3a9fc0e3f 100644 --- a/data/registry/collector-receiver-kubelet-stats.yml +++ b/data/registry/collector-receiver-kubelet-stats.yml @@ -1,17 +1,22 @@ -# cSpell:ignore kubelet +# cSpell:ignore kubelet kubeletstatsreceiver title: Kubelet Stats Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/kubeletstatsreceiver license: Apache 2.0 description: The Kubelet Stats Receiver for the OpenTelemetry Collector pulls pod metrics from the API server on a kubelet and sends it down the metric pipeline for further processing. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/kubeletstatsreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kubeletstatsreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-loki.yml b/data/registry/collector-receiver-loki.yml index 0593614a0445..ccd310054a90 100644 --- a/data/registry/collector-receiver-loki.yml +++ b/data/registry/collector-receiver-loki.yml @@ -1,14 +1,19 @@ -# cSpell:ignore loki +# cSpell:ignore loki lokireceiver title: Loki Receiver registryType: receiver -isThirdParty: false language: collector tags: - loki - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/lokireceiver license: Apache 2.0 description: The Loki receiver implements the Loki Push API -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/lokireceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/lokireceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-memcached.yml b/data/registry/collector-receiver-memcached.yml index 115ddeddb66f..1a6d1b623211 100644 --- a/data/registry/collector-receiver-memcached.yml +++ b/data/registry/collector-receiver-memcached.yml @@ -1,15 +1,21 @@ +# cSpell:ignore memcachedreceiver title: Memcached Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/memcachedreceiver license: Apache 2.0 description: The Memcached Receiver for the OpenTelemetry Collector can fetch stats from a Memcached instance using the stats command. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/memcachedreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/memcachedreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-mongodb.yml b/data/registry/collector-receiver-mongodb.yml index 543543ec3027..069447e3d3df 100644 --- a/data/registry/collector-receiver-mongodb.yml +++ b/data/registry/collector-receiver-mongodb.yml @@ -1,14 +1,20 @@ +# cSpell:ignore mongodbreceiver title: MongoDB Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/mongodbreceiver license: Apache 2.0 description: This receiver fetches stats from a MongoDB instance using the [golang -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/mongodbreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-mongodbatlas.yml b/data/registry/collector-receiver-mongodbatlas.yml index 5e8f7989e52c..91e399834d0a 100644 --- a/data/registry/collector-receiver-mongodbatlas.yml +++ b/data/registry/collector-receiver-mongodbatlas.yml @@ -1,13 +1,19 @@ +# cSpell:ignore mongodbatlasreceiver title: MongoDB Atlas Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/mongodbatlasreceiver license: Apache 2.0 description: Receives metrics from MongoDB Atlas -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/mongodbatlasreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-mysql.yml b/data/registry/collector-receiver-mysql.yml index 9aa07cfde977..2686a8b1bf9b 100644 --- a/data/registry/collector-receiver-mysql.yml +++ b/data/registry/collector-receiver-mysql.yml @@ -1,14 +1,19 @@ -# cSpell:ignore inno +# cSpell:ignore inno mysqlreceiver title: MySQL Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/mysqlreceiver license: Apache 2.0 description: This receiver queries MySQL's global status and InnoDB tables. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/mysqlreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mysqlreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-nginx.yml b/data/registry/collector-receiver-nginx.yml index a8971742d069..174f58ddba13 100644 --- a/data/registry/collector-receiver-nginx.yml +++ b/data/registry/collector-receiver-nginx.yml @@ -1,15 +1,21 @@ +# cSpell:ignore nginxreceiver title: NGINX Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/nginxreceiver license: Apache 2.0 description: The NGINX Receiver for the OpenTelemetry Collector can fetch stats from a NGINX instance using a mod_status endpoint. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/nginxreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/nginxreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-nsxt.yml b/data/registry/collector-receiver-nsxt.yml index 813dc0c5f4cd..b993054e55c9 100644 --- a/data/registry/collector-receiver-nsxt.yml +++ b/data/registry/collector-receiver-nsxt.yml @@ -1,15 +1,21 @@ +# cSpell:ignore nsxtreceiver title: NSX-T Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/nsxtreceiver license: Apache 2.0 description: This receiver fetches metrics important to run virtual networking using NSX-T. The receiver ingests metrics via the NSX Rest API -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/nsxtreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/nsxtreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-opencensus.yml b/data/registry/collector-receiver-opencensus.yml index 1fd9dcd6bb33..024ecaa7a52c 100644 --- a/data/registry/collector-receiver-opencensus.yml +++ b/data/registry/collector-receiver-opencensus.yml @@ -1,13 +1,19 @@ +# cSpell:ignore opencensusreceiver title: OpenCensus Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/opencensusreceiver license: Apache 2.0 description: The OpenCensus Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/opencensusreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-oracledb.yml b/data/registry/collector-receiver-oracledb.yml index 4878b53eca65..aebdeb6d95bc 100644 --- a/data/registry/collector-receiver-oracledb.yml +++ b/data/registry/collector-receiver-oracledb.yml @@ -1,13 +1,19 @@ +# cSpell:ignore oracledbreceiver title: Oracle DB receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/oracledbreceiver license: Apache 2.0 description: This receiver collects metrics from an Oracle Database. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/oracledbreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/oracledbreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-otlp.yml b/data/registry/collector-receiver-otlp.yml index 737997a9d3f4..bbe8e3f03cdc 100644 --- a/data/registry/collector-receiver-otlp.yml +++ b/data/registry/collector-receiver-otlp.yml @@ -1,13 +1,15 @@ +# cSpell:ignore otlpreceiver title: OTLP Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/receiver/otlpreceiver license: Apache 2.0 description: The OTLP Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector/tree/main/receiver/otlpreceiver +createdAt: 2020-11-05 diff --git a/data/registry/collector-receiver-otlpjsonfile.yml b/data/registry/collector-receiver-otlpjsonfile.yml index f6ee4ff44663..27340bf09671 100644 --- a/data/registry/collector-receiver-otlpjsonfile.yml +++ b/data/registry/collector-receiver-otlpjsonfile.yml @@ -1,14 +1,20 @@ +# cSpell:ignore otlpjsonfilereceiver title: OTLP JSON File Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/otlpjsonfilereceiver license: Apache 2.0 description: This receiver will read pipeline data from JSON files. The data is written in -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/otlpjsonfilereceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otlpjsonfilereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-podman.yml b/data/registry/collector-receiver-podman.yml index ca2ba980b65c..27a3373c3659 100644 --- a/data/registry/collector-receiver-podman.yml +++ b/data/registry/collector-receiver-podman.yml @@ -1,15 +1,21 @@ +# cSpell:ignore podmanreceiver title: Podman Stats Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/podmanreceiver license: Apache 2.0 description: The Podman Stats receiver queries the Podman service API to fetch stats for all running containers -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/podmanreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/podmanreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-postgresql.yml b/data/registry/collector-receiver-postgresql.yml index 0f8a83a2c645..9b29ce8fec04 100644 --- a/data/registry/collector-receiver-postgresql.yml +++ b/data/registry/collector-receiver-postgresql.yml @@ -1,13 +1,19 @@ +# cSpell:ignore postgresqlreceiver title: PostgreSQL Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/postgresqlreceiver license: Apache 2.0 description: This receiver queries the PostgreSQL statistics collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/postgresqlreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/postgresqlreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-prometheus.yml b/data/registry/collector-receiver-prometheus.yml index 1b2ca244ff2a..1e1928e7a044 100644 --- a/data/registry/collector-receiver-prometheus.yml +++ b/data/registry/collector-receiver-prometheus.yml @@ -1,13 +1,19 @@ +# cSpell:ignore prometheusreceiver title: Prometheus Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/prometheusreceiver license: Apache 2.0 description: The Prometheus Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/prometheusreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-pulsar.yml b/data/registry/collector-receiver-pulsar.yml index a1e9e7a8dca4..bea795382cee 100644 --- a/data/registry/collector-receiver-pulsar.yml +++ b/data/registry/collector-receiver-pulsar.yml @@ -1,13 +1,19 @@ +# cSpell:ignore pulsarreceiver title: Pulsar Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/pulsarreceiver license: Apache 2.0 description: Pulsar receiver receives logs, metrics, and traces from Pulsar. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/pulsarreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/pulsarreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-purefa.yml b/data/registry/collector-receiver-purefa.yml index a15815824bcc..7bc4385898f0 100644 --- a/data/registry/collector-receiver-purefa.yml +++ b/data/registry/collector-receiver-purefa.yml @@ -1,16 +1,21 @@ -# cSpell:ignore purefa +# cSpell:ignore purefa purefareceiver title: Pure Storage FlashArray Receiver registryType: receiver -isThirdParty: false language: collector tags: - purefa - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/purefareceiver license: Apache 2.0 description: The Pure Storage FlashArray receiver, receives metrics from Pure Storage internal services hosts. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/purefareceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/purefareceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-purefb.yml b/data/registry/collector-receiver-purefb.yml index 6632fbfe14b1..c39826cb3d75 100644 --- a/data/registry/collector-receiver-purefb.yml +++ b/data/registry/collector-receiver-purefb.yml @@ -1,17 +1,22 @@ -# cSpell:ignore purefb +# cSpell:ignore purefb purefbreceiver title: Pure Storage FlashBlade Receiver registryType: receiver -isThirdParty: false language: collector tags: - purefb - storage - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/purefbreceiver license: Apache 2.0 description: The Pure Storage FlashBlade receiver, receives metrics from Pure Storage FlashBlade via the Pure Storage FlashBlade OpenMetrics Exporter. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/purefbreceiver +createdAt: 2023-02-01 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/purefbreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-rabbitmq.yml b/data/registry/collector-receiver-rabbitmq.yml index 9f201a2eda44..2b8659897d77 100644 --- a/data/registry/collector-receiver-rabbitmq.yml +++ b/data/registry/collector-receiver-rabbitmq.yml @@ -1,15 +1,21 @@ +# cSpell:ignore rabbitmqreceiver title: RabbitMQ Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/rabbitmqreceiver license: Apache 2.0 description: This receiver fetches stats from a RabbitMQ node using the RabbitMQ Management Plugin. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/rabbitmqreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/rabbitmqreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-receiver-creator.yml b/data/registry/collector-receiver-receiver-creator.yml index a93298156cfa..1a9ac8f7a844 100644 --- a/data/registry/collector-receiver-receiver-creator.yml +++ b/data/registry/collector-receiver-receiver-creator.yml @@ -1,16 +1,22 @@ +# cSpell:ignore receivercreator title: Receiver Creator Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/receivercreator license: Apache 2.0 description: The Receiver Creator Receiver for the OpenTelemetry Collector can instantiate other receivers at runtime based on whether observed endpoints match a configured rule. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/receivercreator +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/receivercreator + version: v0.92.0 diff --git a/data/registry/collector-receiver-redis.yml b/data/registry/collector-receiver-redis.yml index ac569056cc8b..828537782a30 100644 --- a/data/registry/collector-receiver-redis.yml +++ b/data/registry/collector-receiver-redis.yml @@ -1,16 +1,22 @@ +# cSpell:ignore redisreceiver title: Redis Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/redisreceiver license: Apache 2.0 description: The Redis Receiver for the OpenTelemetry Collector is designed to retrieve Redis INFO data from a single Redis instance, build metrics from that data, and send them to the next consumer at a configurable interval. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/redisreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/redisreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-riak.yml b/data/registry/collector-receiver-riak.yml index 1cb953161a11..da54985a39c7 100644 --- a/data/registry/collector-receiver-riak.yml +++ b/data/registry/collector-receiver-riak.yml @@ -1,14 +1,19 @@ -# cSpell:ignore riak +# cSpell:ignore riak riakreceiver title: Riak Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/riakreceiver license: Apache 2.0 description: Riak metrics will be collected from the /stats endpoint. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/riakreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/riakreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-saphana.yml b/data/registry/collector-receiver-saphana.yml index 0fc1256bfac9..7b6543e1a384 100644 --- a/data/registry/collector-receiver-saphana.yml +++ b/data/registry/collector-receiver-saphana.yml @@ -1,17 +1,22 @@ -# cSpell:ignore hana +# cSpell:ignore hana saphanareceiver title: SAP HANA Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/saphanareceiver license: Apache 2.0 description: This receiver can fetch stats from a SAP HANA instance. It leverages the driver written by SAP for connecting to SAP HANA with the golang SQL module to execute several monitoring queries. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/saphanareceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/saphanareceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-sapm.yml b/data/registry/collector-receiver-sapm.yml index 3c05fe8aeb00..113e82e0e02e 100644 --- a/data/registry/collector-receiver-sapm.yml +++ b/data/registry/collector-receiver-sapm.yml @@ -1,16 +1,21 @@ -# cSpell:ignore sapm +# cSpell:ignore sapm sapmreceiver title: SAPM Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sapmreceiver license: Apache 2.0 description: The SAPM Receiver for the OpenTelemetry Collector receive traces from other collectors or the SignalFx Smart Agent. -authors: Splunk -otVersion: latest +authors: + - name: Splunk +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sapmreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sapmreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-signalfx.yml b/data/registry/collector-receiver-signalfx.yml index 8e21c1bc1966..5908c53d9b68 100644 --- a/data/registry/collector-receiver-signalfx.yml +++ b/data/registry/collector-receiver-signalfx.yml @@ -1,15 +1,21 @@ +# cSpell:ignore signalfxreceiver title: SignalFx Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/signalfxreceiver license: Apache 2.0 description: The SignalFx Receiver for the OpenTelemetry Collector accepts metrics in the SignalFx proto format and events (Logs) in the SignalFx proto format. -authors: Splunk -otVersion: latest +authors: + - name: Splunk +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/signalfxreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-simple-prometheus.yml b/data/registry/collector-receiver-simple-prometheus.yml index bb3dbd4e9e38..2439cb7500f3 100644 --- a/data/registry/collector-receiver-simple-prometheus.yml +++ b/data/registry/collector-receiver-simple-prometheus.yml @@ -1,16 +1,22 @@ +# cSpell:ignore simpleprometheusreceiver title: Simple Prometheus Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/simpleprometheusreceiver license: Apache 2.0 description: The Simple Prometheus Receiver for the OpenTelemetry Collector provides a simple configuration interface to configure the prometheus receiver to scrape metrics from a single target. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/simpleprometheusreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/simpleprometheusreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-skywalking.yml b/data/registry/collector-receiver-skywalking.yml index 329df0b64fce..ebca7bdc6093 100644 --- a/data/registry/collector-receiver-skywalking.yml +++ b/data/registry/collector-receiver-skywalking.yml @@ -1,14 +1,19 @@ -# cSpell:ignore skywalking +# cSpell:ignore skywalking skywalkingreceiver title: Skywalking Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/skywalkingreceiver license: Apache 2.0 description: Receives trace data in Skywalking format. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/skywalkingreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/skywalkingreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-snmp.yml b/data/registry/collector-receiver-snmp.yml index f5c30c2ea8c6..819567ee200c 100644 --- a/data/registry/collector-receiver-snmp.yml +++ b/data/registry/collector-receiver-snmp.yml @@ -1,16 +1,22 @@ +# cSpell:ignore snmpreceiver title: SNMP Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/snmpreceiver license: Apache 2.0 description: This receiver fetches stats from an SNMP-enabled host using the [Go SNMP client](https://github.com/gosnmp/gosnmp). Metrics are collected based on configuration settings. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/snmpreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/snmpreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-snowflake.yml b/data/registry/collector-receiver-snowflake.yml index f86a7c0e02c6..262ce90e099f 100644 --- a/data/registry/collector-receiver-snowflake.yml +++ b/data/registry/collector-receiver-snowflake.yml @@ -1,15 +1,21 @@ +# cSpell:ignore snowflakereceiver title: Snowflake Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/snowflakereceiver license: Apache 2.0 description: This receiver collects metrics from a Snowflake account by connecting to an account and running queries at set intervals. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/snowflakereceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/snowflakereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-solace.yml b/data/registry/collector-receiver-solace.yml index 516fadb2ae2f..ed2a93e95521 100644 --- a/data/registry/collector-receiver-solace.yml +++ b/data/registry/collector-receiver-solace.yml @@ -1,14 +1,20 @@ +# cSpell:ignore solacereceiver title: Solace Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/solacereceiver license: Apache 2.0 description: The Solace receiver receives trace data from a Solace PubSub+ Event Broker -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/solacereceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/solacereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-splunk-hec.yml b/data/registry/collector-receiver-splunk-hec.yml index 93f4d21072a3..62cbf5cc4dff 100644 --- a/data/registry/collector-receiver-splunk-hec.yml +++ b/data/registry/collector-receiver-splunk-hec.yml @@ -1,15 +1,21 @@ +# cSpell:ignore splunkhecreceiver title: Splunk HEC Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/splunkhecreceiver license: Apache 2.0 description: The Splunk HEC Receiver for the OpenTelemetry Collector accepts metrics, traces, and logs in the Splunk HEC format. -authors: Splunk -otVersion: latest +authors: + - name: Splunk +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/splunkhecreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-splunkenterprise.yml b/data/registry/collector-receiver-splunkenterprise.yml index 85e1350d7fb4..612f6b9d4247 100644 --- a/data/registry/collector-receiver-splunkenterprise.yml +++ b/data/registry/collector-receiver-splunkenterprise.yml @@ -1,14 +1,19 @@ -# cSpell:ignore splunkenterprise +# cSpell:ignore splunkenterprise splunkenterprisereceiver title: splunkenterprise registryType: receiver -isThirdParty: false language: collector tags: - splunkenterprise - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/splunkenterprisereceiver license: Apache 2.0 description: -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/splunkenterprisereceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkenterprisereceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-sqlquery.yml b/data/registry/collector-receiver-sqlquery.yml index f0f482ce1f63..0b7a1a8ff8a5 100644 --- a/data/registry/collector-receiver-sqlquery.yml +++ b/data/registry/collector-receiver-sqlquery.yml @@ -1,15 +1,21 @@ +# cSpell:ignore sqlqueryreceiver title: SQL Query Receiver (Alpha) registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sqlqueryreceiver license: Apache 2.0 description: The SQL Query Receiver uses custom SQL queries to generate metrics from a database connection. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sqlqueryreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlqueryreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-sqlserver.yml b/data/registry/collector-receiver-sqlserver.yml index 3b54614b54ee..120a219df3da 100644 --- a/data/registry/collector-receiver-sqlserver.yml +++ b/data/registry/collector-receiver-sqlserver.yml @@ -1,16 +1,21 @@ -# cSpell:ignore sqlserver +# cSpell:ignore sqlserver sqlserverreceiver title: Microsoft SQL Server Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sqlserverreceiver license: Apache 2.0 description: The sqlserver receiver grabs metrics about a Microsoft SQL Server instance using the Windows Performance Counters. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sqlserverreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlserverreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-sshcheck.yml b/data/registry/collector-receiver-sshcheck.yml index 0b48c8ee3eba..0cb3fd5ee6b1 100644 --- a/data/registry/collector-receiver-sshcheck.yml +++ b/data/registry/collector-receiver-sshcheck.yml @@ -1,16 +1,22 @@ +# cSpell:ignore sshcheckreceiver title: SSH Check Receiver registryType: receiver -isThirdParty: false language: collector tags: - ssh - sftp - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sshcheckreceiver license: Apache 2.0 description: This receiver creates stats by connecting to an SSH server which may be an SFTP server. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/sshcheckreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sshcheckreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-statsd.yml b/data/registry/collector-receiver-statsd.yml index 25c4b47bad43..fd95a1b6f38a 100644 --- a/data/registry/collector-receiver-statsd.yml +++ b/data/registry/collector-receiver-statsd.yml @@ -1,14 +1,20 @@ +# cSpell:ignore statsdreceiver title: StatsD Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/statsdreceiver license: Apache 2.0 description: The StatsD Receiver for the OpenTelemetry Collector ingests StatsD messages. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/statsdreceiver +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-syslog.yml b/data/registry/collector-receiver-syslog.yml index 40ea7e109e3c..1841603a2d0e 100644 --- a/data/registry/collector-receiver-syslog.yml +++ b/data/registry/collector-receiver-syslog.yml @@ -1,14 +1,19 @@ -# cSpell:ignore Syslogs +# cSpell:ignore Syslogs syslogreceiver title: Syslog Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/syslogreceiver license: Apache 2.0 description: Parses Syslogs received over TCP or UDP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/syslogreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/syslogreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-tcplog.yml b/data/registry/collector-receiver-tcplog.yml index ee7ff1dab1d4..b165f32749e8 100644 --- a/data/registry/collector-receiver-tcplog.yml +++ b/data/registry/collector-receiver-tcplog.yml @@ -1,13 +1,19 @@ +# cSpell:ignore tcplogreceiver title: TCP Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/tcplogreceiver license: Apache 2.0 description: Receives logs over TCP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/tcplogreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-udplog.yml b/data/registry/collector-receiver-udplog.yml index 809809c4ad59..73c5c385f9e7 100644 --- a/data/registry/collector-receiver-udplog.yml +++ b/data/registry/collector-receiver-udplog.yml @@ -1,13 +1,19 @@ +# cSpell:ignore udplogreceiver title: UDP Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/udplogreceiver license: Apache 2.0 description: Receives logs over UDP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/udplogreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/udplogreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-vcenter.yml b/data/registry/collector-receiver-vcenter.yml index e8575c7dfb7a..a085d5ae99e3 100644 --- a/data/registry/collector-receiver-vcenter.yml +++ b/data/registry/collector-receiver-vcenter.yml @@ -1,15 +1,21 @@ +# cSpell:ignore vcenterreceiver title: vCenter Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/vcenterreceiver license: Apache 2.0 description: This receiver fetches metrics from a vCenter or ESXi host running VMware vSphere APIs. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/vcenterreceiver +createdAt: 2020-11-05 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/vcenterreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-wavefront.yml b/data/registry/collector-receiver-wavefront.yml index f1be53cda96a..bd4a2280c6e3 100644 --- a/data/registry/collector-receiver-wavefront.yml +++ b/data/registry/collector-receiver-wavefront.yml @@ -1,13 +1,19 @@ +# cSpell:ignore wavefrontreceiver title: Wavefront Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/wavefrontreceiver license: Apache 2.0 description: The Wavefront Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/wavefrontreceiver +createdAt: 2020-06-06 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/wavefrontreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-webhookevent.yml b/data/registry/collector-receiver-webhookevent.yml index 856ef190fff9..a45c75b9c015 100644 --- a/data/registry/collector-receiver-webhookevent.yml +++ b/data/registry/collector-receiver-webhookevent.yml @@ -1,16 +1,21 @@ -# cSpell:ignore webhookevent +# cSpell:ignore webhookevent webhookeventreceiver title: Webhook Event Receiver registryType: receiver -isThirdParty: false language: collector tags: - webhookevent - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/webhookeventreceiver license: Apache 2.0 description: The Webhook Event receiver is meant to act as a generally available push based receiver for any webhook style data source. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/webhookeventreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/webhookeventreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-windows-perf-counters.yml b/data/registry/collector-receiver-windows-perf-counters.yml index ce8c18e44c24..9d6f9f91bc61 100644 --- a/data/registry/collector-receiver-windows-perf-counters.yml +++ b/data/registry/collector-receiver-windows-perf-counters.yml @@ -1,16 +1,22 @@ +# cSpell:ignore windowsperfcountersreceiver title: Windows Performance Counters Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/windowsperfcountersreceiver license: Apache 2.0 description: The Windows Performance Counters Receiver for the OpenTelemetry Collector captures the configured system, application, or custom performance counter data from the Windows registry using the PDH interface. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/windowsperfcountersreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowsperfcountersreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-windowseventlog.yml b/data/registry/collector-receiver-windowseventlog.yml index e7335253f4db..6c02968b021c 100644 --- a/data/registry/collector-receiver-windowseventlog.yml +++ b/data/registry/collector-receiver-windowseventlog.yml @@ -1,15 +1,21 @@ +# cSpell:ignore windowseventlogreceiver title: Windows Log Event Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/windowseventlogreceiver license: Apache 2.0 description: Tails and parses logs from windows event log API using the opentelemetry-log-collection library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/windowseventlogreceiver +createdAt: 2022-10-25 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowseventlogreceiver + version: v0.92.0 diff --git a/data/registry/collector-receiver-zipkin.yml b/data/registry/collector-receiver-zipkin.yml index 18716276ef6c..f6b7b37f2c3d 100644 --- a/data/registry/collector-receiver-zipkin.yml +++ b/data/registry/collector-receiver-zipkin.yml @@ -1,13 +1,19 @@ +# cSpell:ignore zipkinreceiver title: Zipkin Collector Receiver registryType: receiver -isThirdParty: false language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/zipkinreceiver license: Apache 2.0 description: The Zipkin Receiver for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver + version: v0.92.0 +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/zipkinreceiver +createdAt: 2020-11-05 diff --git a/data/registry/collector-receiver-zookeeper.yml b/data/registry/collector-receiver-zookeeper.yml index 888de927d4e9..dd94cf89bc48 100644 --- a/data/registry/collector-receiver-zookeeper.yml +++ b/data/registry/collector-receiver-zookeeper.yml @@ -1,16 +1,21 @@ -# cSpell:ignore mntr +# cSpell:ignore mntr zookeeperreceiver title: Zookeeper Collector Receiver registryType: receiver -isThirdParty: true language: collector tags: - go - receiver - collector -repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/zookeeperreceiver license: Apache 2.0 description: The Zookeeper Receiver for the OpenTelemetry Collector collects metrics from a Zookeeper instance, using the 'mntr' command. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/zookeeperreceiver +createdAt: 2021-02-26 +package: + registry: go-collector + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zookeeperreceiver + version: v0.92.0 diff --git a/data/registry/exporter-cpp-etw.yml b/data/registry/exporter-cpp-etw.yml index 923539c1d604..802d31df4bfc 100644 --- a/data/registry/exporter-cpp-etw.yml +++ b/data/registry/exporter-cpp-etw.yml @@ -1,12 +1,13 @@ title: ETW Exporter registryType: exporter -isThirdParty: true language: cpp tags: - c++ - exporter -repo: https://github.com/open-telemetry/opentelemetry-cpp/tree/main/exporters/etw license: Apache 2.0 description: The OpenTelemetry ETW Exporter for C++. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp/tree/main/exporters/etw +createdAt: 2021-11-11 diff --git a/data/registry/exporter-cpp-fluentd.yml b/data/registry/exporter-cpp-fluentd.yml index f9c9fa25c050..979b40ccf256 100644 --- a/data/registry/exporter-cpp-fluentd.yml +++ b/data/registry/exporter-cpp-fluentd.yml @@ -1,13 +1,14 @@ # cSpell:ignore fluentd title: Fluentd Exporter registryType: exporter -isThirdParty: true language: cpp tags: - c++ - exporter -repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/exporters/fluentd license: Apache 2.0 description: The OpenTelemetry Fluentd Exporter for C++. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/exporters/fluentd +createdAt: 2021-11-11 diff --git a/data/registry/exporter-cpp-otlp.yml b/data/registry/exporter-cpp-otlp.yml index fa80a3869083..21086c59b5e8 100644 --- a/data/registry/exporter-cpp-otlp.yml +++ b/data/registry/exporter-cpp-otlp.yml @@ -1,14 +1,15 @@ title: OTLP Exporter registryType: exporter -isThirdParty: false language: cpp tags: - c++ - exporter -repo: https://github.com/open-telemetry/opentelemetry-cpp/tree/main/exporters/otlp license: Apache 2.0 description: This library allows to export data to the OpenTelemetry Collector using the OpenTelemetry Protocol. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp/tree/main/exporters/otlp +createdAt: 2020-02-05 diff --git a/data/registry/exporter-cpp-zipkin.yml b/data/registry/exporter-cpp-zipkin.yml index 42bb37b7d7dd..171c75995be2 100644 --- a/data/registry/exporter-cpp-zipkin.yml +++ b/data/registry/exporter-cpp-zipkin.yml @@ -1,12 +1,13 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: false language: cpp tags: - c++ - exporter -repo: https://github.com/open-telemetry/opentelemetry-cpp/tree/main/exporters/zipkin license: Apache 2.0 description: The OpenTelemetry Zipkin Exporter for C++. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp/tree/main/exporters/zipkin +createdAt: 2021-11-11 diff --git a/data/registry/exporter-dotnet-azure.yml b/data/registry/exporter-dotnet-azure.yml index 34bcd52b57f6..556c9237e8dd 100644 --- a/data/registry/exporter-dotnet-azure.yml +++ b/data/registry/exporter-dotnet-azure.yml @@ -1,14 +1,19 @@ title: Azure Monitor Exporter registryType: exporter -isThirdParty: true language: dotnet tags: - .net - exporter - Azure Monitor - Application Insights -repo: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter -license: MIT License +license: MIT description: The OpenTelemetry Azure Monitor Exporter for .NET -authors: Microsoft Authors -otVersion: latest +authors: + - name: Microsoft Authors +package: + name: Azure.Monitor.OpenTelemetry.Exporter + registry: nuget + version: 1.1.0 +urls: + repo: https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter +createdAt: 2021-11-01 diff --git a/data/registry/exporter-dotnet-console.yml b/data/registry/exporter-dotnet-console.yml index 6ba702b52e68..23e035433306 100644 --- a/data/registry/exporter-dotnet-console.yml +++ b/data/registry/exporter-dotnet-console.yml @@ -1,13 +1,18 @@ title: Console Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - console - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Console license: Apache 2.0 description: The console exporter prints data to the Console window. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Console +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.Console + version: 1.7.0 diff --git a/data/registry/exporter-dotnet-geneva.yml b/data/registry/exporter-dotnet-geneva.yml index 7f66817ea1e0..589284392128 100644 --- a/data/registry/exporter-dotnet-geneva.yml +++ b/data/registry/exporter-dotnet-geneva.yml @@ -1,15 +1,20 @@ title: Geneva Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - geneva - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.Geneva license: Apache 2.0 description: The Geneva Exporter exports telemetry to Event Tracing for Windows (ETW) or to a Unix Domain Socket (UDS) on the local machine. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.Geneva +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.Geneva + version: 1.7.0 diff --git a/data/registry/exporter-dotnet-influxdb.yml b/data/registry/exporter-dotnet-influxdb.yml index 38aaf74de2e4..1fd855fb491a 100644 --- a/data/registry/exporter-dotnet-influxdb.yml +++ b/data/registry/exporter-dotnet-influxdb.yml @@ -1,14 +1,19 @@ title: InfluxDB Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - influxdb - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.InfluxDB license: Apache 2.0 description: The InfluxDB exporter converts OpenTelemetry metrics into the InfluxDB model -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.InfluxDB +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.InfluxDB + version: 1.0.0-alpha.3 diff --git a/data/registry/exporter-dotnet-inmemory.yml b/data/registry/exporter-dotnet-inmemory.yml index 7dec60e3b6b9..7681cb8c3c45 100644 --- a/data/registry/exporter-dotnet-inmemory.yml +++ b/data/registry/exporter-dotnet-inmemory.yml @@ -1,15 +1,20 @@ # cSpell:ignore inmemory title: In-memory Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - inmemory - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.InMemory license: Apache 2.0 description: The in-memory exporter stores data in a user provided memory buffer. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.InMemory +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.InMemory + version: 1.7.0 diff --git a/data/registry/exporter-dotnet-instana.yml b/data/registry/exporter-dotnet-instana.yml index 4e91a6a97dda..764046a726b5 100644 --- a/data/registry/exporter-dotnet-instana.yml +++ b/data/registry/exporter-dotnet-instana.yml @@ -1,13 +1,18 @@ title: Instana Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - instana - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.Instana license: Apache 2.0 description: The Instana Exporter exports telemetry to Instana backend. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.Instana +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.Instana + version: 1.0.3 diff --git a/data/registry/exporter-dotnet-onecollector.yml b/data/registry/exporter-dotnet-onecollector.yml index 7002286e55d6..1814270ac40e 100644 --- a/data/registry/exporter-dotnet-onecollector.yml +++ b/data/registry/exporter-dotnet-onecollector.yml @@ -1,16 +1,21 @@ # cSpell:ignore onecollector title: OneCollector Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - onecollector - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.OneCollector license: Apache 2.0 description: The OneCollectorExporter is designed for Microsoft products to send data to public-facing end-points which route to Microsoft's internal data pipeline. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.OneCollector +createdAt: 2023-03-03 +package: + registry: nuget + name: OpenTelemetry.Exporter.OneCollector + version: 1.6.0 diff --git a/data/registry/exporter-dotnet-opentelemetryprotocol.yml b/data/registry/exporter-dotnet-opentelemetryprotocol.yml index a6d5fa3485d1..16b78eb1b8d0 100644 --- a/data/registry/exporter-dotnet-opentelemetryprotocol.yml +++ b/data/registry/exporter-dotnet-opentelemetryprotocol.yml @@ -1,17 +1,22 @@ title: OTLP Exporter registryType: exporter -isThirdParty: false language: dotnet tags: - .NET - C# - dotnet - exporter -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.OpenTelemetryProtocol license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.OpenTelemetryProtocol +createdAt: 2020-02-05 +package: + registry: nuget + name: OpenTelemetry.Exporter.OpenTelemetryProtocol + version: 1.7.0 diff --git a/data/registry/exporter-dotnet-prometheus-aspnetcore.yml b/data/registry/exporter-dotnet-prometheus-aspnetcore.yml index fa19811d8dbf..7df7b4668064 100644 --- a/data/registry/exporter-dotnet-prometheus-aspnetcore.yml +++ b/data/registry/exporter-dotnet-prometheus-aspnetcore.yml @@ -1,7 +1,6 @@ # cSpell:ignore aspnetcore title: Prometheus Exporter ASP.NET Core for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - prometheus @@ -10,10 +9,16 @@ tags: - core - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Prometheus.AspNetCore license: Apache 2.0 description: An OpenTelemetry Prometheus exporter for configuring an ASP.NET Core application with an endpoint for Prometheus to scrape. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Prometheus.AspNetCore +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.Prometheus.AspNetCore + version: 1.7.0-rc.1 diff --git a/data/registry/exporter-dotnet-prometheus-httplistener.yml b/data/registry/exporter-dotnet-prometheus-httplistener.yml index 100ff6c75de6..a58109f9bb2b 100644 --- a/data/registry/exporter-dotnet-prometheus-httplistener.yml +++ b/data/registry/exporter-dotnet-prometheus-httplistener.yml @@ -1,16 +1,21 @@ # cSpell:ignore httplistener title: Prometheus Exporter HttpListener for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - prometheus-httplistener - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Prometheus.HttpListener license: Apache 2.0 description: An OpenTelemetry Prometheus exporter that configures an HttpListener instance for Prometheus to scrape. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Prometheus.HttpListener +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.Prometheus.HttpListener + version: 1.7.0-rc.1 diff --git a/data/registry/exporter-dotnet-stackdriver.yml b/data/registry/exporter-dotnet-stackdriver.yml index 7f0718446fb2..66949d1db5a7 100644 --- a/data/registry/exporter-dotnet-stackdriver.yml +++ b/data/registry/exporter-dotnet-stackdriver.yml @@ -1,14 +1,19 @@ # cSpell:ignore stackdriver title: Stackdriver Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - stackdriver - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.Stackdriver license: Apache 2.0 description: Stackdriver Exporter for OpenTelemetry .NET -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Exporter.Stackdriver +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Exporter.Stackdriver + version: 1.0.0-beta.4 diff --git a/data/registry/exporter-dotnet-zipkin.yml b/data/registry/exporter-dotnet-zipkin.yml index 517464c2c6de..9c493ec1faf6 100644 --- a/data/registry/exporter-dotnet-zipkin.yml +++ b/data/registry/exporter-dotnet-zipkin.yml @@ -1,13 +1,18 @@ title: Zipkin Exporter for OpenTelemetry .NET registryType: exporter -isThirdParty: false language: dotnet tags: - zipkin - exporter - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.Zipkin license: Apache 2.0 description: Zipkin Exporter for OpenTelemetry .NET -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +package: + name: OpenTelemetry.Exporter.Zipkin + registry: nuget + version: 1.7.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/exporter-erlang-otlp.yml b/data/registry/exporter-erlang-otlp.yml index c53a3387cee1..e2437e6b8839 100644 --- a/data/registry/exporter-erlang-otlp.yml +++ b/data/registry/exporter-erlang-otlp.yml @@ -1,17 +1,18 @@ title: OTLP Exporter registryType: exporter -isThirdParty: false language: erlang tags: - erlang - elixir - otlp - exporter -repo: https://github.com/open-telemetry/opentelemetry-erlang/tree/main/apps/opentelemetry_exporter license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang/tree/main/apps/opentelemetry_exporter +createdAt: 2022-03-23 diff --git a/data/registry/exporter-erlang-zipkin.yml b/data/registry/exporter-erlang-zipkin.yml index 0aa6ce53ec09..92145b951470 100644 --- a/data/registry/exporter-erlang-zipkin.yml +++ b/data/registry/exporter-erlang-zipkin.yml @@ -1,14 +1,15 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: false language: erlang tags: - erlang - elixir - zipkin - exporter -repo: https://github.com/open-telemetry/opentelemetry-erlang/tree/main/apps/opentelemetry_zipkin license: Apache 2.0 description: This library provides a span exporter using the Zipkin protocol. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang/tree/main/apps/opentelemetry_zipkin +createdAt: 2022-03-23 diff --git a/data/registry/exporter-go-google-cloud-monitoring.yml b/data/registry/exporter-go-google-cloud-monitoring.yml index e53b2a2ffa46..af71b955303a 100644 --- a/data/registry/exporter-go-google-cloud-monitoring.yml +++ b/data/registry/exporter-go-google-cloud-monitoring.yml @@ -1,12 +1,13 @@ title: Google Cloud Monitoring Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/tree/main/exporter/metric license: Apache 2.0 description: The OpenTelemetry Google Cloud Monitoring Exporter for Go. -authors: Google Authors -otVersion: latest +authors: + - name: Google Authors +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/tree/main/exporter/metric +createdAt: 2020-04-01 diff --git a/data/registry/exporter-go-google-cloud-trace.yml b/data/registry/exporter-go-google-cloud-trace.yml index 852f6b06b82d..32915caac9c8 100644 --- a/data/registry/exporter-go-google-cloud-trace.yml +++ b/data/registry/exporter-go-google-cloud-trace.yml @@ -1,12 +1,13 @@ title: Google Cloud Trace Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/tree/main/exporter/trace license: Apache 2.0 description: The OpenTelemetry Google Cloud Trace Exporter for Go. -authors: Google Authors -otVersion: latest +authors: + - name: Google Authors +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/tree/main/exporter/trace +createdAt: 2020-04-01 diff --git a/data/registry/exporter-go-instana.yml b/data/registry/exporter-go-instana.yml index 6a29f35250da..71e28c92a96f 100644 --- a/data/registry/exporter-go-instana.yml +++ b/data/registry/exporter-go-instana.yml @@ -1,13 +1,14 @@ title: Instana Go Exporter registryType: exporter -isThirdParty: true language: go tags: - Go - exporter - Instana -repo: https://github.com/instana/go-otel-exporter license: MIT description: The Instana Go OpenTelemetry Exporter. -authors: Instana Authors -otVersion: v1.9.0 +authors: + - name: Instana Authors +urls: + repo: https://github.com/instana/go-otel-exporter +createdAt: 2022-10-10 diff --git a/data/registry/exporter-go-lightstep.yml b/data/registry/exporter-go-lightstep.yml index 67f2632f93a1..331aca707157 100644 --- a/data/registry/exporter-go-lightstep.yml +++ b/data/registry/exporter-go-lightstep.yml @@ -1,12 +1,13 @@ title: Lightstep Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter -repo: https://github.com/lightstep/opentelemetry-exporter-go license: Apache 2.0 description: The OpenTelemetry Lightstep Exporter for Go. -authors: Lightstep Authors -otVersion: latest +authors: + - name: Lightstep Authors +urls: + repo: https://github.com/lightstep/opentelemetry-exporter-go +createdAt: 2020-02-05 diff --git a/data/registry/exporter-go-otlp.yml b/data/registry/exporter-go-otlp.yml index 65f6ea5e07ae..712276a7cb51 100644 --- a/data/registry/exporter-go-otlp.yml +++ b/data/registry/exporter-go-otlp.yml @@ -1,15 +1,16 @@ title: OTLP Exporter registryType: exporter -isThirdParty: false language: go tags: - go - exporter -repo: https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/otlp license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/otlp +createdAt: 2020-02-05 diff --git a/data/registry/exporter-go-otlpr.yml b/data/registry/exporter-go-otlpr.yml index 200869cddca8..525cd9cbc9eb 100644 --- a/data/registry/exporter-go-otlpr.yml +++ b/data/registry/exporter-go-otlpr.yml @@ -1,7 +1,6 @@ # cSpell:ignore otlpr logr title: otlpr - A logr implementation backed by OTLP registryType: exporter -isThirdParty: true language: go tags: - go @@ -9,8 +8,10 @@ tags: - log - logging - logr -repo: https://github.com/MrAlias/otlpr license: Apache 2.0 description: Provides a `logr.Logger` that exports messages as OTLP logs. -authors: MrAlias -otVersion: latest +authors: + - name: MrAlias +urls: + repo: https://github.com/MrAlias/otlpr +createdAt: 2023-05-06 diff --git a/data/registry/exporter-go-prometheus.yml b/data/registry/exporter-go-prometheus.yml index 15b68bdb2c2d..3a35afdb485d 100644 --- a/data/registry/exporter-go-prometheus.yml +++ b/data/registry/exporter-go-prometheus.yml @@ -1,12 +1,13 @@ title: Prometheus Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter -repo: https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/prometheus license: Apache 2.0 description: The OpenTelemetry Prometheus Exporter for Go. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/prometheus +createdAt: 2020-11-05 diff --git a/data/registry/exporter-go-zipkin.yml b/data/registry/exporter-go-zipkin.yml index 6cad2a708964..1f5fd43e6748 100644 --- a/data/registry/exporter-go-zipkin.yml +++ b/data/registry/exporter-go-zipkin.yml @@ -1,12 +1,13 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: true language: go tags: - go - exporter -repo: https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/zipkin license: Apache 2.0 description: The OpenTelemetry Zipkin Exporter for Go. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go/tree/main/exporters/zipkin +createdAt: 2020-11-05 diff --git a/data/registry/exporter-java-google-cloud.yml b/data/registry/exporter-java-google-cloud.yml index 5d17980c1704..71f0b4623dbc 100644 --- a/data/registry/exporter-java-google-cloud.yml +++ b/data/registry/exporter-java-google-cloud.yml @@ -1,6 +1,5 @@ title: Google Cloud Exporters registryType: exporter -isThirdParty: true language: java tags: - java @@ -8,8 +7,10 @@ tags: - metrics - traces - google -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-java/tree/main/exporters/trace license: Apache 2.0 description: The OpenTelemetry Google Cloud Monitoring/Trace Exporters for Java. -authors: Google -otVersion: latest +authors: + - name: Google +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-java/tree/main/exporters/trace +createdAt: 2020-08-13 diff --git a/data/registry/exporter-java-jaeger.yml b/data/registry/exporter-java-jaeger.yml index 8822a48c1369..254a69055f50 100644 --- a/data/registry/exporter-java-jaeger.yml +++ b/data/registry/exporter-java-jaeger.yml @@ -1,12 +1,13 @@ title: Jaeger Exporter registryType: exporter -isThirdParty: true language: java tags: - java - exporter -repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/jaeger license: Apache 2.0 description: This library allows to export data using the Jaeger gRPC Protocol. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/jaeger +createdAt: 2020-11-05 diff --git a/data/registry/exporter-java-otlp.yml b/data/registry/exporter-java-otlp.yml index 6023e088c8e9..63923b269957 100644 --- a/data/registry/exporter-java-otlp.yml +++ b/data/registry/exporter-java-otlp.yml @@ -1,15 +1,16 @@ title: OTLP Exporter registryType: exporter -isThirdParty: false language: java tags: - java - exporter -repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/otlp license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/otlp +createdAt: 2020-02-05 diff --git a/data/registry/exporter-java-prometheus.yml b/data/registry/exporter-java-prometheus.yml index 3ed8342a54ef..b0d2d4f9d6a7 100644 --- a/data/registry/exporter-java-prometheus.yml +++ b/data/registry/exporter-java-prometheus.yml @@ -1,14 +1,15 @@ title: Prometheus Exporter registryType: exporter -isThirdParty: true language: java tags: - java - exporter -repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/prometheus license: Apache 2.0 description: This library allows to export Prometheus data allowing Prometheus to query metric data. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/prometheus +createdAt: 2020-11-05 diff --git a/data/registry/exporter-java-zipkin.yml b/data/registry/exporter-java-zipkin.yml index 7d7aaa0a2f88..ca3132a29d28 100644 --- a/data/registry/exporter-java-zipkin.yml +++ b/data/registry/exporter-java-zipkin.yml @@ -1,12 +1,13 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: true language: java tags: - java - exporter -repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/zipkin license: Apache 2.0 description: This library allows to export data using the Zipkin Protocol. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java/tree/main/exporters/zipkin +createdAt: 2020-11-05 diff --git a/data/registry/exporter-js-azure-monitor.yml b/data/registry/exporter-js-azure-monitor.yml deleted file mode 100644 index e3ddbb875b22..000000000000 --- a/data/registry/exporter-js-azure-monitor.yml +++ /dev/null @@ -1,14 +0,0 @@ -title: Azure Monitor JavaScript Exporter -registryType: exporter -isThirdParty: true -language: js -tags: - - Node.js - - javascript - - exporter - - azure -repo: https://github.com/microsoft/opentelemetry-azure-monitor-js -license: MIT -description: The OpenTelemetry Azure Monitor Exporter for JavaScript. -authors: Microsoft Authors -otVersion: latest diff --git a/data/registry/exporter-js-azure.yml b/data/registry/exporter-js-azure.yml index 5db89ab08d3b..bfaa29b99469 100644 --- a/data/registry/exporter-js-azure.yml +++ b/data/registry/exporter-js-azure.yml @@ -1,14 +1,19 @@ title: Azure Monitor Exporter registryType: exporter -isThirdParty: true language: js tags: - Node.js - exporter - Azure Monitor - Application Insights -repo: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/monitor/monitor-opentelemetry-exporter -license: MIT License +license: MIT description: The OpenTelemetry Azure Monitor Exporter for JavaScript (Node.js) -authors: Microsoft Authors -otVersion: latest +authors: + - name: Microsoft Authors +package: + name: '@azure/monitor-opentelemetry-exporter' + registry: npm + version: 1.0.0-beta.18 +urls: + repo: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/monitor/monitor-opentelemetry-exporter +createdAt: 2021-11-01 diff --git a/data/registry/exporter-js-google-cloud-monitoring.yml b/data/registry/exporter-js-google-cloud-monitoring.yml index 272b7d046a70..61adf641634d 100644 --- a/data/registry/exporter-js-google-cloud-monitoring.yml +++ b/data/registry/exporter-js-google-cloud-monitoring.yml @@ -1,12 +1,13 @@ title: Google Cloud Monitoring Exporter registryType: exporter -isThirdParty: true language: js tags: - Node.js - exporter -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-js/tree/main/packages/opentelemetry-cloud-monitoring-exporter license: Apache 2.0 description: The OpenTelemetry Google Cloud Metric Exporter for Node.js. -authors: Google Authors -otVersion: latest +authors: + - name: Google Authors +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-js/tree/main/packages/opentelemetry-cloud-monitoring-exporter +createdAt: 2020-04-01 diff --git a/data/registry/exporter-js-google-cloud-trace.yml b/data/registry/exporter-js-google-cloud-trace.yml index 61b29a5a2d66..5ebec67238ec 100644 --- a/data/registry/exporter-js-google-cloud-trace.yml +++ b/data/registry/exporter-js-google-cloud-trace.yml @@ -1,12 +1,13 @@ title: Google Cloud Trace Exporter registryType: exporter -isThirdParty: true language: js tags: - Node.js - exporter -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-js/tree/main/packages/opentelemetry-cloud-trace-exporter license: Apache 2.0 description: The OpenTelemetry Google Cloud Trace Exporter for Node.js. -authors: Google Authors -otVersion: latest +authors: + - name: Google Authors +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-js/tree/main/packages/opentelemetry-cloud-trace-exporter +createdAt: 2020-04-01 diff --git a/data/registry/exporter-js-instana.yml b/data/registry/exporter-js-instana.yml index 09114b3ce8a3..c49cde71c81e 100644 --- a/data/registry/exporter-js-instana.yml +++ b/data/registry/exporter-js-instana.yml @@ -1,13 +1,14 @@ title: Instana Node.js Exporter registryType: exporter -isThirdParty: true language: js tags: - Node.js - exporter - Instana -repo: https://github.com/instana/nodejs/tree/main/packages/opentelemetry-exporter license: MIT description: The Instana Node.js OpenTelemetry Exporter. -authors: Instana Authors -otVersion: latest +authors: + - name: Instana Authors +urls: + repo: https://github.com/instana/nodejs/tree/main/packages/opentelemetry-exporter +createdAt: 2022-04-18 diff --git a/data/registry/exporter-js-jaeger.yml b/data/registry/exporter-js-jaeger.yml index 3e8edbc31b90..5d73fce7cf26 100644 --- a/data/registry/exporter-js-jaeger.yml +++ b/data/registry/exporter-js-jaeger.yml @@ -1,12 +1,17 @@ title: Jaeger Exporter registryType: exporter -isThirdParty: false language: js tags: - Node.js - exporter -repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-exporter-jaeger license: Apache 2.0 description: The OpenTelemetry Jaeger Exporter for Node.js. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-exporter-jaeger +createdAt: 2020-02-06 +package: + registry: npm + name: '@opentelemetry/exporter-jaeger' + version: 1.19.0 diff --git a/data/registry/exporter-js-prometheus.yml b/data/registry/exporter-js-prometheus.yml index 7c93c3d8f476..fb84872a10b5 100644 --- a/data/registry/exporter-js-prometheus.yml +++ b/data/registry/exporter-js-prometheus.yml @@ -1,12 +1,13 @@ title: Prometheus Exporter registryType: exporter -isThirdParty: false language: js tags: - Node.js - exporter -repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-exporter-prometheus license: Apache 2.0 description: The OpenTelemetry Prometheus Exporter for Node.js. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-exporter-prometheus +createdAt: 2020-02-06 diff --git a/data/registry/exporter-js-zipkin.yml b/data/registry/exporter-js-zipkin.yml index 739b089d80dc..50651ac8d084 100644 --- a/data/registry/exporter-js-zipkin.yml +++ b/data/registry/exporter-js-zipkin.yml @@ -1,12 +1,18 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: false language: js tags: - Node.js - exporter -repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-exporter-zipkin license: Apache 2.0 description: The OpenTelemetry Zipkin Exporter for Node.js. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +package: + name: '@opentelemetry/exporter-zipkin' + registry: npm + version: 1.19.0 +urls: + repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-exporter-zipkin + docs: /docs/languages/js/exporters/#zipkin +createdAt: 2020-02-06 diff --git a/data/registry/exporter-perl-otlp.yml b/data/registry/exporter-perl-otlp.yml index 4e789ecb1650..17fcab6fb23f 100644 --- a/data/registry/exporter-perl-otlp.yml +++ b/data/registry/exporter-perl-otlp.yml @@ -1,13 +1,14 @@ # cSpell:ignore jjatria title: OTLP Exporter for Perl registryType: instrumentation -isThirdParty: true language: perl tags: - perl - exporter -repo: https://github.com/jjatria/perl-opentelemetry-exporter-otlp license: Artistic-1.0-Perl description: An unofficial implementation of the OTLP Exporter in Perl. -authors: jjatria -otVersion: latest +authors: + - name: jjatria +urls: + repo: https://github.com/jjatria/perl-opentelemetry-exporter-otlp +createdAt: 2023-12-05 diff --git a/data/registry/exporter-php-grpc.yml b/data/registry/exporter-php-grpc.yml index 289089a06d01..9ca745e35f27 100644 --- a/data/registry/exporter-php-grpc.yml +++ b/data/registry/exporter-php-grpc.yml @@ -1,15 +1,16 @@ title: OTLP/gRPC Exporter registryType: exporter -isThirdParty: false language: php tags: - php - exporter - grpc -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Contrib/Grpc license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) over gRPC. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Contrib/Grpc +createdAt: 2022-12-14 diff --git a/data/registry/exporter-php-otlp.yml b/data/registry/exporter-php-otlp.yml index 96cc6ca68014..9b7a07bbcdec 100644 --- a/data/registry/exporter-php-otlp.yml +++ b/data/registry/exporter-php-otlp.yml @@ -1,15 +1,19 @@ title: OTLP Exporter registryType: exporter -isThirdParty: false language: php tags: - php - exporter -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Contrib/Otlp license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +package: + registry: packagist + name: opentelemetry/exporter-otlp +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Contrib/Otlp +createdAt: 2022-12-14 diff --git a/data/registry/exporter-php-zipkin.yml b/data/registry/exporter-php-zipkin.yml index 753df6007181..2a3f8d3526e0 100644 --- a/data/registry/exporter-php-zipkin.yml +++ b/data/registry/exporter-php-zipkin.yml @@ -1,13 +1,18 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: false language: php tags: - php - zipkin - exporter -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Contrib/Zipkin license: Apache 2.0 description: The OpenTelemetry Zipkin Exporter for PHP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +package: + name: open-telemetry/exporter-zipkin + registry: packagist + version: 1.0.0 +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Contrib/Zipkin +createdAt: 2022-12-14 diff --git a/data/registry/exporter-python-azure.yml b/data/registry/exporter-python-azure.yml index 3c14aa2f5727..553afbc7a0f8 100644 --- a/data/registry/exporter-python-azure.yml +++ b/data/registry/exporter-python-azure.yml @@ -1,14 +1,18 @@ title: Azure Monitor Exporter registryType: exporter -isThirdParty: true language: python tags: - python - exporter - Azure Monitor - Application Insights -repo: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry-exporter -license: MIT License +license: MIT description: The OpenTelemetry Azure Monitor Exporter for Python -authors: Microsoft Authors -otVersion: latest +authors: + - name: Microsoft Authors +package: + name: azure-monitor-opentelemetry-exporter + registry: pip +urls: + repo: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry-exporter +createdAt: 2020-04-02 diff --git a/data/registry/exporter-python-gcp-monitoring.yml b/data/registry/exporter-python-gcp-monitoring.yml index 0343d83a8335..e088256d9df0 100644 --- a/data/registry/exporter-python-gcp-monitoring.yml +++ b/data/registry/exporter-python-gcp-monitoring.yml @@ -1,14 +1,15 @@ title: Google Cloud Exporters registryType: exporter -isThirdParty: true language: python tags: - python - exporter - metrics - google -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-exporter-gcp-monitoring license: Apache 2.0 description: The OpenTelemetry Google Cloud Monitoring Exporters for Python. -authors: Google -otVersion: latest +authors: + - name: Google +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-exporter-gcp-monitoring +createdAt: 2020-08-13 diff --git a/data/registry/exporter-python-gcp-trace.yml b/data/registry/exporter-python-gcp-trace.yml index 5157e84e1aee..ca7d99b2c455 100644 --- a/data/registry/exporter-python-gcp-trace.yml +++ b/data/registry/exporter-python-gcp-trace.yml @@ -1,14 +1,15 @@ title: Google Cloud Exporters registryType: exporter -isThirdParty: true language: python tags: - python - exporter - traces - google -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-exporter-gcp-trace license: Apache 2.0 description: The OpenTelemetry Google Cloud Trace Exporters for Python. -authors: Google -otVersion: latest +authors: + - name: Google +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-exporter-gcp-trace +createdAt: 2020-08-13 diff --git a/data/registry/exporter-python-lightstep.yml b/data/registry/exporter-python-lightstep.yml index b56c938a4479..d058d5aff411 100644 --- a/data/registry/exporter-python-lightstep.yml +++ b/data/registry/exporter-python-lightstep.yml @@ -1,12 +1,13 @@ title: Lightstep Exporter registryType: exporter -isThirdParty: true language: python tags: - python - exporter -repo: https://github.com/lightstep/opentelemetry-exporter-python license: Apache 2.0 description: The OpenTelemetry Lightstep Exporter for Python. -authors: Lightstep Authors -otVersion: latest +authors: + - name: Lightstep Authors +urls: + repo: https://github.com/lightstep/opentelemetry-exporter-python +createdAt: 2020-02-05 diff --git a/data/registry/exporter-python-opencensus.yml b/data/registry/exporter-python-opencensus.yml index a3a3d967a354..a5637b94cea9 100644 --- a/data/registry/exporter-python-opencensus.yml +++ b/data/registry/exporter-python-opencensus.yml @@ -1,12 +1,13 @@ title: OpenCensus Exporter registryType: exporter -isThirdParty: true language: python tags: - python - exporter -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-opencensus license: Apache 2.0 description: This library allows to export traces and metrics using OpenCensus. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-opencensus +createdAt: 2020-02-05 diff --git a/data/registry/exporter-python-otlp.yml b/data/registry/exporter-python-otlp.yml index e53ee7aca38c..e1e7bb41f05f 100644 --- a/data/registry/exporter-python-otlp.yml +++ b/data/registry/exporter-python-otlp.yml @@ -1,15 +1,16 @@ title: OTLP Exporter registryType: exporter -isThirdParty: false language: python tags: - python - exporter -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp +createdAt: 2020-02-05 diff --git a/data/registry/exporter-python-otlpprotogrpc.yml b/data/registry/exporter-python-otlpprotogrpc.yml index a1aeb4d88211..1b64f82e3693 100644 --- a/data/registry/exporter-python-otlpprotogrpc.yml +++ b/data/registry/exporter-python-otlpprotogrpc.yml @@ -1,6 +1,5 @@ title: OpenTelemetry Collector protobuf over gRPC Exporter registryType: exporter -isThirdParty: false language: python tags: - otlp @@ -8,10 +7,12 @@ tags: - grpc - exporter - python -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp-proto-grpc license: Apache 2.0 description: This library allows to export data to the OpenTelemetry Collector using the OpenTelemetry Protocol using protobuf over gRPC. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp-proto-grpc +createdAt: 2022-11-07 diff --git a/data/registry/exporter-python-otlpprotohttp.yml b/data/registry/exporter-python-otlpprotohttp.yml index 899a481ef0dc..abe9a99d3e34 100644 --- a/data/registry/exporter-python-otlpprotohttp.yml +++ b/data/registry/exporter-python-otlpprotohttp.yml @@ -1,6 +1,5 @@ title: OpenTelemetry Collector protobuf over HTTP Exporter registryType: exporter -isThirdParty: false language: python tags: - otlp @@ -8,10 +7,12 @@ tags: - grpc - exporter - python -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp-proto-http license: Apache 2.0 description: This library allows to export data to the OpenTelemetry Collector using the OpenTelemetry Protocol using protobuf over HTTP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp-proto-http +createdAt: 2022-11-07 diff --git a/data/registry/exporter-python-prometheus.yml b/data/registry/exporter-python-prometheus.yml index c0af6226f7d1..67d0daa0520d 100644 --- a/data/registry/exporter-python-prometheus.yml +++ b/data/registry/exporter-python-prometheus.yml @@ -1,12 +1,13 @@ title: Prometheus Exporter registryType: exporter -isThirdParty: false language: python tags: - python - exporter -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-prometheus license: Apache 2.0 description: This library allows to export metrics data to Prometheus. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-prometheus +createdAt: 2020-02-05 diff --git a/data/registry/exporter-python-zipkin.yml b/data/registry/exporter-python-zipkin.yml index 9c26d56e676f..6f4a708e237b 100644 --- a/data/registry/exporter-python-zipkin.yml +++ b/data/registry/exporter-python-zipkin.yml @@ -1,12 +1,13 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: false language: python tags: - python - exporter -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-zipkin license: Apache 2.0 description: The OpenTelemetry Zipkin Exporter for Python. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-zipkin +createdAt: 2020-02-05 diff --git a/data/registry/exporter-python-zipkinjson.yml b/data/registry/exporter-python-zipkinjson.yml index 6bfd020cd082..cea1e9b02d39 100644 --- a/data/registry/exporter-python-zipkinjson.yml +++ b/data/registry/exporter-python-zipkinjson.yml @@ -1,16 +1,17 @@ title: OpenTelemetry Zipkin JSON Exporter registryType: exporter -isThirdParty: false language: python tags: - zipkin - json - exporter - python -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-zipkin-json license: Apache 2.0 description: This library allows export of tracing data to Zipkin using JSON for serialization. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-zipkin-json +createdAt: 2022-11-07 diff --git a/data/registry/exporter-python-zipkinprotohttp.yml b/data/registry/exporter-python-zipkinprotohttp.yml index 5e05f5b7f941..854faf2fb9b4 100644 --- a/data/registry/exporter-python-zipkinprotohttp.yml +++ b/data/registry/exporter-python-zipkinprotohttp.yml @@ -1,6 +1,5 @@ title: OpenTelemetry Zipkin protobuf Exporter registryType: exporter -isThirdParty: false language: python tags: - zipkin @@ -8,10 +7,12 @@ tags: - http - exporter - python -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-zipkin-proto-http license: Apache 2.0 description: This library allows export of tracing data to Zipkin using protobuf for serialization. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-zipkin-proto-http +createdAt: 2022-11-07 diff --git a/data/registry/exporter-ruby-datadog.yml b/data/registry/exporter-ruby-datadog.yml index 9c3ff0006ba3..f540ddfaf449 100644 --- a/data/registry/exporter-ruby-datadog.yml +++ b/data/registry/exporter-ruby-datadog.yml @@ -1,13 +1,14 @@ title: Datadog Exporter Ruby registryType: exporter -isThirdParty: true language: ruby tags: - ruby - exporter - datadog -repo: https://github.com/DataDog/dd-opentelemetry-exporter-ruby license: Apache 2.0 description: The OpenTelemetry Datadog Exporter for Ruby. -authors: Datadog, Inc. -otVersion: latest +authors: + - name: Datadog, Inc. +urls: + repo: https://github.com/DataDog/dd-opentelemetry-exporter-ruby +createdAt: 2020-09-02 diff --git a/data/registry/exporter-ruby-jaeger.yml b/data/registry/exporter-ruby-jaeger.yml index 24ed90bd65e4..f8fcb15cbb98 100644 --- a/data/registry/exporter-ruby-jaeger.yml +++ b/data/registry/exporter-ruby-jaeger.yml @@ -1,15 +1,16 @@ title: opentelemetry-exporter-jaeger registryType: exporter -isThirdParty: false language: ruby tags: - jaeger - exporter - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/jaeger license: Apache 2.0 description: The opentelemetry-exporter-jaeger gem provides a Jaeger exporter for OpenTelemetry Ruby -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/jaeger +createdAt: 2022-11-07 diff --git a/data/registry/exporter-ruby-otlp.yml b/data/registry/exporter-ruby-otlp.yml index e2c2dc0e4229..88ffd57223ed 100644 --- a/data/registry/exporter-ruby-otlp.yml +++ b/data/registry/exporter-ruby-otlp.yml @@ -1,15 +1,16 @@ title: opentelemetry-exporter-otlp registryType: exporter -isThirdParty: false language: ruby tags: - otlp - exporter - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp license: Apache 2.0 description: The opentelemetry-exporter-otlp gem provides an OTLP exporter for OpenTelemetry Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp +createdAt: 2022-11-07 diff --git a/data/registry/exporter-ruby-otlpgrpc.yml b/data/registry/exporter-ruby-otlpgrpc.yml index 300ddef48925..ceb16c8844bb 100644 --- a/data/registry/exporter-ruby-otlpgrpc.yml +++ b/data/registry/exporter-ruby-otlpgrpc.yml @@ -1,16 +1,17 @@ title: OTLP exporter over gRPC for Ruby registryType: exporter -isThirdParty: false language: ruby tags: - otlp - grpc - exporter - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp-grpc license: Apache 2.0 description: The `opentelemetry-exporter-otlp-grpc` gem provides an OTLP exporter over gRPC for OpenTelemetry Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp-grpc +createdAt: 2022-11-07 diff --git a/data/registry/exporter-ruby-otlphttp.yml b/data/registry/exporter-ruby-otlphttp.yml index c82637444869..e77f7de1f3bd 100644 --- a/data/registry/exporter-ruby-otlphttp.yml +++ b/data/registry/exporter-ruby-otlphttp.yml @@ -1,16 +1,17 @@ title: OTLP over HTTP exporter for Ruby registryType: exporter -isThirdParty: false language: ruby tags: - otlp - http - exporter - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp-http license: Apache 2.0 description: The opentelemetry-exporter-otlp-http gem provides an OTLP over HTTP exporter for OpenTelemetry Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp-http +createdAt: 2022-11-07 diff --git a/data/registry/exporter-ruby-zipkin.yml b/data/registry/exporter-ruby-zipkin.yml index ba486a42abd2..da509061490f 100644 --- a/data/registry/exporter-ruby-zipkin.yml +++ b/data/registry/exporter-ruby-zipkin.yml @@ -1,15 +1,16 @@ title: opentelemetry-exporter-zipkin registryType: exporter -isThirdParty: false language: ruby tags: - zipkin - exporter - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/zipkin license: Apache 2.0 description: The opentelemetry-exporter-zipkin gem provides a Zipkin exporter for OpenTelemetry Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/zipkin +createdAt: 2022-11-07 diff --git a/data/registry/exporter-rust-application-insights.yml b/data/registry/exporter-rust-application-insights.yml index 4c789edf9207..652a3601e460 100644 --- a/data/registry/exporter-rust-application-insights.yml +++ b/data/registry/exporter-rust-application-insights.yml @@ -1,13 +1,14 @@ # cSpell:ignore kuehle title: Azure Application Insights Exporter registryType: exporter -isThirdParty: true language: rust tags: - rust - exporter -repo: https://github.com/frigus02/opentelemetry-application-insights license: MIT description: OpenTelemetry exporter for Azure Application Insights -authors: Jan Kuehle -otVersion: latest +authors: + - name: Jan Kuehle +urls: + repo: https://github.com/frigus02/opentelemetry-application-insights +createdAt: 2020-08-28 diff --git a/data/registry/exporter-rust-jaeger.yml b/data/registry/exporter-rust-jaeger.yml index a35806003474..8cd8c6d9fb89 100644 --- a/data/registry/exporter-rust-jaeger.yml +++ b/data/registry/exporter-rust-jaeger.yml @@ -1,12 +1,13 @@ title: Jaeger Exporter registryType: exporter -isThirdParty: false language: rust tags: - rust - exporter -repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-jaeger license: Apache 2.0 description: The OpenTelemetry Jaeger Exporter for Rust. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-jaeger +createdAt: 2020-08-28 diff --git a/data/registry/exporter-rust-otlp.yml b/data/registry/exporter-rust-otlp.yml index 8324d3683de7..e3010ad74470 100644 --- a/data/registry/exporter-rust-otlp.yml +++ b/data/registry/exporter-rust-otlp.yml @@ -1,15 +1,16 @@ title: OTLP Exporter registryType: exporter -isThirdParty: true language: rust tags: - rust - exporter -repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp license: Apache 2.0 description: This library allows exporting telemetry data in the OpenTelemetry Protocol (OTLP) format to the OpenTelemetry Collector and OTLP-compliant backends/receivers. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp +createdAt: 2020-08-28 diff --git a/data/registry/exporter-rust-prometheus.yml b/data/registry/exporter-rust-prometheus.yml index c5fff9e01161..7a5206f7143d 100644 --- a/data/registry/exporter-rust-prometheus.yml +++ b/data/registry/exporter-rust-prometheus.yml @@ -1,12 +1,13 @@ title: Prometheus Exporter registryType: exporter -isThirdParty: false language: rust tags: - rust - exporter -repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-prometheus license: Apache 2.0 description: The OpenTelemetry Prometheus Exporter for Rust. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-prometheus +createdAt: 2020-08-28 diff --git a/data/registry/exporter-rust-stackdriver.yml b/data/registry/exporter-rust-stackdriver.yml index 048b394cfc16..fb55e48e0494 100644 --- a/data/registry/exporter-rust-stackdriver.yml +++ b/data/registry/exporter-rust-stackdriver.yml @@ -1,13 +1,14 @@ # cSpell:ignore jacobkiesel title: Google StackDrive Exporter registryType: exporter -isThirdParty: true language: rust tags: - rust - exporter -repo: https://github.com/vivint-smarthome/opentelemetry-stackdriver license: Apache 2.0 OR MIT description: A Rust OpenTelemetry exporter for Google StackDriver -authors: jacobkiesel -otVersion: 0.5.0 +authors: + - name: jacobkiesel +urls: + repo: https://github.com/vivint-smarthome/opentelemetry-stackdriver +createdAt: 2020-08-28 diff --git a/data/registry/exporter-rust-zipkin.yml b/data/registry/exporter-rust-zipkin.yml index 09e945faa6bb..674cb606c8ef 100644 --- a/data/registry/exporter-rust-zipkin.yml +++ b/data/registry/exporter-rust-zipkin.yml @@ -1,12 +1,13 @@ title: Zipkin Exporter registryType: exporter -isThirdParty: false language: rust tags: - rust - exporter -repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-zipkin license: Apache 2.0 description: The OpenTelemetry Zipkin Exporter for Rust. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-zipkin +createdAt: 2020-08-28 diff --git a/data/registry/instrumentation-cpp-httpd.yml b/data/registry/instrumentation-cpp-httpd.yml index 012a0dcdeee8..db9278178b37 100644 --- a/data/registry/instrumentation-cpp-httpd.yml +++ b/data/registry/instrumentation-cpp-httpd.yml @@ -1,14 +1,15 @@ title: httpd (Apache) Instrumentation registryType: instrumentation -isThirdParty: true language: cpp tags: - c++ - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/httpd license: Apache 2.0 description: httpd (Apache) OpenTelemetry module to add OpenTelemetry distributed tracing support to httpd. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/httpd +createdAt: 2021-11-11 diff --git a/data/registry/instrumentation-cpp-nginx.yml b/data/registry/instrumentation-cpp-nginx.yml index f157654590e8..1e37643bc499 100644 --- a/data/registry/instrumentation-cpp-nginx.yml +++ b/data/registry/instrumentation-cpp-nginx.yml @@ -1,15 +1,16 @@ title: NGINX Instrumentation registryType: instrumentation -isThirdParty: true language: cpp tags: - c++ - nginx - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/nginx license: Apache 2.0 description: NGINX OpenTelemetry module to add OpenTelemetry distributed tracing support to NGINX. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/nginx +createdAt: 2021-11-11 diff --git a/data/registry/instrumentation-cpp-otel-webserver-module.yml b/data/registry/instrumentation-cpp-otel-webserver-module.yml index 0a1c53d844f4..81bc9aeabf29 100644 --- a/data/registry/instrumentation-cpp-otel-webserver-module.yml +++ b/data/registry/instrumentation-cpp-otel-webserver-module.yml @@ -1,7 +1,6 @@ # cSpell:ignore webserver title: OpenTelemetry Webserver Module registryType: instrumentation -isThirdParty: false language: cpp tags: - c++ @@ -9,10 +8,12 @@ tags: - apache - nginx - webserver -repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/otel-webserver-module license: Apache 2.0 description: The OTel web server module comprises of both Apache HTTP Server and NGINX instrumentation. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp-contrib/tree/main/instrumentation/otel-webserver-module +createdAt: 2022-06-10 diff --git a/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml b/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml index 5cbd59cdb07e..2c9b7638eb68 100644 --- a/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml +++ b/data/registry/instrumentation-dotnet-aspnet-telemetryhttpmodule.yml @@ -1,6 +1,5 @@ title: ASP.NET Telemetry HttpModule for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - asp @@ -9,10 +8,16 @@ tags: - module - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule license: Apache 2.0 description: The ASP.NET Telemetry HttpModule enables distributed tracing of incoming ASP.NET requests using the OpenTelemetry API. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule + version: 1.7.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-aspnet.yml b/data/registry/instrumentation-dotnet-aspnet.yml index 1b7f26b14e71..0b9b1d640a72 100644 --- a/data/registry/instrumentation-dotnet-aspnet.yml +++ b/data/registry/instrumentation-dotnet-aspnet.yml @@ -1,15 +1,20 @@ title: ASP.NET Instrumentation registryType: instrumentation -isThirdParty: false language: dotnet tags: - asp - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AspNet license: Apache 2.0 description: This is an Instrumentation Library, which instruments ASP.NET and collect metrics and traces about incoming web requests. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AspNet +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.AspNet + version: 1.7.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-aspnetcore.yml b/data/registry/instrumentation-dotnet-aspnetcore.yml index 1436c30d1792..6051172cb5a0 100644 --- a/data/registry/instrumentation-dotnet-aspnetcore.yml +++ b/data/registry/instrumentation-dotnet-aspnetcore.yml @@ -1,16 +1,21 @@ title: ASP.NET Core Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - asp - core - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.AspNetCore license: Apache 2.0 description: This is an Instrumentation Library, which instruments ASP.NET Core and collect metrics and traces about incoming web requests. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.AspNetCore +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.AspNetCore + version: 1.7.0 diff --git a/data/registry/instrumentation-dotnet-aws.yml b/data/registry/instrumentation-dotnet-aws.yml index c76f0dc9d0c0..25efd4d6c38f 100644 --- a/data/registry/instrumentation-dotnet-aws.yml +++ b/data/registry/instrumentation-dotnet-aws.yml @@ -1,13 +1,18 @@ title: AWS SDK client instrumentation registryType: instrumentation -isThirdParty: false language: dotnet tags: - instrumentation - aws - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AWS license: Apache 2.0 description: This package provides AWS SDK client instrumentation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AWS +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.AWS + version: 1.1.0-beta.2 diff --git a/data/registry/instrumentation-dotnet-awslambda.yml b/data/registry/instrumentation-dotnet-awslambda.yml index 916298ea01bb..f5e443fdd4b9 100644 --- a/data/registry/instrumentation-dotnet-awslambda.yml +++ b/data/registry/instrumentation-dotnet-awslambda.yml @@ -1,16 +1,21 @@ title: AWS .NET SDK for Lambda registryType: instrumentation -isThirdParty: false language: dotnet tags: - aws - lambda - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AWSLambda license: Apache 2.0 description: This repository contains SDK to instrument Lambda handler to create incoming span. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AWSLambda +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.AWSLambda + version: 1.2.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-azure-sdk.yml b/data/registry/instrumentation-dotnet-azure-sdk.yml index 9e5da00934fc..870562402f54 100644 --- a/data/registry/instrumentation-dotnet-azure-sdk.yml +++ b/data/registry/instrumentation-dotnet-azure-sdk.yml @@ -1,6 +1,5 @@ title: Azure SDK Instrumentation registryType: instrumentation -isThirdParty: true language: dotnet tags: - dotnet @@ -9,8 +8,10 @@ tags: - instrumentation - azure-sdk - azure -repo: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/samples/Diagnostics.md#opentelemetry-with-azure-monitor-zipkin-and-others -license: MIT License +license: MIT description: Instrumentation for Azure SDK for .NET (Track 2 libraries). -authors: Microsoft Authors -otVersion: 1.0.0 +authors: + - name: Microsoft Authors +urls: + repo: https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/samples/Diagnostics.md#opentelemetry-with-azure-monitor-zipkin-and-others +createdAt: 2021-12-16 diff --git a/data/registry/instrumentation-dotnet-cassandra.yml b/data/registry/instrumentation-dotnet-cassandra.yml index 86be9e864f2f..6063aaa843ed 100644 --- a/data/registry/instrumentation-dotnet-cassandra.yml +++ b/data/registry/instrumentation-dotnet-cassandra.yml @@ -1,14 +1,19 @@ title: Cassandra Instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - cassandra - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Cassandra license: Apache 2.0 description: This is an Instrumentation Library, which instruments CassandraCSharpDriver -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Cassandra +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Cassandra + version: 1.0.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-elasticsearchclient.yml b/data/registry/instrumentation-dotnet-elasticsearchclient.yml index 1dd549d0d7be..425fc48568f2 100644 --- a/data/registry/instrumentation-dotnet-elasticsearchclient.yml +++ b/data/registry/instrumentation-dotnet-elasticsearchclient.yml @@ -1,16 +1,21 @@ title: Elasticsearch Client Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - elasticsearch - client - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.ElasticsearchClient license: Apache 2.0 description: Automatically instruments events emitted by the NEST/Elasticsearch.Net client library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.ElasticsearchClient +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.ElasticsearchClient + version: 1.0.0-beta.5 diff --git a/data/registry/instrumentation-dotnet-entityframeworkcore.yml b/data/registry/instrumentation-dotnet-entityframeworkcore.yml index 631709b69776..94260f701ce1 100644 --- a/data/registry/instrumentation-dotnet-entityframeworkcore.yml +++ b/data/registry/instrumentation-dotnet-entityframeworkcore.yml @@ -1,6 +1,5 @@ title: EntityFrameworkCore Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - entity @@ -8,10 +7,16 @@ tags: - core - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.EntityFrameworkCore license: Apache 2.0 description: Automatically instruments the outgoing database requests from Microsoft.EntityFrameworkCore. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.EntityFrameworkCore +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.EntityFrameworkCore + version: 1.0.0-beta.9 diff --git a/data/registry/instrumentation-dotnet-eventcounters.yml b/data/registry/instrumentation-dotnet-eventcounters.yml index a5d48121e801..514702470b02 100644 --- a/data/registry/instrumentation-dotnet-eventcounters.yml +++ b/data/registry/instrumentation-dotnet-eventcounters.yml @@ -1,16 +1,21 @@ title: EventCounters Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - event - counters - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.EventCounters license: Apache 2.0 description: This is an Instrumentation Library , which republishes EventCounters using OpenTelemetry Metrics API. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.EventCounters +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.EventCounters + version: 1.5.1-alpha.1 diff --git a/data/registry/instrumentation-dotnet-grpccore.yml b/data/registry/instrumentation-dotnet-grpccore.yml index 2e20d4fc5692..66c1765922d7 100644 --- a/data/registry/instrumentation-dotnet-grpccore.yml +++ b/data/registry/instrumentation-dotnet-grpccore.yml @@ -1,16 +1,21 @@ title: gRPC Core-based Client and Server Interceptors for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - grpc - core - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.GrpcCore license: Apache 2.0 description: Adds OpenTelemetry instrumentation for gRPC Core-based client and server calls. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.GrpcCore +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.GrpcCore + version: 1.0.0-beta.5 diff --git a/data/registry/instrumentation-dotnet-grpcnetclient.yml b/data/registry/instrumentation-dotnet-grpcnetclient.yml index 398ee161d33a..e32906a5af67 100644 --- a/data/registry/instrumentation-dotnet-grpcnetclient.yml +++ b/data/registry/instrumentation-dotnet-grpcnetclient.yml @@ -1,16 +1,21 @@ title: Grpc.Net.Client Instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - grpc - client - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.GrpcNetClient license: Apache 2.0 description: This is an Instrumentation Library which instruments Grpc.Net.Client and collects traces about outgoing gRPC requests. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.GrpcNetClient +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.GrpcNetClient + version: 1.6.0-beta.3 diff --git a/data/registry/instrumentation-dotnet-hangfire.yml b/data/registry/instrumentation-dotnet-hangfire.yml index a06c89c54bdc..3ca94260df88 100644 --- a/data/registry/instrumentation-dotnet-hangfire.yml +++ b/data/registry/instrumentation-dotnet-hangfire.yml @@ -1,15 +1,20 @@ title: Hangfire Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - hangfire - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Hangfire license: Apache 2.0 description: This is an Instrumentation Library, which instruments Hangfire and collects telemetry about BackgroundJob. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Hangfire +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Hangfire + version: 1.6.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-honeycomb.yml b/data/registry/instrumentation-dotnet-honeycomb.yml index 2c7bc1c9835d..2a21260ca4f2 100644 --- a/data/registry/instrumentation-dotnet-honeycomb.yml +++ b/data/registry/instrumentation-dotnet-honeycomb.yml @@ -1,13 +1,15 @@ title: Honeycomb OpenTelemetry Distribution for .NET registryType: instrumentation -isThirdParty: true language: dotnet tags: - dotnet - c# - .net - instrumentation -repo: https://github.com/honeycombio/honeycomb-opentelemetry-dotnet license: Apache 2.0 description: Honeycomb's distribution of OpenTelemetry for .NET -authors: Honeycomb, Hound Technology, Inc +authors: + - name: Honeycomb, Hound Technology, Inc +urls: + repo: https://github.com/honeycombio/honeycomb-opentelemetry-dotnet +createdAt: 2021-09-24 diff --git a/data/registry/instrumentation-dotnet-http.yml b/data/registry/instrumentation-dotnet-http.yml index 0dd80191a35d..8f1db68f8e41 100644 --- a/data/registry/instrumentation-dotnet-http.yml +++ b/data/registry/instrumentation-dotnet-http.yml @@ -1,16 +1,21 @@ title: HttpClient and HttpWebRequest instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - http - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.Http license: Apache 2.0 description: This is an Instrumentation Library, which instruments System.Net.Http.HttpClient and System.Net.HttpWebRequest and collects metrics and traces about outgoing HTTP requests. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.Http +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Http + version: 1.7.0 diff --git a/data/registry/instrumentation-dotnet-instrumentation-aws.yml b/data/registry/instrumentation-dotnet-instrumentation-aws.yml index f76097fdca9b..f7dece3a22d1 100644 --- a/data/registry/instrumentation-dotnet-instrumentation-aws.yml +++ b/data/registry/instrumentation-dotnet-instrumentation-aws.yml @@ -1,13 +1,18 @@ title: AWS SDK client instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - instrumentation-aws - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AWS license: Apache 2.0 description: AWS SDK client instrumentation for OpenTelemetry .NET -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.AWS +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.AWS + version: 1.1.0-beta.2 diff --git a/data/registry/instrumentation-dotnet-kafkaflow.yml b/data/registry/instrumentation-dotnet-kafkaflow.yml index 333024e4dbc2..4e4b1c3e5314 100644 --- a/data/registry/instrumentation-dotnet-kafkaflow.yml +++ b/data/registry/instrumentation-dotnet-kafkaflow.yml @@ -1,17 +1,23 @@ # cSpell:ignore kafkaflow farfetch title: KafkaFlow Instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: true language: dotnet tags: - kafka - kafkaflow - instrumentation - dotnet -repo: https://github.com/Farfetch/kafkaflow/tree/master/src/KafkaFlow.OpenTelemetry license: MIT description: This is an Instrumentation Library, which instruments KafkaFlow and collects traces and baggage signals about Kafka messaging. -authors: Farfetch -otVersion: latest +authors: + - name: Farfetch +urls: + repo: https://github.com/Farfetch/kafkaflow/tree/master/src/KafkaFlow.OpenTelemetry +createdAt: 2023-12-07 +isFirstParty: true +package: + name: KafkaFlow.OpenTelemetry + registry: nuget + version: 3.0.3 diff --git a/data/registry/instrumentation-dotnet-masstransit.yml b/data/registry/instrumentation-dotnet-masstransit.yml index e0b0ed4f6def..ce390c30a54d 100644 --- a/data/registry/instrumentation-dotnet-masstransit.yml +++ b/data/registry/instrumentation-dotnet-masstransit.yml @@ -1,16 +1,21 @@ # cSpell:ignore masstransit title: MassTransit Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - masstransit - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.MassTransit license: Apache 2.0 description: Automatically instruments DiagnosticSource events emitted by MassTransit library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.MassTransit +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.MassTransit + version: 1.0.0-beta.3 diff --git a/data/registry/instrumentation-dotnet-mysqldata.yml b/data/registry/instrumentation-dotnet-mysqldata.yml index 8b1a7c92fadf..8edb6f6fa15b 100644 --- a/data/registry/instrumentation-dotnet-mysqldata.yml +++ b/data/registry/instrumentation-dotnet-mysqldata.yml @@ -1,16 +1,21 @@ # cSpell:ignore mysqldata title: MySqlData Instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - mysqldata - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.MySqlData license: Apache 2.0 description: This is an Instrumentation Library, which instruments MySql.Data and collects telemetry about database operations. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.MySqlData +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.MySqlData + version: 1.0.0-beta.7 diff --git a/data/registry/instrumentation-dotnet-owin.yml b/data/registry/instrumentation-dotnet-owin.yml index 6542536827a7..f8305ffc4d94 100644 --- a/data/registry/instrumentation-dotnet-owin.yml +++ b/data/registry/instrumentation-dotnet-owin.yml @@ -1,16 +1,21 @@ # cSpell:ignore owin katana title: OWIN Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - owin - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Owin license: Apache 2.0 description: This is an Instrumentation Library, which instruments OWIN/Katana and collects telemetry about incoming requests. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Owin +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Owin + version: 1.0.0-rc.3 diff --git a/data/registry/instrumentation-dotnet-process.yml b/data/registry/instrumentation-dotnet-process.yml index 0a6da19c82a5..2aef8e3740ec 100644 --- a/data/registry/instrumentation-dotnet-process.yml +++ b/data/registry/instrumentation-dotnet-process.yml @@ -1,15 +1,20 @@ title: Process Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - process - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Process license: Apache 2.0 description: This is an Instrumentation Library, which instruments .NET and collect telemetry about process behavior. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Process +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Process + version: 1.0.0-alpha.6 diff --git a/data/registry/instrumentation-dotnet-quartz.yml b/data/registry/instrumentation-dotnet-quartz.yml index bbc86e79d1f5..d566c453fc3c 100644 --- a/data/registry/instrumentation-dotnet-quartz.yml +++ b/data/registry/instrumentation-dotnet-quartz.yml @@ -1,13 +1,18 @@ title: QuartzNET Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - quartz - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Quartz license: Apache 2.0 description: Automatically instruments the Quartz jobs from Quartz. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Quartz +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Quartz + version: 1.0.0-beta.1 diff --git a/data/registry/instrumentation-dotnet-runtime.yml b/data/registry/instrumentation-dotnet-runtime.yml index dd5b5cea64f6..abe7c834f8b5 100644 --- a/data/registry/instrumentation-dotnet-runtime.yml +++ b/data/registry/instrumentation-dotnet-runtime.yml @@ -1,6 +1,5 @@ title: .NET runtime metrics instrumentation registryType: instrumentation -isThirdParty: false language: dotnet tags: - .NET @@ -9,8 +8,15 @@ tags: - instrumentation - runtime - metrics -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Runtime license: Apache 2.0 description: OpenTelemetry .NET contrib plugin for collecting metrics from .NET Runtime -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Runtime +createdAt: 2022-08-16 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Runtime + version: 1.7.0 diff --git a/data/registry/instrumentation-dotnet-sqlclient.yml b/data/registry/instrumentation-dotnet-sqlclient.yml index bb51c4e1feef..e32761ebed44 100644 --- a/data/registry/instrumentation-dotnet-sqlclient.yml +++ b/data/registry/instrumentation-dotnet-sqlclient.yml @@ -1,16 +1,21 @@ # cSpell:ignore sqlclient title: SqlClient Instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - sqlclient - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.SqlClient license: Apache 2.0 description: This is an Instrumentation Library, which instruments Microsoft.Data.SqlClient and System.Data.SqlClient and collects traces about database operations. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Instrumentation.SqlClient +createdAt: 2022-11-07 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.SqlClient + version: 1.6.0-beta.3 diff --git a/data/registry/instrumentation-dotnet-stackexchangeredis.yml b/data/registry/instrumentation-dotnet-stackexchangeredis.yml index 1ce08637d135..2533de1ade8b 100644 --- a/data/registry/instrumentation-dotnet-stackexchangeredis.yml +++ b/data/registry/instrumentation-dotnet-stackexchangeredis.yml @@ -1,17 +1,22 @@ # cSpell:ignore stackexchange title: StackExchange.Redis Instrumentation for OpenTelemetry registryType: instrumentation -isThirdParty: false language: dotnet tags: - stackexchange - redis - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.StackExchangeRedis license: Apache 2.0 description: This is an Instrumentation Library, which instruments StackExchange.Redis and collects traces about outgoing calls to Redis. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.StackExchangeRedis +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.StackExchangeRedis + version: 1.0.0-rc9.13 diff --git a/data/registry/instrumentation-dotnet-wcf.yml b/data/registry/instrumentation-dotnet-wcf.yml index 07e89cbd38e0..92e6a74858b2 100644 --- a/data/registry/instrumentation-dotnet-wcf.yml +++ b/data/registry/instrumentation-dotnet-wcf.yml @@ -1,15 +1,20 @@ title: WCF Instrumentation for OpenTelemetry .NET registryType: instrumentation -isThirdParty: false language: dotnet tags: - wcf - instrumentation - dotnet -repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Wcf license: Apache 2.0 description: Instruments WCF clients and/or services using implementations of IClientMessageInspector and IDispatchMessageInspector respectively. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Wcf +createdAt: 2022-10-28 +package: + registry: nuget + name: OpenTelemetry.Instrumentation.Wcf + version: 1.0.0-rc.14 diff --git a/data/registry/instrumentation-elixir-ecto.yml b/data/registry/instrumentation-elixir-ecto.yml index 839bac33f004..3e0fe66830ca 100644 --- a/data/registry/instrumentation-elixir-ecto.yml +++ b/data/registry/instrumentation-elixir-ecto.yml @@ -1,15 +1,21 @@ # cSpell:ignore ecto title: Ecto Instrumentation registryType: instrumentation -isThirdParty: false language: elixir tags: - elixir - database - sql - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_ecto license: Apache 2.0 description: Instrumentation for Elixir database library Ecto. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_ecto + demo: /docs/demo/services/feature-flag/ +createdAt: 2022-03-23 +package: + registry: hex + name: opentelemetry_ecto + version: 1.1.1 diff --git a/data/registry/instrumentation-elixir-oban.yml b/data/registry/instrumentation-elixir-oban.yml index 61245c9e59ca..7f936c585fce 100644 --- a/data/registry/instrumentation-elixir-oban.yml +++ b/data/registry/instrumentation-elixir-oban.yml @@ -1,14 +1,15 @@ # cSpell:ignore oban title: Oban Instrumentation registryType: instrumentation -isThirdParty: false language: elixir tags: - elixir - jobs - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_oban license: Apache 2.0 description: Instrumentation for Oban job processing framework. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_oban +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-elixir-phoenix.yml b/data/registry/instrumentation-elixir-phoenix.yml index de5b6af762e0..0578e9d25514 100644 --- a/data/registry/instrumentation-elixir-phoenix.yml +++ b/data/registry/instrumentation-elixir-phoenix.yml @@ -1,14 +1,15 @@ title: Phoenix Instrumentation registryType: instrumentation -isThirdParty: false language: elixir tags: - erlang - elixir - http - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_phoenix license: Apache 2.0 description: Instrumentation for Elixir web framework Phoenix. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_phoenix +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-elixir-redix.yml b/data/registry/instrumentation-elixir-redix.yml index 77df5b93837a..2d0d338024c8 100644 --- a/data/registry/instrumentation-elixir-redix.yml +++ b/data/registry/instrumentation-elixir-redix.yml @@ -1,14 +1,15 @@ # cSpell:ignore redix title: Redix Instrumentation registryType: instrumentation -isThirdParty: false language: elixir tags: - elixir - redis - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_redix license: Apache 2.0 description: Instrumentation for redix Redis client. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_redix +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-cowboy.yml b/data/registry/instrumentation-erlang-cowboy.yml index 7c9405cd4464..ecc3246f41df 100644 --- a/data/registry/instrumentation-erlang-cowboy.yml +++ b/data/registry/instrumentation-erlang-cowboy.yml @@ -1,14 +1,15 @@ title: Cowboy Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - erlang - elixir - http - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_cowboy license: Apache 2.0 description: Instrumentation for Erlang HTTP server Cowboy. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_cowboy +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-dataloader.yml b/data/registry/instrumentation-erlang-dataloader.yml index f9f610cadae6..52165c663817 100644 --- a/data/registry/instrumentation-erlang-dataloader.yml +++ b/data/registry/instrumentation-erlang-dataloader.yml @@ -1,14 +1,15 @@ title: OpentelemetryDataloader registryType: instrumentation -isThirdParty: false language: erlang tags: - dataloader - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_dataloader license: Apache 2.0 description: Telemetry handler that creates OpenTelemetry spans from Dataloader events. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_dataloader +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-ecto.yml b/data/registry/instrumentation-erlang-ecto.yml index b3190e295b18..a8b1f3eabc80 100644 --- a/data/registry/instrumentation-erlang-ecto.yml +++ b/data/registry/instrumentation-erlang-ecto.yml @@ -1,15 +1,20 @@ # cSpell:ignore ecto title: Ecto Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - ecto - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_ecto license: Apache 2.0 description: Telemetry handler that creates OpenTelemetry spans from Ecto query events. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_ecto +createdAt: 2022-03-23 +package: + registry: hex + name: opentelemetry_ecto + version: 1.1.1 diff --git a/data/registry/instrumentation-erlang-elli.yml b/data/registry/instrumentation-erlang-elli.yml index b18424292098..2ad76ea089f5 100644 --- a/data/registry/instrumentation-erlang-elli.yml +++ b/data/registry/instrumentation-erlang-elli.yml @@ -1,14 +1,15 @@ # cSpell:ignore elli title: Elli Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - erlang - http - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_elli license: Apache 2.0 description: Instrumentation for Erlang HTTP server Elli. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_elli +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-finch.yml b/data/registry/instrumentation-erlang-finch.yml index c4651bd6460d..0b7a972b79fe 100644 --- a/data/registry/instrumentation-erlang-finch.yml +++ b/data/registry/instrumentation-erlang-finch.yml @@ -1,15 +1,16 @@ title: OpentelemetryFinch registryType: instrumentation -isThirdParty: false language: erlang tags: - finch - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_finch license: Apache 2.0 description: OpentelemetryFinch uses telemetry handlers to create OpenTelemetry spans from Finch events. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_finch +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-grpcbox.yml b/data/registry/instrumentation-erlang-grpcbox.yml index 4831003f247c..0729e133eb6d 100644 --- a/data/registry/instrumentation-erlang-grpcbox.yml +++ b/data/registry/instrumentation-erlang-grpcbox.yml @@ -1,14 +1,15 @@ # cSpell:ignore grpcbox title: grpcbox Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - erlang - grpc - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_grpcbox license: Apache 2.0 description: Instrumentation for Erlang gRPC client/server grpcbox. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_grpcbox +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-httpoison.yml b/data/registry/instrumentation-erlang-httpoison.yml index a765e804dec1..ed01552d1a39 100644 --- a/data/registry/instrumentation-erlang-httpoison.yml +++ b/data/registry/instrumentation-erlang-httpoison.yml @@ -1,14 +1,16 @@ title: OpentelemetryHTTPoison registryType: instrumentation -isThirdParty: false language: erlang tags: - httpoison - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_httpoison license: Apache 2.0 description: OpentelemetryHTTPoison is an Instrumentation Library for HTTPoison. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors # cSpell:ignore httpoison + +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_httpoison +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-nebulex.yml b/data/registry/instrumentation-erlang-nebulex.yml index 031f6926b9b5..6536abab29c2 100644 --- a/data/registry/instrumentation-erlang-nebulex.yml +++ b/data/registry/instrumentation-erlang-nebulex.yml @@ -1,15 +1,16 @@ # cSpell:ignore nebulex title: OpentelemetryNebulex registryType: instrumentation -isThirdParty: false language: erlang tags: - nebulex - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_nebulex license: Apache 2.0 description: OpentelemetryNebulex uses telemetry handlers to create OpenTelemetry spans -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_nebulex +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-oban.yml b/data/registry/instrumentation-erlang-oban.yml index 702014709c45..caffaf9397e2 100644 --- a/data/registry/instrumentation-erlang-oban.yml +++ b/data/registry/instrumentation-erlang-oban.yml @@ -1,16 +1,17 @@ # cSpell:ignore oban title: Oban Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - oban - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_oban license: Apache 2.0 description: OpentelemetryOban uses telemetry handlers to create OpenTelemetry spans from Oban events. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_oban +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-phoenix.yml b/data/registry/instrumentation-erlang-phoenix.yml index 185b7567be00..cbb13de40b50 100644 --- a/data/registry/instrumentation-erlang-phoenix.yml +++ b/data/registry/instrumentation-erlang-phoenix.yml @@ -1,14 +1,15 @@ title: Phoenix Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - phoenix - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_phoenix license: Apache 2.0 description: Telemetry handler that creates OpenTelemetry spans from Phoenix events. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_phoenix +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-redix.yml b/data/registry/instrumentation-erlang-redix.yml index b6f6e2af0b2d..88af55bf18bd 100644 --- a/data/registry/instrumentation-erlang-redix.yml +++ b/data/registry/instrumentation-erlang-redix.yml @@ -1,16 +1,17 @@ # cSpell:ignore redix title: Redix Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - redix - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_redix license: Apache 2.0 description: OpentelemetryRedix uses telemetry handlers to create OpenTelemetry spans from Redix command events. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_redix +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-req.yml b/data/registry/instrumentation-erlang-req.yml index bfdf5ff64534..9d92640c4e5c 100644 --- a/data/registry/instrumentation-erlang-req.yml +++ b/data/registry/instrumentation-erlang-req.yml @@ -1,14 +1,15 @@ title: OpentelemetryReq registryType: instrumentation -isThirdParty: false language: erlang tags: - req - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_req license: Apache 2.0 description: See https://hex.pm/packages/opentelemetry_req for usage instructions. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_req +createdAt: 2022-03-23 diff --git a/data/registry/instrumentation-erlang-tesla.yml b/data/registry/instrumentation-erlang-tesla.yml index f31a2d95f3e8..64ef0b6bde77 100644 --- a/data/registry/instrumentation-erlang-tesla.yml +++ b/data/registry/instrumentation-erlang-tesla.yml @@ -1,15 +1,16 @@ title: Tesla Instrumentation registryType: instrumentation -isThirdParty: false language: erlang tags: - tesla - instrumentation - erlang -repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_tesla license: Apache 2.0 description: Tesla middleware that creates OpenTelemetry spans and injects tracing headers into HTTP requests for Tesla clients. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-contrib/tree/main/instrumentation/opentelemetry_tesla +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-go-beego.yml b/data/registry/instrumentation-go-beego.yml index cf64c47c9a0b..a64dd86da8f4 100644 --- a/data/registry/instrumentation-go-beego.yml +++ b/data/registry/instrumentation-go-beego.yml @@ -1,16 +1,17 @@ # cSpell:ignore beego astaxie title: Beego Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - beego - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego license: Apache 2.0 description: Package beego provides functions to instrument the github.com/astaxie/beego package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-connect-rpc.yml b/data/registry/instrumentation-go-connect-rpc.yml index beea18e59334..05f531e3a247 100644 --- a/data/registry/instrumentation-go-connect-rpc.yml +++ b/data/registry/instrumentation-go-connect-rpc.yml @@ -1,14 +1,15 @@ title: Connect RPC instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation - connect - grpc -repo: https://github.com/bufbuild/connect-opentelemetry-go license: Apache 2.0 description: Go contrib plugin for Connect RPC. -authors: Buf -otVersion: latest +authors: + - name: Buf +urls: + repo: https://github.com/bufbuild/connect-opentelemetry-go +createdAt: 2023-01-19 diff --git a/data/registry/instrumentation-go-echo.yml b/data/registry/instrumentation-go-echo.yml index 336c3b4e7109..4d4d834e3b97 100644 --- a/data/registry/instrumentation-go-echo.yml +++ b/data/registry/instrumentation-go-echo.yml @@ -1,13 +1,14 @@ # cSpell:ignore labstack title: Echo Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/github.com/labstack/echo license: Apache 2.0 description: Go contrib plugin for the labstack/echo package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/github.com/labstack/echo +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-fiber.yml b/data/registry/instrumentation-go-fiber.yml index 47eaf4d22e4f..1cdf4341941d 100644 --- a/data/registry/instrumentation-go-fiber.yml +++ b/data/registry/instrumentation-go-fiber.yml @@ -1,14 +1,15 @@ # cSpell:ignore gofiber title: Fiber Instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - http -repo: https://github.com/gofiber/contrib/tree/main/otelfiber license: MIT description: Go contrib plugin for the gofiber/fiber package. -authors: gofiber authors & contributors -otVersion: latest +authors: + - name: gofiber authors & contributors +urls: + repo: https://github.com/gofiber/contrib/tree/main/otelfiber +createdAt: 2022-01-14 diff --git a/data/registry/instrumentation-go-gin.yml b/data/registry/instrumentation-go-gin.yml index c918ef68b31f..782636fbdde1 100644 --- a/data/registry/instrumentation-go-gin.yml +++ b/data/registry/instrumentation-go-gin.yml @@ -1,14 +1,15 @@ # cSpell:ignore gonic title: Gin-gonic Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation - http -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/github.com/gin-gonic/gin license: Apache 2.0 description: Go contrib plugin for the gin-gonic/gin package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/github.com/gin-gonic/gin +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-go-pg.yml b/data/registry/instrumentation-go-go-pg.yml index 3e48f02d48ac..9ae2b6aa1453 100644 --- a/data/registry/instrumentation-go-go-pg.yml +++ b/data/registry/instrumentation-go-go-pg.yml @@ -1,13 +1,14 @@ title: go-pg instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - postgresql -repo: https://github.com/go-pg/pg/tree/v10/extra/pgotel -license: BSD 2-Clause +license: BSD-2-Clause description: Instrumentation for go-pg PostgreSQL client. -authors: go-pg Authors -otVersion: latest +authors: + - name: go-pg Authors +urls: + repo: https://github.com/go-pg/pg/tree/v10/extra/pgotel +createdAt: 2021-04-19 diff --git a/data/registry/instrumentation-go-go-redis.yml b/data/registry/instrumentation-go-go-redis.yml index 8d9ead38d187..43326bb71ec9 100644 --- a/data/registry/instrumentation-go-go-redis.yml +++ b/data/registry/instrumentation-go-go-redis.yml @@ -1,13 +1,14 @@ title: go-redis instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - redis -repo: https://github.com/redis/go-redis/tree/master/extra/redisotel -license: BSD 2-Clause +license: BSD-2-Clause description: Instrumentation for go-redis Redis client. -authors: go-redis Authors -otVersion: latest +authors: + - name: go-redis Authors +urls: + repo: https://github.com/redis/go-redis/tree/master/extra/redisotel +createdAt: 2021-04-19 diff --git a/data/registry/instrumentation-go-go-resty.yml b/data/registry/instrumentation-go-go-resty.yml index 32ff86dd06c1..d21b696d38ab 100644 --- a/data/registry/instrumentation-go-go-resty.yml +++ b/data/registry/instrumentation-go-go-resty.yml @@ -1,14 +1,16 @@ # cSpell:ignore resty dubonzi title: Go-Resty Instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - http -repo: https://github.com/dubonzi/otelresty license: Apache 2.0 description: Custom instrumentation for the `go-resty` HTTP client library. -authors: dubonzi -otVersion: latest +authors: + - name: dubonzi + email: eduardobonzi.dev@gmail.com +urls: + repo: https://github.com/dubonzi/otelresty +createdAt: 2023-07-13 diff --git a/data/registry/instrumentation-go-gocql.yml b/data/registry/instrumentation-go-gocql.yml index 73d25df07d68..8e1102c0745a 100644 --- a/data/registry/instrumentation-go-gocql.yml +++ b/data/registry/instrumentation-go-gocql.yml @@ -1,15 +1,16 @@ # cSpell:ignore gocql title: gocql Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - gocql - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql license: Apache 2.0 description: Package gocql provides functions to instrument the gocql/gocql package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-gomemcache.yml b/data/registry/instrumentation-go-gomemcache.yml index 1f41e78ae4f1..79fbc5e2893e 100644 --- a/data/registry/instrumentation-go-gomemcache.yml +++ b/data/registry/instrumentation-go-gomemcache.yml @@ -1,16 +1,17 @@ # cSpell:ignore gomemcache title: gomemcache Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - memcache - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache license: Apache 2.0 description: Package `gomemcache` provides tracing instrumentation for the memcached client. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-gorm.yml b/data/registry/instrumentation-go-gorm.yml index 9078b3d7aa5d..1166920b875f 100644 --- a/data/registry/instrumentation-go-gorm.yml +++ b/data/registry/instrumentation-go-gorm.yml @@ -1,7 +1,6 @@ # cSpell:ignore gorm mihailenco title: GORM instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go @@ -9,10 +8,12 @@ tags: - database - sql - gorm -repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelgorm license: BSD-2-Clause description: Instrumentation for gorm.io/gorm that records queries and reports DBStats metrics. -authors: Vladimir Mihailenco -otVersion: v1.0.0 +authors: + - name: Vladimir Mihailenco +urls: + repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelgorm +createdAt: 2021-10-25 diff --git a/data/registry/instrumentation-go-gqlgen.yml b/data/registry/instrumentation-go-gqlgen.yml index 0064d387f48f..1752f91840d1 100644 --- a/data/registry/instrumentation-go-gqlgen.yml +++ b/data/registry/instrumentation-go-gqlgen.yml @@ -1,13 +1,15 @@ # cSpell:ignore gqlgen ravil galaktionov title: Gqlgen Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation -repo: https://github.com/ravilushqa/otelgqlgen license: Apache 2.0 description: Go contrib plugin for the github.com/99designs/gqlgen package. -authors: Ravil Galaktionov (galaktionov.r@gmail.com) -otVersion: latest +authors: + - name: Ravil Galaktionov + email: galaktionov.r@gmail.com +urls: + repo: https://github.com/ravilushqa/otelgqlgen +createdAt: 2021-11-03 diff --git a/data/registry/instrumentation-go-graphql.yml b/data/registry/instrumentation-go-graphql.yml index baf8c63c808b..dd15ed19f69c 100644 --- a/data/registry/instrumentation-go-graphql.yml +++ b/data/registry/instrumentation-go-graphql.yml @@ -1,17 +1,18 @@ # cSpell:ignore ziehms title: GraphQL-Go instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - graphql -repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelgraphql license: BSD-2-Clause description: Instrumentation for graphql-go GraphQL Server that records GraphQL operations using OpenTelemetry Tracing API. -authors: Benjamin Ziehms -otVersion: v1.0.0 +authors: + - name: Benjamin Ziehms +urls: + repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelgraphql +createdAt: 2021-10-25 diff --git a/data/registry/instrumentation-go-grpc-metrics.yml b/data/registry/instrumentation-go-grpc-metrics.yml index b7e2c545de69..6e2eb275384f 100644 --- a/data/registry/instrumentation-go-grpc-metrics.yml +++ b/data/registry/instrumentation-go-grpc-metrics.yml @@ -1,17 +1,18 @@ # cSpell:ignore mahboubi title: Go gRPC metric instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - grpc - metrics -repo: https://github.com/mahboubii/grpcmetrics license: Apache 2.0 description: Go metric instrumentation for gRPC servers and clients based on gRPC Stats Handler interface. -authors: Amin Mahboubi -otVersion: latest +authors: + - name: Amin Mahboubi +urls: + repo: https://github.com/mahboubii/grpcmetrics +createdAt: 2023-04-06 diff --git a/data/registry/instrumentation-go-grpc.yml b/data/registry/instrumentation-go-grpc.yml index 558b3be7effa..e36e354d934a 100644 --- a/data/registry/instrumentation-go-grpc.yml +++ b/data/registry/instrumentation-go-grpc.yml @@ -1,13 +1,14 @@ title: gRPC instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation - grpc -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/google.golang.org/grpc license: Apache 2.0 description: Go contrib plugin for Google's gRPC package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/google.golang.org/grpc +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-honeycomb.yml b/data/registry/instrumentation-go-honeycomb.yml index 44f5fa857c0e..f4b4cb134962 100644 --- a/data/registry/instrumentation-go-honeycomb.yml +++ b/data/registry/instrumentation-go-honeycomb.yml @@ -1,11 +1,13 @@ title: Honeycomb OpenTelemetry Distribution for Go registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation -repo: https://github.com/honeycombio/honeycomb-opentelemetry-go license: Apache 2.0 description: Honeycomb's distribution of OpenTelemetry for Go -authors: Honeycomb, Hound Technology, Inc +authors: + - name: Honeycomb, Hound Technology, Inc +urls: + repo: https://github.com/honeycombio/honeycomb-opentelemetry-go +createdAt: 2023-02-07 diff --git a/data/registry/instrumentation-go-host.yml b/data/registry/instrumentation-go-host.yml index d91b22975373..98c6be3ac1a0 100644 --- a/data/registry/instrumentation-go-host.yml +++ b/data/registry/instrumentation-go-host.yml @@ -1,12 +1,13 @@ title: Host Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/host license: Apache 2.0 description: Go contrib plugin for the host package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/host +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-http.yml b/data/registry/instrumentation-go-http.yml index 0992dbcb1974..fdd9f13c41ae 100644 --- a/data/registry/instrumentation-go-http.yml +++ b/data/registry/instrumentation-go-http.yml @@ -1,16 +1,17 @@ title: Go package `net/http` instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - http - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/net/http license: Apache 2.0 description: Package `http` provides a `http.Handler` and functions that are intended to be used to add tracing by wrapping existing handlers (with Handler) and routes WithRouteTag. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/net/http +createdAt: 2023-12-05 diff --git a/data/registry/instrumentation-go-kotel-franz-go.yml b/data/registry/instrumentation-go-kotel-franz-go.yml index a8b71eb5bf71..55785e5d3509 100644 --- a/data/registry/instrumentation-go-kotel-franz-go.yml +++ b/data/registry/instrumentation-go-kotel-franz-go.yml @@ -1,7 +1,6 @@ # cSpell:ignore kotel franz gerassimou title: Kotel - Instrumentation plugin for franz-go registryType: instrumentation -isThirdParty: true language: go tags: - go @@ -10,10 +9,13 @@ tags: - franz-go - tracing - metrics -repo: https://github.com/twmb/franz-go/tree/master/plugin/kotel license: BSD-3-Clause description: Kotel is an instrumentation plugin for the franz-go Kafka client. It provides tracing and metrics options. -authors: John Gerassimou -otVersion: latest +authors: + - name: John Gerassimou + email: john.gerassimou@gmail.com +urls: + repo: https://github.com/twmb/franz-go/tree/master/plugin/kotel +createdAt: 2023-02-09 diff --git a/data/registry/instrumentation-go-kubernetes-system-components.yml b/data/registry/instrumentation-go-kubernetes-system-components.yml new file mode 100644 index 000000000000..2651e68e9bec --- /dev/null +++ b/data/registry/instrumentation-go-kubernetes-system-components.yml @@ -0,0 +1,20 @@ +# cSpell:ignore beego astaxie +title: Traces For Kubernetes System Components +registryType: instrumentation +language: go +tags: + - k8s + - kubernetes + - instrumentation + - go +license: Apache 2.0 +description: + System component traces record the latency of and relationships between + operations in the Kubernetes cluster. +authors: + - name: Kubernetes Authors +urls: + docs: https://kubernetes.io/docs/concepts/cluster-administration/system-traces/ + repo: https://github.com/kubernetes/kubernetes +createdAt: 2024-01-01 +isNative: true diff --git a/data/registry/instrumentation-go-labstack.yml b/data/registry/instrumentation-go-labstack.yml index a07dbaad8ffc..95e08a33c2c7 100644 --- a/data/registry/instrumentation-go-labstack.yml +++ b/data/registry/instrumentation-go-labstack.yml @@ -1,14 +1,15 @@ # cSpell:ignore labstack title: Labstack Echo instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation - http -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/github.com/labstack/echo license: Apache 2.0 description: Go contrib plugin for the labstack/echo package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/github.com/labstack/echo +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-logrus.yml b/data/registry/instrumentation-go-logrus.yml index 2654bca6adcc..5e9465746c94 100644 --- a/data/registry/instrumentation-go-logrus.yml +++ b/data/registry/instrumentation-go-logrus.yml @@ -1,15 +1,16 @@ # cSpell:ignore logrus mihailenco title: logrus instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - logging - logrus -repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otellogrus -license: BSD 2-Clause +license: BSD-2-Clause description: Instrumentation for logrus logging library. -authors: Vladimir Mihailenco -otVersion: v1.0.0 +authors: + - name: Vladimir Mihailenco +urls: + repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otellogrus +createdAt: 2021-10-25 diff --git a/data/registry/instrumentation-go-mongodb.yml b/data/registry/instrumentation-go-mongodb.yml index 5f0037670ed8..68c178380b18 100644 --- a/data/registry/instrumentation-go-mongodb.yml +++ b/data/registry/instrumentation-go-mongodb.yml @@ -1,17 +1,18 @@ title: MongoDB database instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation - mongodb - database -repo: https://go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver license: Apache 2.0 description: Package mongo-driver provides functions to trace the go.mongodb.org/mongo-driver/mongo(https://github.com/mongodb/mongo-go-driver) package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-mux.yml b/data/registry/instrumentation-go-mux.yml index 149174749d28..4d051c7d1110 100644 --- a/data/registry/instrumentation-go-mux.yml +++ b/data/registry/instrumentation-go-mux.yml @@ -1,13 +1,14 @@ title: Gorilla Mux instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - mux - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux license: Apache 2.0 description: Package mux provides functions to trace the gorilla/mux package -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-neo4j.yml b/data/registry/instrumentation-go-neo4j.yml index ad3fdde70868..3efec54fcda9 100644 --- a/data/registry/instrumentation-go-neo4j.yml +++ b/data/registry/instrumentation-go-neo4j.yml @@ -1,14 +1,17 @@ # cSpell:ignore mennes title: Golang OpenTelemetry Neo4j Instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - golang - instrumentation - neo4j - neo4j-driver -repo: https://github.com/raito-io/neo4j-tracing license: Apache 2.0 description: Neo4j instrumentation for golang. -authors: Ruben Mennes (ruben@raito.io) +authors: + - name: Ruben Mennes + email: ruben@raito.io +urls: + repo: https://github.com/raito-io/neo4j-tracing +createdAt: 2023-05-26 diff --git a/data/registry/instrumentation-go-nhatthm-otelsql.yml b/data/registry/instrumentation-go-nhatthm-otelsql.yml index e7ec6ecfd79f..ea4d776ba963 100644 --- a/data/registry/instrumentation-go-nhatthm-otelsql.yml +++ b/data/registry/instrumentation-go-nhatthm-otelsql.yml @@ -1,17 +1,18 @@ # cSpell:ignore nhatthm otelsql title: nhatthm/otelsql -- OpenTelemetry SQL database driver wrapper for Go registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - sql -repo: https://github.com/nhatthm/otelsql license: Apache 2.0 description: Add a OpenTelemetry wrapper to your existing database code to instrument the interactions with the database. -authors: nhatthm -otVersion: v1.0.0 +authors: + - name: nhatthm +urls: + repo: https://github.com/nhatthm/otelsql +createdAt: 2022-01-27 diff --git a/data/registry/instrumentation-go-otelaws.yml b/data/registry/instrumentation-go-otelaws.yml index 130e30746a7c..e9a20cb95325 100644 --- a/data/registry/instrumentation-go-otelaws.yml +++ b/data/registry/instrumentation-go-otelaws.yml @@ -1,13 +1,14 @@ title: AWS SDK for Go registryType: instrumentation -isThirdParty: false language: go tags: - aws - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws license: Apache 2.0 description: AWS SDK V2 for Go instrumentation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-otelkit.yml b/data/registry/instrumentation-go-otelkit.yml index 543ad128a77c..e823586aeb6a 100644 --- a/data/registry/instrumentation-go-otelkit.yml +++ b/data/registry/instrumentation-go-otelkit.yml @@ -1,14 +1,15 @@ # cspell:ignore otelkit title: go-kit Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - kit - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit license: Apache 2.0 description: Package otelkit instruments the github.com/go-kit/kit package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-otellambda.yml b/data/registry/instrumentation-go-otellambda.yml index 41d28eb7b7f5..ec51e7edbf6c 100644 --- a/data/registry/instrumentation-go-otellambda.yml +++ b/data/registry/instrumentation-go-otellambda.yml @@ -1,16 +1,17 @@ # cspell:ignore otellambda title: aws-lambda-go Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - lambda - aws - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda license: Apache 2.0 description: Package otellambda instruments the github.com/aws/aws-lambda-go package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-otelmacaron.yml b/data/registry/instrumentation-go-otelmacaron.yml index 75255b8a655d..59220fa2f42c 100644 --- a/data/registry/instrumentation-go-otelmacaron.yml +++ b/data/registry/instrumentation-go-otelmacaron.yml @@ -1,14 +1,15 @@ # cSpell:ignore otelmacaron macaron gopkg title: Macaron Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - macaron - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron license: Apache 2.0 description: Package otelmacaron instruments gopkg.in/macaron.v1. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/gopkg.in/macaron.v1/otelmacaron +createdAt: 2023-12-05 diff --git a/data/registry/instrumentation-go-otelpgx.yml b/data/registry/instrumentation-go-otelpgx.yml index 4c41591eb13c..c3be2e06b2ac 100644 --- a/data/registry/instrumentation-go-otelpgx.yml +++ b/data/registry/instrumentation-go-otelpgx.yml @@ -1,7 +1,6 @@ # cSpell:ignore otelpgx jackc exaring title: otelpgx - tracing support for github.com/jackc/pgx registryType: instrumentation -isThirdParty: true language: go tags: - go @@ -9,9 +8,11 @@ tags: - database - postgresql - tracing -repo: https://github.com/exaring/otelpgx license: Apache 2.0 description: Provides OpenTelemetry tracing implementation for the pgx PostgreSQL package. -authors: Exaring AG. -otVersion: v1.8.0 +authors: + - name: Exaring AG. +urls: + repo: https://github.com/exaring/otelpgx +createdAt: 2022-09-27 diff --git a/data/registry/instrumentation-go-otelsqlx.yml b/data/registry/instrumentation-go-otelsqlx.yml index c2dd9dfe860c..92f9ccd7a95f 100644 --- a/data/registry/instrumentation-go-otelsqlx.yml +++ b/data/registry/instrumentation-go-otelsqlx.yml @@ -1,7 +1,6 @@ # cSpell:ignore jmoiron sqlx mihailenco title: jmoiron/sqlx instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go @@ -9,10 +8,12 @@ tags: - database - sql - sqlx -repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelsqlx license: BSD-2-Clause description: Instrumentation for jmoiron/sqlx that records sqlx queries and reports DBStats metrics. -authors: Vladimir Mihailenco -otVersion: v1.0.0 +authors: + - name: Vladimir Mihailenco +urls: + repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelsqlx +createdAt: 2021-10-25 diff --git a/data/registry/instrumentation-go-restful.yml b/data/registry/instrumentation-go-restful.yml index eabc943aaf94..37300f32530e 100644 --- a/data/registry/instrumentation-go-restful.yml +++ b/data/registry/instrumentation-go-restful.yml @@ -1,16 +1,17 @@ # cspell:ignore emicklei title: Go-restful Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - restful - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful license: Apache 2.0 description: Package go-restful provides functions to trace the emicklei/go-restful/v3 package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-riandyrn-go-chi-chi.yml b/data/registry/instrumentation-go-riandyrn-go-chi-chi.yml index ae3ca9a4dcee..ef5575ba0d05 100644 --- a/data/registry/instrumentation-go-riandyrn-go-chi-chi.yml +++ b/data/registry/instrumentation-go-riandyrn-go-chi-chi.yml @@ -1,15 +1,17 @@ # cSpell:ignore otelchi riandy title: otelchi --- Instrumentation for go-chi/chi registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - go-chi - chi -repo: https://github.com/riandyrn/otelchi license: Apache 2.0 description: Instrumentation for the Golang `go-chi/chi` package. -authors: Riandy R.N (riandyrn@gmail.com) -otVersion: v1.0.1 +authors: + - name: Riandy R.N + email: riandyrn@gmail.com +urls: + repo: https://github.com/riandyrn/otelchi +createdAt: 2021-10-18 diff --git a/data/registry/instrumentation-go-runtime.yml b/data/registry/instrumentation-go-runtime.yml index 5fc6443b5caf..aa5247c47612 100644 --- a/data/registry/instrumentation-go-runtime.yml +++ b/data/registry/instrumentation-go-runtime.yml @@ -1,14 +1,15 @@ title: Go runtime metrics instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - go - instrumentation - runtime - metrics -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/runtime license: Apache 2.0 description: Go contrib plugin for collecting metrics from Go runtime package -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/instrumentation/runtime +createdAt: 2020-06-08 diff --git a/data/registry/instrumentation-go-sarama.yml b/data/registry/instrumentation-go-sarama.yml index 96e42fe9eb09..e4272a8ca117 100644 --- a/data/registry/instrumentation-go-sarama.yml +++ b/data/registry/instrumentation-go-sarama.yml @@ -1,15 +1,16 @@ # cSpell:ignore sarama title: Shopify/sarama Instrumentation registryType: instrumentation -isThirdParty: false language: go tags: - sarama - instrumentation - go -repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama license: Apache 2.0 description: Package sarama provides functions to trace the Shopify/sarama package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama +createdAt: 2022-12-07 diff --git a/data/registry/instrumentation-go-splunkbuntdb.yml b/data/registry/instrumentation-go-splunkbuntdb.yml index 3922dc5dce95..80c66a4d9786 100644 --- a/data/registry/instrumentation-go-splunkbuntdb.yml +++ b/data/registry/instrumentation-go-splunkbuntdb.yml @@ -1,14 +1,15 @@ # cSpell:ignore splunkbuntdb tidwall buntdb title: splunkbuntdb -- Instrumentation for github.com/tidwall/buntdb registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - sql -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/tidwall/buntdb/splunkbuntdb license: Apache 2.0 description: Instrumentation for the `github.com/tidwall/buntdb` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/tidwall/buntdb/splunkbuntdb +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkchi.yml b/data/registry/instrumentation-go-splunkchi.yml index c25b421b807c..a24c9438e9a4 100644 --- a/data/registry/instrumentation-go-splunkchi.yml +++ b/data/registry/instrumentation-go-splunkchi.yml @@ -1,14 +1,15 @@ # cSpell:ignore splunkchi title: splunkchi -- Instrumentation for github.com/go-chi/chi registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - http -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/go-chi/chi/splunkchi license: Apache 2.0 description: Instrumentation for the `github.com/go-chi/chi` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/go-chi/chi/splunkchi +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkclient-go.yml b/data/registry/instrumentation-go-splunkclient-go.yml index 18aaf11e0082..799a8d37323d 100644 --- a/data/registry/instrumentation-go-splunkclient-go.yml +++ b/data/registry/instrumentation-go-splunkclient-go.yml @@ -1,14 +1,15 @@ # cSpell:ignore splunkclient title: splunkclient-go -- Instrumentation for k8s.io/client-go registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - kubernetes -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/k8s.io/client-go/splunkclient-go license: Apache 2.0 description: Instrumentation for the `k8s.io/client-go` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/k8s.io/client-go/splunkclient-go +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkdns.yml b/data/registry/instrumentation-go-splunkdns.yml index 6d66e286465d..7ccb68324547 100644 --- a/data/registry/instrumentation-go-splunkdns.yml +++ b/data/registry/instrumentation-go-splunkdns.yml @@ -1,14 +1,15 @@ # cSpell:ignore splunkdns miekg title: splunkdns -- Instrumentation for github.com/miekg/dns registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - dns -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/miekg/dns/splunkdns license: Apache 2.0 description: Instrumentation for the `github.com/miekg/dns` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/miekg/dns/splunkdns +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkelastic.yml b/data/registry/instrumentation-go-splunkelastic.yml index 32d61b22be4d..3d8f7a3c5748 100644 --- a/data/registry/instrumentation-go-splunkelastic.yml +++ b/data/registry/instrumentation-go-splunkelastic.yml @@ -1,15 +1,16 @@ # cSpell:ignore splunkelastic gopkg olivere title: splunkelastic -- Instrumentation for gopkg.in/olivere/elastic registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - elasticsearch -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/gopkg.in/olivere/elastic/splunkelastic license: Apache 2.0 description: Instrumentation for the `gopkg.in/olivere/elastic` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/gopkg.in/olivere/elastic/splunkelastic +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkgorm.yml b/data/registry/instrumentation-go-splunkgorm.yml index 2056cde6074c..fe6931bd8d74 100644 --- a/data/registry/instrumentation-go-splunkgorm.yml +++ b/data/registry/instrumentation-go-splunkgorm.yml @@ -1,14 +1,15 @@ # cSpell:ignore splunkgorm jinzhu gorm title: splunkgorm -- Instrumentation for github.com/jinzhu/gorm registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/jinzhu/gorm/splunkgorm license: Apache 2.0 description: Instrumentation for the `github.com/jinzhu/gorm` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/jinzhu/gorm/splunkgorm +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkgraphql.yml b/data/registry/instrumentation-go-splunkgraphql.yml index 9ce95a308a30..5c4f184a1f1b 100644 --- a/data/registry/instrumentation-go-splunkgraphql.yml +++ b/data/registry/instrumentation-go-splunkgraphql.yml @@ -1,15 +1,16 @@ # cSpell:ignore splunkgraphql title: splunkgraphql -- Instrumentation for github.com/graph-gophers/graphql-go registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - graphql -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql license: Apache 2.0 description: Instrumentation for the `github.com/graph-gophers/graphql-go` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/graph-gophers/graphql-go/splunkgraphql +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkhttp.yml b/data/registry/instrumentation-go-splunkhttp.yml index cb9954c8aeab..2b3301d9a73d 100644 --- a/data/registry/instrumentation-go-splunkhttp.yml +++ b/data/registry/instrumentation-go-splunkhttp.yml @@ -1,14 +1,15 @@ # cSpell:ignore splunkhttp title: splunkhttp -- Instrumentation for `net/http` registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - http -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/net/http/splunkhttp license: Apache 2.0 description: Splunk specific instrumentation for the Golang `net/http` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/net/http/splunkhttp +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkhttprouter.yml b/data/registry/instrumentation-go-splunkhttprouter.yml index 431ee558b40b..c4ca305f1779 100644 --- a/data/registry/instrumentation-go-splunkhttprouter.yml +++ b/data/registry/instrumentation-go-splunkhttprouter.yml @@ -2,15 +2,16 @@ title: splunkhttprouter -- Instrumentation for github.com/julienschmidt/httprouter registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - http -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/julienschmidt/httprouter/splunkhttprouter license: Apache 2.0 description: Instrumentation for the `github.com/julienschmidt/httprouter` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/julienschmidt/httprouter/splunkhttprouter +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkkafka.yml b/data/registry/instrumentation-go-splunkkafka.yml index 0f8f1b91ec9f..1a7f4c8a87bc 100644 --- a/data/registry/instrumentation-go-splunkkafka.yml +++ b/data/registry/instrumentation-go-splunkkafka.yml @@ -3,16 +3,17 @@ title: splunkkafka -- Instrumentation for github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - kafka -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka license: Apache 2.0 description: Instrumentation for the `github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/confluentinc/confluent-kafka-go/kafka/splunkkafka +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkleveldb.yml b/data/registry/instrumentation-go-splunkleveldb.yml index 8f751cb9458f..14b3bd0cf4ab 100644 --- a/data/registry/instrumentation-go-splunkleveldb.yml +++ b/data/registry/instrumentation-go-splunkleveldb.yml @@ -1,16 +1,17 @@ # cSpell:ignore splunkleveldb syndtr goleveldb leveldb title: splunkleveldb -- Instrumentation for github.com/syndtr/goleveldb/leveldb registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - leveldb -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/syndtr/goleveldb/leveldb/splunkleveldb license: Apache 2.0 description: Instrumentation for the `github.com/syndtr/goleveldb/leveldb` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/syndtr/goleveldb/leveldb/splunkleveldb +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkmysql.yml b/data/registry/instrumentation-go-splunkmysql.yml index 0a9cef8ec5c8..c07e4d4db845 100644 --- a/data/registry/instrumentation-go-splunkmysql.yml +++ b/data/registry/instrumentation-go-splunkmysql.yml @@ -1,15 +1,16 @@ # cSpell:ignore splunkmysql title: splunkmysql -- Instrumentation for the MySQL Driver Package registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - mysql -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/go-sql-driver/mysql/splunkmysql license: Apache 2.0 description: Instrumentation for the `github.com/go-sql-driver/mysql` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/go-sql-driver/mysql/splunkmysql +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkpgx.yml b/data/registry/instrumentation-go-splunkpgx.yml index 27e04b499ddc..31c55936b722 100644 --- a/data/registry/instrumentation-go-splunkpgx.yml +++ b/data/registry/instrumentation-go-splunkpgx.yml @@ -1,15 +1,16 @@ # cSpell:ignore splunkpgx jackc title: splunkpgx -- Instrumentation for github.com/jackc/pgx registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - postgresql -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/jackc/pgx/splunkpgx license: Apache 2.0 description: Instrumentation for the `github.com/jackc/pgx` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/jackc/pgx/splunkpgx +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkpq.yml b/data/registry/instrumentation-go-splunkpq.yml index 053fe20bab79..f218b4662156 100644 --- a/data/registry/instrumentation-go-splunkpq.yml +++ b/data/registry/instrumentation-go-splunkpq.yml @@ -1,15 +1,16 @@ # cSpell:ignore splunkpq title: splunkpq -- Instrumentation for github.com/lib/pq registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - postgresql -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/lib/pq/splunkpq license: Apache 2.0 description: Instrumentation for the `github.com/lib/pq` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/lib/pq/splunkpq +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunkredigo.yml b/data/registry/instrumentation-go-splunkredigo.yml index d0cf49720716..1f5e5075ca12 100644 --- a/data/registry/instrumentation-go-splunkredigo.yml +++ b/data/registry/instrumentation-go-splunkredigo.yml @@ -1,15 +1,16 @@ # cSpell:ignore redigo gomodule splunkredigo title: splunkredigo -- Instrumentation for github.com/gomodule/redigo registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - redis -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/gomodule/redigo/splunkredigo license: Apache 2.0 description: Instrumentation for the `github.com/gomodule/redigo` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/gomodule/redigo/splunkredigo +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-splunksql.yml b/data/registry/instrumentation-go-splunksql.yml index 4f03daf2efbc..202a3ff9886d 100644 --- a/data/registry/instrumentation-go-splunksql.yml +++ b/data/registry/instrumentation-go-splunksql.yml @@ -1,15 +1,16 @@ # cSpell:ignore splunksql title: splunksql -- Instrumentation for `database/sql` registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - sql -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/database/sql/splunksql license: Apache 2.0 description: Instrumentation for the Golang `database/sql` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/database/sql/splunksql +createdAt: 2021-10-12 diff --git a/data/registry/instrumentation-go-splunksqlx.yml b/data/registry/instrumentation-go-splunksqlx.yml index 778708d2e3b4..979fc42c8d12 100644 --- a/data/registry/instrumentation-go-splunksqlx.yml +++ b/data/registry/instrumentation-go-splunksqlx.yml @@ -1,14 +1,15 @@ # cSpell:ignore splunksqlx jmoiron sqlx title: splunksqlx -- Instrumentation for github.com/jmoiron/sqlx registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database -repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/jmoiron/sqlx/splunksqlx license: Apache 2.0 description: Instrumentation for the `github.com/jmoiron/sqlx` package. -authors: Splunk Inc. -otVersion: v1.3.0 +authors: + - name: Splunk Inc. +urls: + repo: https://github.com/signalfx/splunk-otel-go/tree/main/instrumentation/github.com/jmoiron/sqlx/splunksqlx +createdAt: 2022-01-20 diff --git a/data/registry/instrumentation-go-sqs.yml b/data/registry/instrumentation-go-sqs.yml index ab9f2803d777..0ae564b49c85 100644 --- a/data/registry/instrumentation-go-sqs.yml +++ b/data/registry/instrumentation-go-sqs.yml @@ -1,16 +1,18 @@ # cSpell:ignore: Everton title: OpenTelemetry Go Instrumentation for SQS registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - sqs -repo: https://github.com/udhos/opentelemetry-trace-sqs license: MIT description: opentelemetry-trace-sqs propagates OpenTelemetry tracing with SQS messages for the Go language. -authors: Everton Marques -otVersion: latest +authors: + - name: Everton Marques + email: everton.marques@gmail.com +urls: + repo: https://github.com/udhos/opentelemetry-trace-sqs +createdAt: 2023-10-25 diff --git a/data/registry/instrumentation-go-uptrace-otelsql.yml b/data/registry/instrumentation-go-uptrace-otelsql.yml index 5a07ffe7359a..eecd4173e6d5 100644 --- a/data/registry/instrumentation-go-uptrace-otelsql.yml +++ b/data/registry/instrumentation-go-uptrace-otelsql.yml @@ -1,17 +1,18 @@ # cSpell:ignore Mihailenco title: SQL instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - sql -repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelsql license: BSD-2-Clause description: Instrumentation for SQL that records queries (including transactions and statements) and reports DBStats metrics. -authors: Vladimir Mihailenco -otVersion: v1.0.0 +authors: + - name: Vladimir Mihailenco +urls: + repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelsql +createdAt: 2021-10-25 diff --git a/data/registry/instrumentation-go-xsam-database-sql.yml b/data/registry/instrumentation-go-xsam-database-sql.yml index 6d3cf5796897..79c8887fdd0f 100644 --- a/data/registry/instrumentation-go-xsam-database-sql.yml +++ b/data/registry/instrumentation-go-xsam-database-sql.yml @@ -1,15 +1,21 @@ # cSpell:ignore otelsql xsam title: otelsql -- Instrumentation for `database/sql` registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - database - sql -repo: https://github.com/XSAM/otelsql license: Apache 2.0 description: Instrumentation for the Golang `database/sql` package. -authors: Sam Xie (XSAM) -otVersion: v1.0.0 +authors: + - name: Sam Xie + url: https://github.com/XSAM +package: + name: github.com/XSAM/otelsql + registry: go + version: v0.27.0 +urls: + repo: https://github.com/XSAM/otelsql +createdAt: 2021-10-12 diff --git a/data/registry/instrumentation-go-zap.yml b/data/registry/instrumentation-go-zap.yml index ed1d8578a51b..6bcfa08e27c3 100644 --- a/data/registry/instrumentation-go-zap.yml +++ b/data/registry/instrumentation-go-zap.yml @@ -1,15 +1,16 @@ # cSpell:ignore Mihailenco title: Zap instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation - logging - zap -repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelzap license: BSD-2-Clause description: Instrumentation for Zap logging library. -authors: Vladimir Mihailenco -otVersion: v1.0.0 +authors: + - name: Vladimir Mihailenco +urls: + repo: https://github.com/uptrace/opentelemetry-go-extra/tree/main/otelzap +createdAt: 2021-10-25 diff --git a/data/registry/instrumentation-java-akka-actor-fork-join.yml b/data/registry/instrumentation-java-akka-actor-fork-join.yml index 42f65bd96fe0..1378cc2658ba 100644 --- a/data/registry/instrumentation-java-akka-actor-fork-join.yml +++ b/data/registry/instrumentation-java-akka-actor-fork-join.yml @@ -1,16 +1,17 @@ # cSpell:ignore akka title: Akka Actor Fork Join Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation - akka -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/akka/akka-actor-fork-join-2.5/ license: Apache 2.0 description: This library provides a Akka Actor Fork Join instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/akka/akka-actor-fork-join-2.5/ +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-akka-actor.yml b/data/registry/instrumentation-java-akka-actor.yml index 825c284f152b..1e0d62362543 100644 --- a/data/registry/instrumentation-java-akka-actor.yml +++ b/data/registry/instrumentation-java-akka-actor.yml @@ -1,16 +1,17 @@ # cSpell:ignore akka title: Akka Actor Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation - akka -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/akka/akka-actor-2.3/ license: Apache 2.0 description: This library provides a Akka Actor instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/akka/akka-actor-2.3/ +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-akka-http.yml b/data/registry/instrumentation-java-akka-http.yml index ff5d4ddb7677..144a7226f0ac 100644 --- a/data/registry/instrumentation-java-akka-http.yml +++ b/data/registry/instrumentation-java-akka-http.yml @@ -1,16 +1,17 @@ # cSpell:ignore akka title: Akka HTTP Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation - akka -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/akka/akka-http-10.0/javaagent license: Apache 2.0 description: This library provides a Akka HTTP instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/akka/akka-http-10.0/javaagent +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-annotations.yml b/data/registry/instrumentation-java-annotations.yml index ed2b79c5721c..cb2fe1a8330d 100644 --- a/data/registry/instrumentation-java-annotations.yml +++ b/data/registry/instrumentation-java-annotations.yml @@ -1,13 +1,14 @@ title: Settings for the OpenTelemetry Instrumentation Annotations integration registryType: instrumentation -isThirdParty: false language: java tags: - annotations - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opentelemetry-instrumentation-annotations-1.16 license: Apache 2.0 description: undefined -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opentelemetry-instrumentation-annotations-1.16 +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-apache-httpasyncclient.yml b/data/registry/instrumentation-java-apache-httpasyncclient.yml index 06514ceb9347..947959866c01 100644 --- a/data/registry/instrumentation-java-apache-httpasyncclient.yml +++ b/data/registry/instrumentation-java-apache-httpasyncclient.yml @@ -1,14 +1,15 @@ title: Apache HTTP Async Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-httpasyncclient-4.1 license: Apache 2.0 description: This library provides a Apache HTTP Async Client instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-httpasyncclient-4.1 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-apache-httpclient.yml b/data/registry/instrumentation-java-apache-httpclient.yml index 64cfd15b338b..3834e110d385 100644 --- a/data/registry/instrumentation-java-apache-httpclient.yml +++ b/data/registry/instrumentation-java-apache-httpclient.yml @@ -1,14 +1,15 @@ title: Apache HTTP Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-httpclient license: Apache 2.0 description: This library provides a Apache HTTP Client instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-httpclient +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-apachedbcp.yml b/data/registry/instrumentation-java-apachedbcp.yml index 8a3789cf575e..b0229c850daa 100644 --- a/data/registry/instrumentation-java-apachedbcp.yml +++ b/data/registry/instrumentation-java-apachedbcp.yml @@ -1,15 +1,16 @@ # cSpell:ignore dbcp title: Apache DBCP Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - apache - dbcp - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-dbcp-2.0 license: Apache 2.0 description: This package provides an instrumentation library for Apache DBCP -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-dbcp-2.0 +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-apachedubbo.yml b/data/registry/instrumentation-java-apachedubbo.yml index e800e34767f7..fd30bd640c25 100644 --- a/data/registry/instrumentation-java-apachedubbo.yml +++ b/data/registry/instrumentation-java-apachedubbo.yml @@ -1,15 +1,16 @@ # cSpell:ignore dubbo title: Apache Dubbo Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - apache - dubbo - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-dubbo-2.7 license: Apache 2.0 description: This package provides an instrumentation library for Apache Dubbo -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/apache-dubbo-2.7 +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-armeria.yml b/data/registry/instrumentation-java-armeria.yml index e35b0a0042e2..98102bf4b303 100644 --- a/data/registry/instrumentation-java-armeria.yml +++ b/data/registry/instrumentation-java-armeria.yml @@ -1,15 +1,16 @@ # cSpell:ignore Armeria title: Armeria Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/armeria-1.3 license: Apache 2.0 description: This library provides a Armeria instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/armeria-1.3 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-asynchttpclient.yml b/data/registry/instrumentation-java-asynchttpclient.yml index 4f5bffb102d1..9d77dec4ecf1 100644 --- a/data/registry/instrumentation-java-asynchttpclient.yml +++ b/data/registry/instrumentation-java-asynchttpclient.yml @@ -1,6 +1,5 @@ title: Async HTTP Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - async @@ -8,9 +7,11 @@ tags: - client - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/async-http-client license: Apache 2.0 description: This package provides an instrumentation library for Async HTTP Client -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/async-http-client +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-aws-lambda.yml b/data/registry/instrumentation-java-aws-lambda.yml index 64fbcbb6146c..70cc5d22d087 100644 --- a/data/registry/instrumentation-java-aws-lambda.yml +++ b/data/registry/instrumentation-java-aws-lambda.yml @@ -1,14 +1,15 @@ title: AWS Lambda Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/aws-lambda license: Apache 2.0 description: This library provides a AWS Lambda instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/aws-lambda +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-aws-sdk.yml b/data/registry/instrumentation-java-aws-sdk.yml index f4494f5a5a94..b7c8815b8b17 100644 --- a/data/registry/instrumentation-java-aws-sdk.yml +++ b/data/registry/instrumentation-java-aws-sdk.yml @@ -1,14 +1,15 @@ title: AWS SDK Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/aws-sdk license: Apache 2.0 description: This library provides a AWS SDK instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/aws-sdk +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-azure-sdk.yml b/data/registry/instrumentation-java-azure-sdk.yml index d9d4d09ee56f..6a94fc2129f1 100644 --- a/data/registry/instrumentation-java-azure-sdk.yml +++ b/data/registry/instrumentation-java-azure-sdk.yml @@ -1,14 +1,15 @@ title: Azure SDK Instrumentation registryType: instrumentation -isThirdParty: true language: java tags: - java - instrumentation - azure-sdk - azure -repo: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/core/azure-core-tracing-opentelemetry -license: MIT License +license: MIT description: Instrumentation for Azure SDK for Java (Track 2 libraries). -authors: Microsoft Authors -otVersion: 1.0.0 +authors: + - name: Microsoft Authors +urls: + repo: https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/core/azure-core-tracing-opentelemetry +createdAt: 2021-12-16 diff --git a/data/registry/instrumentation-java-azurecore.yml b/data/registry/instrumentation-java-azurecore.yml index 2d844b0273f0..45c8c2743d3e 100644 --- a/data/registry/instrumentation-java-azurecore.yml +++ b/data/registry/instrumentation-java-azurecore.yml @@ -1,16 +1,17 @@ title: Azure Core Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - azure - core - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/azure-core license: Apache 2.0 description: This package provides an instrumentation library for Azure Core Instrumentation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/azure-core +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-c3p0.yml b/data/registry/instrumentation-java-c3p0.yml index 1085a41dd7cd..8808a928c914 100644 --- a/data/registry/instrumentation-java-c3p0.yml +++ b/data/registry/instrumentation-java-c3p0.yml @@ -1,13 +1,14 @@ title: c3p0 Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - c3p0 - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/c3p0-0.9 license: Apache 2.0 description: This package provides an instrumentation library for c3p0 -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/c3p0-0.9 +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-camel.yml b/data/registry/instrumentation-java-camel.yml index b74dd947e031..ec1128244117 100644 --- a/data/registry/instrumentation-java-camel.yml +++ b/data/registry/instrumentation-java-camel.yml @@ -1,15 +1,16 @@ title: Apache Camel Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - camel - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/camel-2.20 license: Apache 2.0 description: This library provides an Apache Camel instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/camel-2.20 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-cassandra.yml b/data/registry/instrumentation-java-cassandra.yml index fcae416d30fc..67120b087f34 100644 --- a/data/registry/instrumentation-java-cassandra.yml +++ b/data/registry/instrumentation-java-cassandra.yml @@ -1,14 +1,15 @@ title: Cassandra Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/cassandra license: Apache 2.0 description: This library provides a Cassandra instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/cassandra +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-concurrent.yml b/data/registry/instrumentation-java-concurrent.yml index 36fcf118a8cb..c509ade99411 100644 --- a/data/registry/instrumentation-java-concurrent.yml +++ b/data/registry/instrumentation-java-concurrent.yml @@ -1,14 +1,15 @@ title: Concurrent Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/executors license: Apache 2.0 description: This library provides a concurrent instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/executors +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-couchbase.yml b/data/registry/instrumentation-java-couchbase.yml index e778f9e32e9a..5e5d92d3bfae 100644 --- a/data/registry/instrumentation-java-couchbase.yml +++ b/data/registry/instrumentation-java-couchbase.yml @@ -1,16 +1,17 @@ # cSpell:ignore couchbase title: Couchbase Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - couchbase - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/couchbase license: Apache 2.0 description: This library provides a Couchbase instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/couchbase +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-dropwizard.yml b/data/registry/instrumentation-java-dropwizard.yml index 1c31fd379ddf..eed4f4c8a7bd 100644 --- a/data/registry/instrumentation-java-dropwizard.yml +++ b/data/registry/instrumentation-java-dropwizard.yml @@ -1,14 +1,15 @@ # cSpell:ignore dropwizard title: Dropwizard Instrumentation Library registryType: instrumentation -isThirdParty: false language: java tags: - dropwizard - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/dropwizard license: Apache 2.0 description: This library provides Dropwizard instrumentation. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/dropwizard +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-elasticsearch.yml b/data/registry/instrumentation-java-elasticsearch.yml index 36e29fe8a983..cc6a9c9698f7 100644 --- a/data/registry/instrumentation-java-elasticsearch.yml +++ b/data/registry/instrumentation-java-elasticsearch.yml @@ -1,14 +1,15 @@ title: Elasticsearch Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/elasticsearch license: Apache 2.0 description: This library provides a Elasticsearch instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/elasticsearch +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-executors.yml b/data/registry/instrumentation-java-executors.yml index 7c1253a116e2..43b4bf4f420d 100644 --- a/data/registry/instrumentation-java-executors.yml +++ b/data/registry/instrumentation-java-executors.yml @@ -1,13 +1,14 @@ title: Executors Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - executors - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/executors license: Apache 2.0 description: This package provides Executors Instrumentation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/executors +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-extensionkotlin.yml b/data/registry/instrumentation-java-extensionkotlin.yml index 90723d497dd1..ff14fa551407 100644 --- a/data/registry/instrumentation-java-extensionkotlin.yml +++ b/data/registry/instrumentation-java-extensionkotlin.yml @@ -1,14 +1,15 @@ title: Extension Kotlin registryType: instrumentation -isThirdParty: false language: java tags: - extension - kotlin - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opentelemetry-extension-kotlin-1.0 license: Apache 2.0 description: Instrumentation for opentelemetry-extension-kotlin -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opentelemetry-extension-kotlin-1.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-finatra.yml b/data/registry/instrumentation-java-finatra.yml index 481b0c5466c2..a85b1744eec7 100644 --- a/data/registry/instrumentation-java-finatra.yml +++ b/data/registry/instrumentation-java-finatra.yml @@ -1,15 +1,16 @@ # cSpell:ignore finatra title: Finatra Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/finatra-2.9 license: Apache 2.0 description: This library provides a Finatra instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/finatra-2.9 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-geode.yml b/data/registry/instrumentation-java-geode.yml index af37537c18f3..12116ecf8b53 100644 --- a/data/registry/instrumentation-java-geode.yml +++ b/data/registry/instrumentation-java-geode.yml @@ -1,14 +1,15 @@ title: Geode Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/geode-1.4 license: Apache 2.0 description: This library provides a Geode instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/geode-1.4 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-google-http-client.yml b/data/registry/instrumentation-java-google-http-client.yml index e3d02c6ce5a7..ff9e344736aa 100644 --- a/data/registry/instrumentation-java-google-http-client.yml +++ b/data/registry/instrumentation-java-google-http-client.yml @@ -1,14 +1,15 @@ title: Google HTTP Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/google-http-client-1.19 license: Apache 2.0 description: This library provides a Google HTTP Client instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/google-http-client-1.19 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-grails.yml b/data/registry/instrumentation-java-grails.yml index 56b8deec9152..e8eb8ce1b5d1 100644 --- a/data/registry/instrumentation-java-grails.yml +++ b/data/registry/instrumentation-java-grails.yml @@ -1,13 +1,14 @@ title: Grails Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - grails - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/grails-3.0 license: Apache 2.0 description: This package provides an instrumentation library for Grails -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/grails-3.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-graphqljava.yml b/data/registry/instrumentation-java-graphqljava.yml index 3942e344c0a3..c9f6ebee5103 100644 --- a/data/registry/instrumentation-java-graphqljava.yml +++ b/data/registry/instrumentation-java-graphqljava.yml @@ -1,13 +1,14 @@ title: GraphQL Java Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - graphql - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/graphql-java-12.0 license: Apache 2.0 description: This package provides an instrumentation library for GraphQL Java -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/graphql-java-12.0 +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-grizzly.yml b/data/registry/instrumentation-java-grizzly.yml index ba511423f350..3c3f09af4651 100644 --- a/data/registry/instrumentation-java-grizzly.yml +++ b/data/registry/instrumentation-java-grizzly.yml @@ -1,14 +1,15 @@ title: Grizzly Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/grizzly-2.3 license: Apache 2.0 description: This library provides a Grizzly instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/grizzly-2.3 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-grpc.yml b/data/registry/instrumentation-java-grpc.yml index 7aa6854e8bd7..5f714bdddce1 100644 --- a/data/registry/instrumentation-java-grpc.yml +++ b/data/registry/instrumentation-java-grpc.yml @@ -1,14 +1,15 @@ title: gRPC Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/grpc-1.6 license: Apache 2.0 description: This library provides a gRPC instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/grpc-1.6 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-guava.yml b/data/registry/instrumentation-java-guava.yml index 7fbf0154b4e0..236826fbb7a2 100644 --- a/data/registry/instrumentation-java-guava.yml +++ b/data/registry/instrumentation-java-guava.yml @@ -1,14 +1,15 @@ title: Guava Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/guava-10.0 license: Apache 2.0 description: This library provides a Guava instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/guava-10.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-gwt.yml b/data/registry/instrumentation-java-gwt.yml index 943d07278c2a..b1c22b22f5d0 100644 --- a/data/registry/instrumentation-java-gwt.yml +++ b/data/registry/instrumentation-java-gwt.yml @@ -1,13 +1,14 @@ title: GWT Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - gwt2.0 - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/gwt-2.0 license: Apache 2.0 description: This package provides an instrumentation library for GWT -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/gwt-2.0 +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-hibernate.yml b/data/registry/instrumentation-java-hibernate.yml index 085a8bdc7cca..536c82014275 100644 --- a/data/registry/instrumentation-java-hibernate.yml +++ b/data/registry/instrumentation-java-hibernate.yml @@ -1,14 +1,15 @@ title: Hibernate Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/hibernate license: Apache 2.0 description: This library provides a Hibernate instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/hibernate +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-hikaricp.yml b/data/registry/instrumentation-java-hikaricp.yml index 36dd255207be..c544f6309afb 100644 --- a/data/registry/instrumentation-java-hikaricp.yml +++ b/data/registry/instrumentation-java-hikaricp.yml @@ -1,14 +1,15 @@ # cSpell:ignore hikaricp title: Hikaricp Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - hikaricp - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/hikaricp-3.0 license: Apache 2.0 description: This package provides an instrumentation library for Hikaricp -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/hikaricp-3.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-honeycomb.yml b/data/registry/instrumentation-java-honeycomb.yml index 979520f4d1b8..55cbe03ae29f 100644 --- a/data/registry/instrumentation-java-honeycomb.yml +++ b/data/registry/instrumentation-java-honeycomb.yml @@ -1,11 +1,13 @@ title: Honeycomb OpenTelemetry Distribution for Java registryType: instrumentation -isThirdParty: true language: java tags: - java - instrumentation -repo: https://github.com/honeycombio/honeycomb-opentelemetry-java license: Apache 2.0 description: Honeycomb's distribution of OpenTelemetry for Java -authors: Honeycomb, Hound Technology, Inc +authors: + - name: Honeycomb, Hound Technology, Inc +urls: + repo: https://github.com/honeycombio/honeycomb-opentelemetry-java +createdAt: 2021-09-24 diff --git a/data/registry/instrumentation-java-http-url-connection.yml b/data/registry/instrumentation-java-http-url-connection.yml index 5c412a9d30f3..40d526ca1bed 100644 --- a/data/registry/instrumentation-java-http-url-connection.yml +++ b/data/registry/instrumentation-java-http-url-connection.yml @@ -1,14 +1,15 @@ title: HTTP URL Connection Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/http-url-connection license: Apache 2.0 description: This library provides a HTTP URL Connection instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/http-url-connection +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-http4k.yml b/data/registry/instrumentation-java-http4k.yml index f0d2afade818..3ceb7f03cc61 100644 --- a/data/registry/instrumentation-java-http4k.yml +++ b/data/registry/instrumentation-java-http4k.yml @@ -1,14 +1,15 @@ title: http4k Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/http4k/http4k/tree/master/http4k-opentelemetry license: Apache 2.0 description: This library provides http4k instrumentation to track HTTP requests through OpenTelemetry. -authors: http4k Authors -otVersion: latest +authors: + - name: http4k Authors +urls: + repo: https://github.com/http4k/http4k/tree/master/http4k-opentelemetry +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-hystrix.yml b/data/registry/instrumentation-java-hystrix.yml index 5a84c4bed564..679ab8cc5d88 100644 --- a/data/registry/instrumentation-java-hystrix.yml +++ b/data/registry/instrumentation-java-hystrix.yml @@ -1,15 +1,16 @@ # cSpell:ignore hystrix title: Hystrix Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/hystrix-1.4 license: Apache 2.0 description: This library provides a Hystrix instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/hystrix-1.4 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-javahttpclient.yml b/data/registry/instrumentation-java-javahttpclient.yml index c14ef2ace8c6..46d871695aae 100644 --- a/data/registry/instrumentation-java-javahttpclient.yml +++ b/data/registry/instrumentation-java-javahttpclient.yml @@ -1,14 +1,15 @@ title: Java HTTP Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/java-http-client license: Apache 2.0 description: This library provides a HTTP instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/java-http-client +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-javautillogging.yml b/data/registry/instrumentation-java-javautillogging.yml index d04e18b24509..925fdc58d1bf 100644 --- a/data/registry/instrumentation-java-javautillogging.yml +++ b/data/registry/instrumentation-java-javautillogging.yml @@ -1,15 +1,16 @@ title: Java Util Logging Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - util - logging - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/java-util-logging license: Apache 2.0 description: This package provides an instrumentation library for Java Util Logging -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/java-util-logging +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-jax-ws.yml b/data/registry/instrumentation-java-jax-ws.yml index e03d0757a338..502f804dbdea 100644 --- a/data/registry/instrumentation-java-jax-ws.yml +++ b/data/registry/instrumentation-java-jax-ws.yml @@ -1,15 +1,16 @@ title: JAX-WS Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jaxws license: Apache 2.0 description: This library provides a JAX-WS instrumentation to trace requests through OpenTelemetry. It includes support for jws as well as axis2, cxf, and metro libraries. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jaxws +createdAt: 2021-04-06 diff --git a/data/registry/instrumentation-java-jaxrs-client.yml b/data/registry/instrumentation-java-jaxrs-client.yml index 5df9a1b0cf39..3b7f2db8ff78 100644 --- a/data/registry/instrumentation-java-jaxrs-client.yml +++ b/data/registry/instrumentation-java-jaxrs-client.yml @@ -1,15 +1,16 @@ # cSpell:ignore jaxrs title: JAXRS Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jaxrs-client license: Apache 2.0 description: This library provides a JAXRS Client instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jaxrs-client +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-jaxrs.yml b/data/registry/instrumentation-java-jaxrs.yml index 0975f0074803..b9c84d0d47b7 100644 --- a/data/registry/instrumentation-java-jaxrs.yml +++ b/data/registry/instrumentation-java-jaxrs.yml @@ -1,15 +1,16 @@ # cSpell:ignore jaxrs title: JAXRS Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jaxrs license: Apache 2.0 description: This library provides a JAXRS instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jaxrs +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-jbosslogmanager.yml b/data/registry/instrumentation-java-jbosslogmanager.yml index 9d8eaf626492..16b6cd6b6eb6 100644 --- a/data/registry/instrumentation-java-jbosslogmanager.yml +++ b/data/registry/instrumentation-java-jbosslogmanager.yml @@ -1,16 +1,17 @@ # cSpell:ignore logmanager title: JBoss Log Manager Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - jboss - logmanager - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jboss-logmanager license: Apache 2.0 description: This package provides an instrumentation library for JBoss Log Manager -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jboss-logmanager +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-jdbc.yml b/data/registry/instrumentation-java-jdbc.yml index fd34e5693a97..3ff86d76a17e 100644 --- a/data/registry/instrumentation-java-jdbc.yml +++ b/data/registry/instrumentation-java-jdbc.yml @@ -1,14 +1,15 @@ title: JDBC Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jdbc license: Apache 2.0 description: This library provides a JDBC instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jdbc +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-jedis.yml b/data/registry/instrumentation-java-jedis.yml index 03517f058bcc..7f3fef67636e 100644 --- a/data/registry/instrumentation-java-jedis.yml +++ b/data/registry/instrumentation-java-jedis.yml @@ -1,15 +1,16 @@ # cSpell:ignore jedis title: Jedis Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jedis license: Apache 2.0 description: This library provides a Jedis instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jedis +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-jetty.yml b/data/registry/instrumentation-java-jetty.yml index e9c6e4999ff4..f358fa5f1998 100644 --- a/data/registry/instrumentation-java-jetty.yml +++ b/data/registry/instrumentation-java-jetty.yml @@ -1,14 +1,15 @@ title: Jetty Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jetty license: Apache 2.0 description: This library provides a Jetty instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jetty +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-jettyhttpclient.yml b/data/registry/instrumentation-java-jettyhttpclient.yml index 546c55e9884d..45f46d24df37 100644 --- a/data/registry/instrumentation-java-jettyhttpclient.yml +++ b/data/registry/instrumentation-java-jettyhttpclient.yml @@ -1,6 +1,5 @@ title: Jetty HTTP Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - jetty @@ -8,9 +7,11 @@ tags: - client - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jetty-httpclient license: Apache 2.0 description: This package provides an instrumentation library for Jetty HTTP Client -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jetty-httpclient +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-jms.yml b/data/registry/instrumentation-java-jms.yml index 57e0bc7bf8a8..024ce85620e2 100644 --- a/data/registry/instrumentation-java-jms.yml +++ b/data/registry/instrumentation-java-jms.yml @@ -1,14 +1,15 @@ title: JMS Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jms license: Apache 2.0 description: This library provides a JMS instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jms +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-jmxmetrics.yml b/data/registry/instrumentation-java-jmxmetrics.yml index 25e00e35e9ab..a87bbc5dba14 100644 --- a/data/registry/instrumentation-java-jmxmetrics.yml +++ b/data/registry/instrumentation-java-jmxmetrics.yml @@ -1,15 +1,16 @@ title: JMX Metric Insight registryType: instrumentation -isThirdParty: false language: java tags: - jmx - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jmx-metrics license: Apache 2.0 description: This subsystem of the OpenTelemetry Java agent provides a framework for collecting and reporting JMX metrics within the instrumented application. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jmx-metrics +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-joddhttp.yml b/data/registry/instrumentation-java-joddhttp.yml index e9af7d7da0f8..bfc0bdacbbcf 100644 --- a/data/registry/instrumentation-java-joddhttp.yml +++ b/data/registry/instrumentation-java-joddhttp.yml @@ -1,17 +1,18 @@ # cSpell:ignore jodd title: Jodd HTTP Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - jodd - http - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jodd-http-4.2 license: Apache 2.0 description: This library provides a Jodd HTTP instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jodd-http-4.2 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-jsf.yml b/data/registry/instrumentation-java-jsf.yml index 01b065f7b294..97d8acc94f03 100644 --- a/data/registry/instrumentation-java-jsf.yml +++ b/data/registry/instrumentation-java-jsf.yml @@ -1,13 +1,14 @@ title: JSF Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - jsf - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jsf license: Apache 2.0 description: This package provides an instrumentation library for JSF -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jsf +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-jsp.yml b/data/registry/instrumentation-java-jsp.yml index 9a4d481cde8e..8f693531f7cd 100644 --- a/data/registry/instrumentation-java-jsp.yml +++ b/data/registry/instrumentation-java-jsp.yml @@ -1,14 +1,15 @@ title: JSP Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jsp-2.3 license: Apache 2.0 description: This library provides a JSP instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/jsp-2.3 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-kafka-clients.yml b/data/registry/instrumentation-java-kafka-clients.yml index 57fcafb66bc3..3b1d9acde268 100644 --- a/data/registry/instrumentation-java-kafka-clients.yml +++ b/data/registry/instrumentation-java-kafka-clients.yml @@ -1,14 +1,15 @@ title: Kafka Clients Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kafka/kafka-clients license: Apache 2.0 description: This library provides a Kafka Clients instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kafka/kafka-clients +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-kafka-streams.yml b/data/registry/instrumentation-java-kafka-streams.yml index 71bcbfb3e690..bff12eae2f18 100644 --- a/data/registry/instrumentation-java-kafka-streams.yml +++ b/data/registry/instrumentation-java-kafka-streams.yml @@ -1,14 +1,15 @@ title: Kafka Streams Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kafka/kafka-streams-0.11/ license: Apache 2.0 description: This library provides a Kafka Streams instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kafka/kafka-streams-0.11/ +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-kotlinx-coroutines.yml b/data/registry/instrumentation-java-kotlinx-coroutines.yml index 628842b5fe74..9b900b800114 100644 --- a/data/registry/instrumentation-java-kotlinx-coroutines.yml +++ b/data/registry/instrumentation-java-kotlinx-coroutines.yml @@ -1,14 +1,15 @@ title: Kotlin Coroutines Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kotlinx-coroutines license: Apache 2.0 description: This library provides a Kotlin Coroutines instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kotlinx-coroutines +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-ktor.yml b/data/registry/instrumentation-java-ktor.yml index 2326015f18a4..b571d3d8d3c3 100644 --- a/data/registry/instrumentation-java-ktor.yml +++ b/data/registry/instrumentation-java-ktor.yml @@ -1,14 +1,15 @@ # cSpell:ignore ktor title: Ktor Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - ktor - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/ktor license: Apache 2.0 description: This package provides an instrumentation library for Ktor -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/ktor +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-kubernetes-client.yml b/data/registry/instrumentation-java-kubernetes-client.yml index c15b106b391f..0ca0ab9ea324 100644 --- a/data/registry/instrumentation-java-kubernetes-client.yml +++ b/data/registry/instrumentation-java-kubernetes-client.yml @@ -1,14 +1,15 @@ title: Kubernetes Client Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kubernetes-client-7.0 license: Apache 2.0 description: This library provides a Kubernetes Client instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/kubernetes-client-7.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-lettuce.yml b/data/registry/instrumentation-java-lettuce.yml index 0812ec8f4df5..92f23934414c 100644 --- a/data/registry/instrumentation-java-lettuce.yml +++ b/data/registry/instrumentation-java-lettuce.yml @@ -1,14 +1,15 @@ title: Lettuce Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/lettuce license: Apache 2.0 description: This library provides a Lettuce instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/lettuce +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-liberty.yml b/data/registry/instrumentation-java-liberty.yml index 404c70ce99c3..c280eeaf08e9 100644 --- a/data/registry/instrumentation-java-liberty.yml +++ b/data/registry/instrumentation-java-liberty.yml @@ -1,13 +1,14 @@ title: Liberty Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - liberty - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/liberty license: Apache 2.0 description: This package provides an instrumentation library for Liberty -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/liberty +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-log4j.yml b/data/registry/instrumentation-java-log4j.yml index 8950eabdeb01..ebe7acc05aba 100644 --- a/data/registry/instrumentation-java-log4j.yml +++ b/data/registry/instrumentation-java-log4j.yml @@ -1,14 +1,15 @@ title: Log4J Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/log4j license: Apache 2.0 description: This library provides a Log4J instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/log4j +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-logback.yml b/data/registry/instrumentation-java-logback.yml index d009e5952ae4..918498b4b2b7 100644 --- a/data/registry/instrumentation-java-logback.yml +++ b/data/registry/instrumentation-java-logback.yml @@ -1,16 +1,17 @@ # cSpell:ignore logback title: Logback Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation - logback -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/logback/ license: Apache 2.0 description: This library provides a Logback instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/logback/ +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-micrometer.yml b/data/registry/instrumentation-java-micrometer.yml index 9ea89c19fc5c..cc3211963f20 100644 --- a/data/registry/instrumentation-java-micrometer.yml +++ b/data/registry/instrumentation-java-micrometer.yml @@ -1,13 +1,14 @@ title: Micrometer Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - micrometer - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/micrometer license: Apache 2.0 description: This package provides an instrumentation library for Micrometer -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/micrometer +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-mongo.yml b/data/registry/instrumentation-java-mongo.yml index b01db512ac3b..0095ba00721f 100644 --- a/data/registry/instrumentation-java-mongo.yml +++ b/data/registry/instrumentation-java-mongo.yml @@ -1,14 +1,15 @@ title: Mongo Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/mongo license: Apache 2.0 description: This library provides a Mongo instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/mongo +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-netty.yml b/data/registry/instrumentation-java-netty.yml index e01e2a8854b9..872d6327da8d 100644 --- a/data/registry/instrumentation-java-netty.yml +++ b/data/registry/instrumentation-java-netty.yml @@ -1,14 +1,15 @@ title: Netty Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/netty license: Apache 2.0 description: This library provides a Netty instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/netty +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-okhttp.yml b/data/registry/instrumentation-java-okhttp.yml index c4a4d6975b1d..028067208d42 100644 --- a/data/registry/instrumentation-java-okhttp.yml +++ b/data/registry/instrumentation-java-okhttp.yml @@ -1,14 +1,15 @@ title: okHTTP Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/okhttp license: Apache 2.0 description: This library provides a okHTTP instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/okhttp +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-opencensusshim.yml b/data/registry/instrumentation-java-opencensusshim.yml index 31c7a3b22055..8638771b9319 100644 --- a/data/registry/instrumentation-java-opencensusshim.yml +++ b/data/registry/instrumentation-java-opencensusshim.yml @@ -1,14 +1,15 @@ title: OpenCensus Shim registryType: instrumentation -isThirdParty: false language: java tags: - opencensus - shim - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opencensus-shim license: Apache 2.0 description: This library provides an instrumentation shim for OpenCensus -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opencensus-shim +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-opensearch.yml b/data/registry/instrumentation-java-opensearch.yml index 124dc0a4444b..8d4d6f81ae3f 100644 --- a/data/registry/instrumentation-java-opensearch.yml +++ b/data/registry/instrumentation-java-opensearch.yml @@ -1,13 +1,14 @@ title: Settings for the OpenSearch instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - opensearch - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opensearch license: Apache 2.0 description: This package provides an instrumentation library for OpenSearch -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/opensearch +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-oracleucp.yml b/data/registry/instrumentation-java-oracleucp.yml index ae09d23edeb6..6403bfef5711 100644 --- a/data/registry/instrumentation-java-oracleucp.yml +++ b/data/registry/instrumentation-java-oracleucp.yml @@ -1,14 +1,15 @@ title: Oracle UCP Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - oracle - ucp - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/oracle-ucp-11.2 license: Apache 2.0 description: This package provides an instrumentation library for Oracle UCP -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/oracle-ucp-11.2 +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-oshi.yml b/data/registry/instrumentation-java-oshi.yml index f93bc8e36d6c..ccadd52c7b16 100644 --- a/data/registry/instrumentation-java-oshi.yml +++ b/data/registry/instrumentation-java-oshi.yml @@ -1,14 +1,15 @@ # cSpell:ignore oshi title: Oshi Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - oshi - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/oshi license: Apache 2.0 description: This package provides an instrumentation library for Oshi -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/oshi +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-payara.yml b/data/registry/instrumentation-java-payara.yml index c2d34d7fcb9e..ed57188ef58b 100644 --- a/data/registry/instrumentation-java-payara.yml +++ b/data/registry/instrumentation-java-payara.yml @@ -1,14 +1,15 @@ # cSpell:ignore payara title: payara registryType: instrumentation -isThirdParty: false language: java tags: - payara - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/payara license: Apache 2.0 description: This library provides a Payara instrumentation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/payara +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-pekkoactor.yml b/data/registry/instrumentation-java-pekkoactor.yml index ab4ef6e1fd3b..7aa78b1df249 100644 --- a/data/registry/instrumentation-java-pekkoactor.yml +++ b/data/registry/instrumentation-java-pekkoactor.yml @@ -1,15 +1,16 @@ # cSpell:ignore pekko title: Apache Pekko Actor Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - pekko - actor - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/pekko-actor-1.0 license: Apache 2.0 description: This library provides an Apache Pekko Actor instrumentation. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/pekko-actor-1.0 +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-pekkohttp.yml b/data/registry/instrumentation-java-pekkohttp.yml index 75d447090a1b..ada654c7b6e2 100644 --- a/data/registry/instrumentation-java-pekkohttp.yml +++ b/data/registry/instrumentation-java-pekkohttp.yml @@ -1,15 +1,16 @@ # cSpell:ignore pekko title: Apache Pekko HTTP registryType: instrumentation -isThirdParty: false language: java tags: - pekko - http - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/pekko-http-1.0 license: Apache 2.0 description: This library provides an Apache Pekko HTTP instrumentation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/pekko-http-1.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-play.yml b/data/registry/instrumentation-java-play.yml index e01c9ad04bb4..f2de93a20b9d 100644 --- a/data/registry/instrumentation-java-play.yml +++ b/data/registry/instrumentation-java-play.yml @@ -1,14 +1,15 @@ title: Play Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/play license: Apache 2.0 description: This library provides a Play instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/play +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-pulsar.yml b/data/registry/instrumentation-java-pulsar.yml index d2d4aba384f4..b4195bebfc48 100644 --- a/data/registry/instrumentation-java-pulsar.yml +++ b/data/registry/instrumentation-java-pulsar.yml @@ -1,13 +1,14 @@ title: Apache Pulsar instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - pulsar - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/pulsar license: Apache 2.0 description: This library provides an Apache Pulsar instrumentation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/pulsar +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-quarkusresteasyreactive.yml b/data/registry/instrumentation-java-quarkusresteasyreactive.yml index 249a1c516527..ab47c7469d97 100644 --- a/data/registry/instrumentation-java-quarkusresteasyreactive.yml +++ b/data/registry/instrumentation-java-quarkusresteasyreactive.yml @@ -1,7 +1,6 @@ # cSpell:ignore resteasy title: Quarkus RESTeasy Reactive Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - quarkus @@ -9,8 +8,10 @@ tags: - reactive - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/quarkus-resteasy-reactive license: Apache 2.0 description: This library provides instrumentation for Quarkus RESTEasy Reactive -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/quarkus-resteasy-reactive +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-quartz.yml b/data/registry/instrumentation-java-quartz.yml index 7ebf9d4e5ac7..e5f96a6075d0 100644 --- a/data/registry/instrumentation-java-quartz.yml +++ b/data/registry/instrumentation-java-quartz.yml @@ -1,13 +1,14 @@ title: Quartz Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - quartz - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/quartz-2.0 license: Apache 2.0 description: This package provides an instrumentation library for Quartz -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/quartz-2.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-r2dbc.yml b/data/registry/instrumentation-java-r2dbc.yml index 51aca535d8bc..0ce5187ee5ca 100644 --- a/data/registry/instrumentation-java-r2dbc.yml +++ b/data/registry/instrumentation-java-r2dbc.yml @@ -1,13 +1,14 @@ title: Instrumentation for R2dbc registryType: instrumentation -isThirdParty: false language: java tags: - r2dbc - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/r2dbc-1.0 license: Apache 2.0 description: Provides OpenTelemetry instrumentation for R2dbc. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/r2dbc-1.0 +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-java-rabbitmq.yml b/data/registry/instrumentation-java-rabbitmq.yml index c4918a90b191..9b29ae1a9c02 100644 --- a/data/registry/instrumentation-java-rabbitmq.yml +++ b/data/registry/instrumentation-java-rabbitmq.yml @@ -1,14 +1,15 @@ title: RabbitMQ Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rabbitmq-2.7 license: Apache 2.0 description: This library provides a RabbitMQ instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rabbitmq-2.7 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-ratpack.yml b/data/registry/instrumentation-java-ratpack.yml index 1943eaaf02dc..1d17559f337f 100644 --- a/data/registry/instrumentation-java-ratpack.yml +++ b/data/registry/instrumentation-java-ratpack.yml @@ -1,15 +1,16 @@ # cSpell:ignore ratpack title: Ratpack Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/ratpack license: Apache 2.0 description: This library provides a Ratpack instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/ratpack +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-reactor.yml b/data/registry/instrumentation-java-reactor.yml index 76acec8ebe55..7b0356afeadc 100644 --- a/data/registry/instrumentation-java-reactor.yml +++ b/data/registry/instrumentation-java-reactor.yml @@ -1,14 +1,15 @@ title: Reactor Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/reactor license: Apache 2.0 description: This library provides a Reactor instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/reactor +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-rediscala.yml b/data/registry/instrumentation-java-rediscala.yml index 282a4cf3034b..1bca6fae555f 100644 --- a/data/registry/instrumentation-java-rediscala.yml +++ b/data/registry/instrumentation-java-rediscala.yml @@ -1,15 +1,16 @@ # cSpell:ignore rediscala title: Rediscala Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rediscala-1.8 license: Apache 2.0 description: This library provides a Rediscala instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rediscala-1.8 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-redisson.yml b/data/registry/instrumentation-java-redisson.yml index 205c3d771e8c..a1a1dad86003 100644 --- a/data/registry/instrumentation-java-redisson.yml +++ b/data/registry/instrumentation-java-redisson.yml @@ -1,15 +1,16 @@ # cSpell:ignore redisson title: Redisson Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/redisson license: Apache 2.0 description: This library provides a Redisson instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/redisson +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-restlet.yml b/data/registry/instrumentation-java-restlet.yml index 2fb8a761d301..3be00c5e3a9c 100644 --- a/data/registry/instrumentation-java-restlet.yml +++ b/data/registry/instrumentation-java-restlet.yml @@ -1,14 +1,15 @@ # cSpell:ignore restlet title: Restlet Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - restlet - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/restlet license: Apache 2.0 description: This package provides an instrumentation library for Restlet -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/restlet +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-rmi.yml b/data/registry/instrumentation-java-rmi.yml index 7c193713f541..89b97ce1f15e 100644 --- a/data/registry/instrumentation-java-rmi.yml +++ b/data/registry/instrumentation-java-rmi.yml @@ -1,14 +1,15 @@ title: RMI Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rmi license: Apache 2.0 description: This library provides a RMI instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rmi +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-rocketmq.yml b/data/registry/instrumentation-java-rocketmq.yml index 948a3fbe20d2..ef2d4a4df2df 100644 --- a/data/registry/instrumentation-java-rocketmq.yml +++ b/data/registry/instrumentation-java-rocketmq.yml @@ -1,14 +1,15 @@ # cSpell:ignore rocketmq title: RocketMQ Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - rocketmq - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rocketmq license: Apache 2.0 description: This package provides an instrumentation library for RocketMQ -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rocketmq +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-runtimetelemetry.yml b/data/registry/instrumentation-java-runtimetelemetry.yml index 2f26001dc885..982a69c80f5c 100644 --- a/data/registry/instrumentation-java-runtimetelemetry.yml +++ b/data/registry/instrumentation-java-runtimetelemetry.yml @@ -1,15 +1,17 @@ title: runtimetelemetry registryType: instrumentation -isThirdParty: false language: java tags: - runtimetelemetry - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/runtime-telemetry license: Apache 2.0 description: This package provides an instrumentation library for Runtime Telemetry -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors # cSpell:ignore runtimetelemetry + +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/runtime-telemetry +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-rxjava.yml b/data/registry/instrumentation-java-rxjava.yml index 710d8937b051..ddc410edce00 100644 --- a/data/registry/instrumentation-java-rxjava.yml +++ b/data/registry/instrumentation-java-rxjava.yml @@ -1,14 +1,15 @@ title: RXJava Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rxjava license: Apache 2.0 description: This library provides a RXJava instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/rxjava +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-scala-fork-join.yml b/data/registry/instrumentation-java-scala-fork-join.yml index 2b2bc4aff970..1d86a76cd349 100644 --- a/data/registry/instrumentation-java-scala-fork-join.yml +++ b/data/registry/instrumentation-java-scala-fork-join.yml @@ -1,14 +1,15 @@ title: Scala Concurrent Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/scala-fork-join-2.8 license: Apache 2.0 description: This library provides a Scala Concurrent instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/scala-fork-join-2.8 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-servlet.yml b/data/registry/instrumentation-java-servlet.yml index 651681433de2..47e3fb1ff0fe 100644 --- a/data/registry/instrumentation-java-servlet.yml +++ b/data/registry/instrumentation-java-servlet.yml @@ -1,14 +1,15 @@ title: Servlet Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/servlet license: Apache 2.0 description: This library provides a Servlet instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/servlet +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-spark.yml b/data/registry/instrumentation-java-spark.yml index 9ac4182c360a..e35514e13047 100644 --- a/data/registry/instrumentation-java-spark.yml +++ b/data/registry/instrumentation-java-spark.yml @@ -1,14 +1,15 @@ title: Spark Web Framework Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spark-2.3 license: Apache 2.0 description: This library provides a Spark Web Framework instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spark-2.3 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-spring.yml b/data/registry/instrumentation-java-spring.yml index 63d8dd9120b9..46bd1c91c982 100644 --- a/data/registry/instrumentation-java-spring.yml +++ b/data/registry/instrumentation-java-spring.yml @@ -1,14 +1,15 @@ title: Spring Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spring license: Apache 2.0 description: This library provides a Spring instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spring +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-spymemcached.yml b/data/registry/instrumentation-java-spymemcached.yml index 6be4e60aa5d3..ee1bb34f42f7 100644 --- a/data/registry/instrumentation-java-spymemcached.yml +++ b/data/registry/instrumentation-java-spymemcached.yml @@ -1,15 +1,16 @@ # cSpell:ignore spymemcached title: Spymemcached Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spymemcached-2.12 license: Apache 2.0 description: This library provides a Spymemcached instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/spymemcached-2.12 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-struts.yml b/data/registry/instrumentation-java-struts.yml index 647c47539f33..f6d027379241 100644 --- a/data/registry/instrumentation-java-struts.yml +++ b/data/registry/instrumentation-java-struts.yml @@ -1,13 +1,14 @@ title: Struts Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - struts - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/struts-2.3 license: Apache 2.0 description: This package provides an instrumentation library for Struts -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/struts-2.3 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-tapestry.yml b/data/registry/instrumentation-java-tapestry.yml index 8e70d1b12000..9ec8ce8ea8eb 100644 --- a/data/registry/instrumentation-java-tapestry.yml +++ b/data/registry/instrumentation-java-tapestry.yml @@ -1,13 +1,14 @@ title: Tapestry Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - tapestry - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/tapestry-5.4 license: Apache 2.0 description: This package provides an instrumentation library for Tapestry -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/tapestry-5.4 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-tomcat.yml b/data/registry/instrumentation-java-tomcat.yml index 6d9340f763d9..0120d7b2f84b 100644 --- a/data/registry/instrumentation-java-tomcat.yml +++ b/data/registry/instrumentation-java-tomcat.yml @@ -1,13 +1,14 @@ title: Instrumentation for Tomcat request handlers registryType: instrumentation -isThirdParty: false language: java tags: - tomcat - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/tomcat license: Apache 2.0 description: This package provides an instrumentation library for Tomcat -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/tomcat +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-java-twilio.yml b/data/registry/instrumentation-java-twilio.yml index de86d33e52d9..2aae3bb0538d 100644 --- a/data/registry/instrumentation-java-twilio.yml +++ b/data/registry/instrumentation-java-twilio.yml @@ -1,14 +1,15 @@ title: Twilio Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/twilio-6.6 license: Apache 2.0 description: This library provides a Twilio instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/twilio-6.6 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-undertow.yml b/data/registry/instrumentation-java-undertow.yml index c7090b9f5f0d..e957552fa8cb 100644 --- a/data/registry/instrumentation-java-undertow.yml +++ b/data/registry/instrumentation-java-undertow.yml @@ -1,13 +1,14 @@ title: Undertow Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - undertow - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/undertow-1.4 license: Apache 2.0 description: This package provides an instrumentation library for Undertow -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/undertow-1.4 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-vaadin.yml b/data/registry/instrumentation-java-vaadin.yml index 642a677d6182..41b2afa29564 100644 --- a/data/registry/instrumentation-java-vaadin.yml +++ b/data/registry/instrumentation-java-vaadin.yml @@ -1,14 +1,15 @@ # cSpell:ignore vaadin title: Vaadin Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - vaadin - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vaadin-14.2 license: Apache 2.0 description: This package provides an instrumentation library for Vaadin -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vaadin-14.2 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-vertx-reactive.yml b/data/registry/instrumentation-java-vertx-reactive.yml index 808ab0194644..129e28d31f6d 100644 --- a/data/registry/instrumentation-java-vertx-reactive.yml +++ b/data/registry/instrumentation-java-vertx-reactive.yml @@ -1,14 +1,15 @@ title: Vert.x Reactive Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vertx/vertx-rx-java-3.5/ license: Apache 2.0 description: This library provides a Vert.x Reactive instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vertx/vertx-rx-java-3.5/ +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-vertx.yml b/data/registry/instrumentation-java-vertx.yml index 29e3f479a3f4..5fabcb4c06eb 100644 --- a/data/registry/instrumentation-java-vertx.yml +++ b/data/registry/instrumentation-java-vertx.yml @@ -1,15 +1,16 @@ title: Vert.x Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation - vert.x -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vertx license: Apache 2.0 description: This library provides a Vert.x instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vertx +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-viburdbcp.yml b/data/registry/instrumentation-java-viburdbcp.yml index 0e79f8273717..78f4fa47e1a2 100644 --- a/data/registry/instrumentation-java-viburdbcp.yml +++ b/data/registry/instrumentation-java-viburdbcp.yml @@ -1,14 +1,15 @@ # cSpell:ignore viburdbcp title: Viburdbcp Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - viburdbcp - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vibur-dbcp-11.0 license: Apache 2.0 description: This package provides an instrumentation library for Viburdbcp -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/vibur-dbcp-11.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-wicket.yml b/data/registry/instrumentation-java-wicket.yml index 0d94b027e2c2..1f11ff7578e1 100644 --- a/data/registry/instrumentation-java-wicket.yml +++ b/data/registry/instrumentation-java-wicket.yml @@ -1,13 +1,14 @@ title: Wicket Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - wicket - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/wicket-8.0 license: Apache 2.0 description: This package provides an instrumentation library for Wicket -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/wicket-8.0 +createdAt: 2020-11-05 diff --git a/data/registry/instrumentation-java-zio.yml b/data/registry/instrumentation-java-zio.yml index 8565482e57d6..c45b7bae87c3 100644 --- a/data/registry/instrumentation-java-zio.yml +++ b/data/registry/instrumentation-java-zio.yml @@ -1,13 +1,14 @@ title: zio registryType: instrumentation -isThirdParty: false language: java tags: - zio - instrumentation - java -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/zio license: Apache 2.0 description: This package provides an instrumentation library for ZIO -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/zio +createdAt: 2020-03-25 diff --git a/data/registry/instrumentation-js-amqplib.yml b/data/registry/instrumentation-js-amqplib.yml index 09767e68f857..b721eb20c710 100644 --- a/data/registry/instrumentation-js-amqplib.yml +++ b/data/registry/instrumentation-js-amqplib.yml @@ -1,14 +1,20 @@ # cSpell:ignore amqplib title: OpenTelemetry amqplib Instrumentation (RabbitMQ) registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - instrumentation - amqplib - RabbitMQ -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-amqplib license: Apache 2.0 description: amqplib instrumentation for Node.js. -authors: OpenTelemetry Authors (donated by Aspecto Authors (amir@aspecto.io)) +authors: + - name: OpenTelemetry Authors +package: + name: '@opentelemetry/instrumentation-amqplib' + registry: npm + version: 0.33.5 +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-angular.yml b/data/registry/instrumentation-js-angular.yml index 4bd9a5de3270..51de911b38f7 100644 --- a/data/registry/instrumentation-js-angular.yml +++ b/data/registry/instrumentation-js-angular.yml @@ -1,14 +1,21 @@ +# cSpell:ignore jufab title: OpenTelemetry Angular Interceptor registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - Angular - typescript - browser -repo: https://github.com/jufab/opentelemetry-angular-interceptor license: Apache 2.0 description: Angular library to deploy OpenTelemetry in Angular application. -authors: Julien Fabre (julien.fabre.33@gmail.com) -otVersion: latest +authors: + - name: Julien Fabre + email: julien.fabre.33@gmail.com +urls: + repo: https://github.com/jufab/opentelemetry-angular-interceptor +createdAt: 2020-06-30 +package: + name: '@jufab/opentelemetry-angular-interceptor' + registry: npm + version: 1.7.0 diff --git a/data/registry/instrumentation-js-autotelic-fastify.yml b/data/registry/instrumentation-js-autotelic-fastify.yml index f2f615e5655d..ee1ab876cd6a 100644 --- a/data/registry/instrumentation-js-autotelic-fastify.yml +++ b/data/registry/instrumentation-js-autotelic-fastify.yml @@ -1,15 +1,21 @@ -# cSpell:ignore fastify +# cSpell:ignore fastify autotelic title: Fastify OpenTelemetry registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - fastify - fastify-plugin -repo: https://github.com/autotelic/fastify-opentelemetry license: MIT description: Fastify OpenTelemetry API integration, using the Fastify plugin spec. -authors: Holden Whitehead (holden@autotelic.com) -otVersion: latest +authors: + - name: Holden Whitehead + email: holden@autotelic.com +urls: + repo: https://github.com/autotelic/fastify-opentelemetry +createdAt: 2020-08-28 +package: + name: '@autotelic/fastify-opentelemetry' + registry: npm + version: 0.18.0 diff --git a/data/registry/instrumentation-js-aws-lambda.yml b/data/registry/instrumentation-js-aws-lambda.yml index 86aa2f2b2899..e9f305de515f 100644 --- a/data/registry/instrumentation-js-aws-lambda.yml +++ b/data/registry/instrumentation-js-aws-lambda.yml @@ -1,12 +1,18 @@ title: OpenTelemetry AWS Lambda Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - lambda - aws -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-aws-lambda license: Apache 2.0 description: AWS Lambda instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-aws-lambda +createdAt: 2021-07-08 +package: + name: '@opentelemetry/instrumentation-aws-lambda' + registry: npm + version: 0.37.4 diff --git a/data/registry/instrumentation-js-aws-sdk.yml b/data/registry/instrumentation-js-aws-sdk.yml index 53af0b8db637..1aac23fcfa91 100644 --- a/data/registry/instrumentation-js-aws-sdk.yml +++ b/data/registry/instrumentation-js-aws-sdk.yml @@ -1,13 +1,20 @@ title: OpenTelemetry aws-sdk Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - instrumentation - aws-sdk - aws -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-aws-sdk license: Apache 2.0 description: aws-sdk instrumentation for Node.js. -authors: Aspecto Authors (amir@aspecto.io) +authors: + - name: Aspecto Authors + email: amir@aspecto.io +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-aws-sdk +createdAt: 2020-06-15 +package: + name: '@opentelemetry/instrumentation-aws-sdk' + registry: npm + version: 0.37.2 diff --git a/data/registry/instrumentation-js-azure-sdk.yml b/data/registry/instrumentation-js-azure-sdk.yml index 6815e055fcfc..c3c4395983f2 100644 --- a/data/registry/instrumentation-js-azure-sdk.yml +++ b/data/registry/instrumentation-js-azure-sdk.yml @@ -1,6 +1,5 @@ title: Azure SDK Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - javascript @@ -9,8 +8,10 @@ tags: - instrumentation - azure-sdk - azure -repo: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core#open-telemetry -license: MIT License +license: MIT description: Instrumentation for Azure SDK for JavaScript (Track 2 libraries). -authors: Microsoft Authors -otVersion: 1.0.0 +authors: + - name: Microsoft Authors +urls: + repo: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core#open-telemetry +createdAt: 2021-12-16 diff --git a/data/registry/instrumentation-js-bullmq.yml b/data/registry/instrumentation-js-bullmq.yml index 12cc5bd41bf8..6bd3e6fdc1d1 100644 --- a/data/registry/instrumentation-js-bullmq.yml +++ b/data/registry/instrumentation-js-bullmq.yml @@ -1,14 +1,20 @@ -# cSpell:ignore bullmq +# cSpell:ignore bullmq jenniferplusplus title: BullMQ Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - js - instrumentation - bullmq -repo: https://github.com/jenniferplusplus/opentelemetry-instrumentation-bullmq license: Apache 2.0 description: Auto instrumentation for the BullMQ message system -authors: Jennifer Moore (contact@jenniferplusplus.com) -otVersion: 1.0+ +authors: + - name: Jennifer Moore + email: contact@jenniferplusplus.com +urls: + repo: https://github.com/jenniferplusplus/opentelemetry-instrumentation-bullmq +createdAt: 2023-01-27 +package: + name: '@jenniferplusplus/opentelemetry-instrumentation-bullmq' + registry: npm + version: 0.5.0 diff --git a/data/registry/instrumentation-js-bunyan.yml b/data/registry/instrumentation-js-bunyan.yml index 3bb95d641cae..02dca1220c27 100644 --- a/data/registry/instrumentation-js-bunyan.yml +++ b/data/registry/instrumentation-js-bunyan.yml @@ -1,14 +1,19 @@ # cSpell:ignore bunyan title: OpenTelemetry Instrumentation for bunyan registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - bunyan - logging -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-bunyan license: Apache 2.0 description: Instrumentation library for Bunyan. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-bunyan +createdAt: 2021-07-08 +package: + name: '@opentelemetry/instrumentation-bunyan' + registry: npm + version: 0.34.1 diff --git a/data/registry/instrumentation-js-cassandra-driver.yml b/data/registry/instrumentation-js-cassandra-driver.yml index cf7b99745712..7e1e81b373bc 100644 --- a/data/registry/instrumentation-js-cassandra-driver.yml +++ b/data/registry/instrumentation-js-cassandra-driver.yml @@ -1,14 +1,19 @@ title: OpenTelemetry Instrumentation for cassandra-driver registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - cassandra - cassandra-driver - database -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-cassandra license: Apache 2.0 description: Instrumentation library for Cassandra driver. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-cassandra +createdAt: 2021-07-08 +package: + name: '@opentelemetry/instrumentation-cassandra-driver' + registry: npm + version: 0.34.2 diff --git a/data/registry/instrumentation-js-cassandra.yml b/data/registry/instrumentation-js-cassandra.yml index 3f5ccd1c151f..7f1e3a05a2e2 100644 --- a/data/registry/instrumentation-js-cassandra.yml +++ b/data/registry/instrumentation-js-cassandra.yml @@ -1,15 +1,20 @@ title: OpenTelemetry instrumentation for cassandra-driver registryType: instrumentation -isThirdParty: false language: js tags: - cassandra - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-cassandra license: Apache 2.0 description: This module provides an instrumentation library for the injection of trace context to cassandra-driver. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-cassandra +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-cassandra-driver' + version: 0.34.2 diff --git a/data/registry/instrumentation-js-cerbos.yml b/data/registry/instrumentation-js-cerbos.yml index 308f335e434b..b2ad1139055b 100644 --- a/data/registry/instrumentation-js-cerbos.yml +++ b/data/registry/instrumentation-js-cerbos.yml @@ -6,9 +6,17 @@ tags: - js - cerbos - instrumentation -repo: https://github.com/cerbos/cerbos-sdk-javascript/ license: Apache 2.0 description: OpenTelemetry instrumentation for the [Cerbos JavaScript SDK](https://github.com/cerbos/cerbos-sdk-javascript/) -authors: Cerbos Authors +authors: + - name: Cerbos Authors +urls: + repo: https://github.com/cerbos/cerbos-sdk-javascript/ +createdAt: 2023-09-13 +package: + name: '@cerbos/opentelemetry' + registry: npm + version: 0.4.2 +isFirstParty: true diff --git a/data/registry/instrumentation-js-connect.yml b/data/registry/instrumentation-js-connect.yml index 2696fe7bced2..ff5e300398a5 100644 --- a/data/registry/instrumentation-js-connect.yml +++ b/data/registry/instrumentation-js-connect.yml @@ -1,11 +1,17 @@ title: Connect Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-connect license: Apache 2.0 description: Connect instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-connect +createdAt: 2020-11-09 +package: + name: '@opentelemetry/instrumentation-connect' + registry: npm + version: 0.32.4 diff --git a/data/registry/instrumentation-js-cucumber.yml b/data/registry/instrumentation-js-cucumber.yml index b892d880b0a0..599258f1f3d9 100644 --- a/data/registry/instrumentation-js-cucumber.yml +++ b/data/registry/instrumentation-js-cucumber.yml @@ -1,15 +1,20 @@ title: OpenTelemetry Cucumber Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - cucumber - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-cucumber license: Apache 2.0 description: This module provides automatic instrumentation for the `@cucumber/cucumber` bundle. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-cucumber +createdAt: 2022-10-27 +package: + registry: npm + name: '@opentelemetry/instrumentation-cucumber' + version: 0.2.1 diff --git a/data/registry/instrumentation-js-dataloader.yml b/data/registry/instrumentation-js-dataloader.yml index 0ef5235e17cf..6ffdacac0207 100644 --- a/data/registry/instrumentation-js-dataloader.yml +++ b/data/registry/instrumentation-js-dataloader.yml @@ -1,14 +1,18 @@ title: OpenTelemetry instrumentation for dataloader registryType: instrumentation -isThirdParty: false language: js tags: - dataloader - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-dataloader license: Apache 2.0 description: This module provides an instrumentation library for the injection of trace context to dataloader -otVersion: latest +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-dataloader +createdAt: 2022-10-27 +package: + registry: npm + name: '@opentelemetry/instrumentation-dataloader' + version: 0.5.4 diff --git a/data/registry/instrumentation-js-dns.yml b/data/registry/instrumentation-js-dns.yml index c5c4494dd83a..97663baa5e8f 100644 --- a/data/registry/instrumentation-js-dns.yml +++ b/data/registry/instrumentation-js-dns.yml @@ -1,11 +1,17 @@ title: DNS Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-dns license: Apache 2.0 description: DNS instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-dns +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-dns' + version: 0.32.5 diff --git a/data/registry/instrumentation-js-document-load.yml b/data/registry/instrumentation-js-document-load.yml index fd3577ede488..3f431d5450a6 100644 --- a/data/registry/instrumentation-js-document-load.yml +++ b/data/registry/instrumentation-js-document-load.yml @@ -1,11 +1,17 @@ title: Document Load Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-instrumentation-document-load license: Apache 2.0 description: Document Load instrumentation for Browser. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-instrumentation-document-load +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-document-load' + version: 0.34.1 diff --git a/data/registry/instrumentation-js-elasticsearch.yml b/data/registry/instrumentation-js-elasticsearch.yml index aa1c25e4438d..15641f7f0f6d 100644 --- a/data/registry/instrumentation-js-elasticsearch.yml +++ b/data/registry/instrumentation-js-elasticsearch.yml @@ -1,13 +1,16 @@ title: OpenTelemetry Elasticsearch Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - instrumentation - elasticsearch - '@elastic/elasticsearch' -repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-elasticsearch license: Apache 2.0 description: Elasticsearch instrumentation for Node.js. -authors: Aspecto Authors (yaniv@aspecto.io) +authors: + - name: Aspecto Authors + email: yaniv@aspecto.io +urls: + repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-elasticsearch +createdAt: 2021-03-05 diff --git a/data/registry/instrumentation-js-express.yml b/data/registry/instrumentation-js-express.yml index 9e60b6809902..b5b95eed1b78 100644 --- a/data/registry/instrumentation-js-express.yml +++ b/data/registry/instrumentation-js-express.yml @@ -1,11 +1,17 @@ title: Express Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-express license: Apache 2.0 description: Express instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-express +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-express' + version: 0.34.1 diff --git a/data/registry/instrumentation-js-fastify.yml b/data/registry/instrumentation-js-fastify.yml index d61bcfe26efe..93d4464646ed 100644 --- a/data/registry/instrumentation-js-fastify.yml +++ b/data/registry/instrumentation-js-fastify.yml @@ -1,13 +1,18 @@ # cSpell:ignore fastify title: Fastify OpenTelemetry registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - fastify -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-fastify license: Apache 2.0 description: OpenTelemetry fastify automatic instrumentation package -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-fastify +createdAt: 2020-08-28 +package: + registry: npm + name: '@opentelemetry/instrumentation-fastify' + version: 0.32.6 diff --git a/data/registry/instrumentation-js-fetch.yml b/data/registry/instrumentation-js-fetch.yml index be0ea9665ee0..d4000e5fc21a 100644 --- a/data/registry/instrumentation-js-fetch.yml +++ b/data/registry/instrumentation-js-fetch.yml @@ -4,7 +4,10 @@ language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-fetch license: Apache 2.0 description: Fetch instrumentation for browsers. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-fetch +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-js-fs.yml b/data/registry/instrumentation-js-fs.yml index 3ad57acc23b2..5ab4fb94f735 100644 --- a/data/registry/instrumentation-js-fs.yml +++ b/data/registry/instrumentation-js-fs.yml @@ -1,13 +1,18 @@ title: OpenTelemetry fs Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - fs - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-fs license: Apache 2.0 description: This module provides an instrumentation library for fs. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-fs +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-fs' + version: 0.8.4 diff --git a/data/registry/instrumentation-js-generic-pool.yml b/data/registry/instrumentation-js-generic-pool.yml index 8ecbe1784068..b09cb9977134 100644 --- a/data/registry/instrumentation-js-generic-pool.yml +++ b/data/registry/instrumentation-js-generic-pool.yml @@ -1,13 +1,19 @@ title: OpenTelemetry Generic Pool Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation - generic-pool - pooling -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-generic-pool license: Apache 2.0 description: generic-pool instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-generic-pool +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-generic-pool' + version: 0.32.5 diff --git a/data/registry/instrumentation-js-graphql.yml b/data/registry/instrumentation-js-graphql.yml index f93de47b9899..3d9d11706a21 100644 --- a/data/registry/instrumentation-js-graphql.yml +++ b/data/registry/instrumentation-js-graphql.yml @@ -1,11 +1,17 @@ title: GraphQL Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-graphql license: Apache 2.0 description: GraphQL instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-graphql +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-graphql' + version: 0.36.1 diff --git a/data/registry/instrumentation-js-grpc.yml b/data/registry/instrumentation-js-grpc.yml index 1c6410643799..20a593de828c 100644 --- a/data/registry/instrumentation-js-grpc.yml +++ b/data/registry/instrumentation-js-grpc.yml @@ -4,7 +4,10 @@ language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-grpc license: Apache 2.0 description: gRPC and gRPC.js instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-grpc +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-js-hapi.yml b/data/registry/instrumentation-js-hapi.yml index 8cc2f8cc6bdb..4eaf24a4ede3 100644 --- a/data/registry/instrumentation-js-hapi.yml +++ b/data/registry/instrumentation-js-hapi.yml @@ -1,12 +1,18 @@ # cSpell:ignore hapi title: Hapi Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-hapi license: Apache 2.0 description: Hapi instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-hapi +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-hapi' + version: 0.33.3 diff --git a/data/registry/instrumentation-js-http.yml b/data/registry/instrumentation-js-http.yml index 14e016e29630..c57caad262be 100644 --- a/data/registry/instrumentation-js-http.yml +++ b/data/registry/instrumentation-js-http.yml @@ -4,7 +4,10 @@ language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-http license: Apache 2.0 description: HTTP and HTTPS instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-http +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-js-ioredis.yml b/data/registry/instrumentation-js-ioredis.yml index 9cc186928c6c..50633ed5bb98 100644 --- a/data/registry/instrumentation-js-ioredis.yml +++ b/data/registry/instrumentation-js-ioredis.yml @@ -1,11 +1,18 @@ +# cSpell:ignore ioredis title: ioRedis Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-ioredis license: Apache 2.0 description: ioRedis instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-ioredis +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-ioredis' + version: 0.36.1 diff --git a/data/registry/instrumentation-js-kafkajs.yml b/data/registry/instrumentation-js-kafkajs.yml index 277ff155a22a..e499fcd51e33 100644 --- a/data/registry/instrumentation-js-kafkajs.yml +++ b/data/registry/instrumentation-js-kafkajs.yml @@ -1,14 +1,17 @@ # cSpell:ignore kafkajs title: OpenTelemetry kafkajs Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - instrumentation - kafkajs - kafka -repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-kafkajs license: Apache 2.0 description: kafkajs instrumentation for Node.js. -authors: Amir Blum (amir@aspecto.io) +authors: + - name: Amir Blum + email: amir@aspecto.io +urls: + repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-kafkajs +createdAt: 2020-06-15 diff --git a/data/registry/instrumentation-js-knex.yml b/data/registry/instrumentation-js-knex.yml index 71b90922067b..2b85b789d436 100644 --- a/data/registry/instrumentation-js-knex.yml +++ b/data/registry/instrumentation-js-knex.yml @@ -1,15 +1,20 @@ # cSpell:ignore knex title: OpenTelemetry Instrumentation for knex registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - knex - orm - database -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-knex license: Apache 2.0 description: Instrumentation library for Knex. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-knex +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-knex' + version: 0.32.4 diff --git a/data/registry/instrumentation-js-koa.yml b/data/registry/instrumentation-js-koa.yml index e4ada9fad2c9..728daaf04202 100644 --- a/data/registry/instrumentation-js-koa.yml +++ b/data/registry/instrumentation-js-koa.yml @@ -1,11 +1,17 @@ title: Koa Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-koa license: Apache 2.0 description: Koa instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-koa +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-koa' + version: 0.36.4 diff --git a/data/registry/instrumentation-js-long-task.yml b/data/registry/instrumentation-js-long-task.yml index f5b4c94a28a9..95520e5bac19 100644 --- a/data/registry/instrumentation-js-long-task.yml +++ b/data/registry/instrumentation-js-long-task.yml @@ -1,12 +1,17 @@ title: OpenTelemetry Instrumentation Long Task for the Web registryType: instrumentation -isThirdParty: false language: js tags: - web - long task -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-instrumentation-long-task license: Apache 2.0 description: Instrumentation library for net module. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-instrumentation-long-task +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-long-task' + version: 0.34.1 diff --git a/data/registry/instrumentation-js-lru-memoizer.yml b/data/registry/instrumentation-js-lru-memoizer.yml index fe9e5d2bb78f..907717da5be7 100644 --- a/data/registry/instrumentation-js-lru-memoizer.yml +++ b/data/registry/instrumentation-js-lru-memoizer.yml @@ -1,14 +1,20 @@ +# cSpell:ignore memoizer title: OpenTelemetry lru-memorizer Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - lru-memorizer - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-lru-memoizer license: Apache 2.0 description: This module provides an instrumentation library for the lru-memorizer. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-lru-memoizer +createdAt: 2022-10-27 +package: + registry: npm + name: '@opentelemetry/instrumentation-lru-memoizer' + version: 0.33.5 diff --git a/data/registry/instrumentation-js-memcached.yml b/data/registry/instrumentation-js-memcached.yml index a79a70f819c6..dccbd19cd077 100644 --- a/data/registry/instrumentation-js-memcached.yml +++ b/data/registry/instrumentation-js-memcached.yml @@ -1,13 +1,18 @@ title: OpenTelemetry Instrumentation for memcached registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - memcached - database -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-memcached license: Apache 2.0 description: Instrumentation library for memcached. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-memcached +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-memcached' + version: 0.32.5 diff --git a/data/registry/instrumentation-js-mongodb.yml b/data/registry/instrumentation-js-mongodb.yml index 4404cf2545f9..ffe649464aa1 100644 --- a/data/registry/instrumentation-js-mongodb.yml +++ b/data/registry/instrumentation-js-mongodb.yml @@ -1,11 +1,17 @@ title: MongoDB Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-mongodb license: Apache 2.0 description: MongoDB instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-mongodb +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-mongodb' + version: 0.38.1 diff --git a/data/registry/instrumentation-js-mongoose-instrumentation.yml b/data/registry/instrumentation-js-mongoose-instrumentation.yml index 87fae0cf8fa5..3ff84bdcaf30 100644 --- a/data/registry/instrumentation-js-mongoose-instrumentation.yml +++ b/data/registry/instrumentation-js-mongoose-instrumentation.yml @@ -1,13 +1,19 @@ title: OpenTelemetry Mongoose Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - instrumentation - Mongoose - MongoDB -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-mongoose license: MIT description: Mongoose instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-mongoose +createdAt: 2021-02-17 +package: + registry: npm + name: '@opentelemetry/instrumentation-mongoose' + version: 0.34.0 diff --git a/data/registry/instrumentation-js-mongoose.yml b/data/registry/instrumentation-js-mongoose.yml index 9bb46678931d..fdd54e129338 100644 --- a/data/registry/instrumentation-js-mongoose.yml +++ b/data/registry/instrumentation-js-mongoose.yml @@ -1,14 +1,16 @@ title: OpenTelemetry Mongoose Plugin registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - plugin - Mongoose - MongoDB -repo: https://github.com/wdalmut/opentelemetry-plugin-mongoose license: MIT description: Mongoose Plugin for Node.js. -authors: Walter Dal Mut (walter.dalmut@gmail.com) -otVersion: latest +authors: + - name: Walter Dal Mut + email: walter.dalmut@gmail.com +urls: + repo: https://github.com/wdalmut/opentelemetry-plugin-mongoose +createdAt: 2020-04-09 diff --git a/data/registry/instrumentation-js-mssql.yml b/data/registry/instrumentation-js-mssql.yml index 0e20367784ff..a22b424e2b79 100644 --- a/data/registry/instrumentation-js-mssql.yml +++ b/data/registry/instrumentation-js-mssql.yml @@ -1,13 +1,16 @@ # cSpell:ignore mssql Nadeem title: OpenTelemetry MSSQL Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - instrumentation - mssql -repo: https://github.com/mnadeem/opentelemetry-instrumentation-mssql license: Apache 2.0 description: MSSQL instrumentation for Node.js. -authors: Mohammad Nadeem (coolmind182006@gmail.com) +authors: + - name: Mohammad Nadeem + email: coolmind182006@gmail.com +urls: + repo: https://github.com/mnadeem/opentelemetry-instrumentation-mssql +createdAt: 2021-04-07 diff --git a/data/registry/instrumentation-js-mysql.yml b/data/registry/instrumentation-js-mysql.yml index 67cd7f6e0b0f..ca65ac2999cc 100644 --- a/data/registry/instrumentation-js-mysql.yml +++ b/data/registry/instrumentation-js-mysql.yml @@ -1,11 +1,17 @@ title: MySQL Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-mysql license: Apache 2.0 description: MySQL instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-mysql +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-mysql' + version: 0.34.5 diff --git a/data/registry/instrumentation-js-mysql2.yml b/data/registry/instrumentation-js-mysql2.yml index 1fed6c761475..2d14e4cbdad8 100644 --- a/data/registry/instrumentation-js-mysql2.yml +++ b/data/registry/instrumentation-js-mysql2.yml @@ -1,6 +1,5 @@ title: OpenTelemetry Instrumentation for MySQL2 registryType: instrumentation -isThirdParty: false language: js tags: - Node.js @@ -9,8 +8,14 @@ tags: - mysql2 - mysql - database -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-mysql2 license: Apache 2.0 description: MySQL2 instrumentation for Node.js. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-mysql2 +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-mysql2' + version: 0.34.5 diff --git a/data/registry/instrumentation-js-neo4j.yml b/data/registry/instrumentation-js-neo4j.yml index dbca125e421c..8a63126cda0e 100644 --- a/data/registry/instrumentation-js-neo4j.yml +++ b/data/registry/instrumentation-js-neo4j.yml @@ -1,13 +1,16 @@ title: OpenTelemetry Neo4j Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - instrumentation - neo4j - neo4j-driver -repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-neo4j license: Apache 2.0 description: Neo4j instrumentation for Node.js. -authors: Aspecto Authors (nir@aspecto.io) +authors: + - name: Aspecto Authors + email: nir@aspecto.io +urls: + repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-neo4j +createdAt: 2020-06-15 diff --git a/data/registry/instrumentation-js-nest.yml b/data/registry/instrumentation-js-nest.yml index b595d7954072..8272f93d3c31 100644 --- a/data/registry/instrumentation-js-nest.yml +++ b/data/registry/instrumentation-js-nest.yml @@ -1,14 +1,16 @@ # cSpell:ignore nestjs metin seylan title: OpenTelemetry Instrumentation for Nest registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - nest - nestjs -repo: https://github.com/MetinSeylan/Nestjs-OpenTelemetry license: MIT description: Instrumentation library for Nest. -authors: Metin Seylan (metinsyln@gmail.com) -otVersion: latest +authors: + - name: Metin Seylan + email: metinsyln@gmail.com +urls: + repo: https://github.com/MetinSeylan/Nestjs-OpenTelemetry +createdAt: 2021-07-08 diff --git a/data/registry/instrumentation-js-nestjs-core.yml b/data/registry/instrumentation-js-nestjs-core.yml index febc30ca126b..d49705d8d259 100644 --- a/data/registry/instrumentation-js-nestjs-core.yml +++ b/data/registry/instrumentation-js-nestjs-core.yml @@ -1,15 +1,20 @@ # cSpell:ignore nestjs title: OpenTelemetry NestJS Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - nestjs-core - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-nestjs-core license: Apache 2.0 description: This module provides automatic instrumentation for the Nest framework. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-nestjs-core +createdAt: 2021-07-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-nestjs-core' + version: 0.33.4 diff --git a/data/registry/instrumentation-js-nestjs.yml b/data/registry/instrumentation-js-nestjs.yml index 9f0310025b76..d5904267a79a 100644 --- a/data/registry/instrumentation-js-nestjs.yml +++ b/data/registry/instrumentation-js-nestjs.yml @@ -1,13 +1,19 @@ # cSpell:ignore nestjs title: NestJS OpenTelemetry registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - instrumentation - nestjs -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-nestjs-core license: Apache 2.0 description: OpenTelemetry NestJS automatic instrumentation package -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-nestjs-core +createdAt: 2021-07-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-nestjs-core' + version: 0.33.4 diff --git a/data/registry/instrumentation-js-net.yml b/data/registry/instrumentation-js-net.yml index 151e5fa29299..0212f822a443 100644 --- a/data/registry/instrumentation-js-net.yml +++ b/data/registry/instrumentation-js-net.yml @@ -1,12 +1,17 @@ title: OpenTelemetry Instrumentation for net registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - net -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-net license: Apache 2.0 description: Instrumentation library for net module. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-net +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-net' + version: 0.32.5 diff --git a/data/registry/instrumentation-js-nextjs.yml b/data/registry/instrumentation-js-nextjs.yml new file mode 100644 index 000000000000..e4c96168c71a --- /dev/null +++ b/data/registry/instrumentation-js-nextjs.yml @@ -0,0 +1,18 @@ +# cSpell:ignore nestjs vercel +title: Instrumentation for Next.js +registryType: instrumentation +language: js +tags: + - Node.js + - instrumentation + - nestjs +license: MIT +description: Next.js supports OpenTelemetry instrumentation out of the box. +authors: + - name: Vercel, Inc. + url: https://github.com/vercel/ +urls: + repo: https://github.com/vercel/next.js/tree/canary/packages/next/src/server/lib/trace + docs: https://nextjs.org/docs/app/building-your-application/optimizing/open-telemetry +createdAt: 2024-01-01 +isNative: true diff --git a/data/registry/instrumentation-js-node-cache.yml b/data/registry/instrumentation-js-node-cache.yml index c459e540e0ca..78f01240cfef 100644 --- a/data/registry/instrumentation-js-node-cache.yml +++ b/data/registry/instrumentation-js-node-cache.yml @@ -1,12 +1,15 @@ title: OpenTelemetry NodeCache Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - instrumentation - node-cache -repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-node-cache license: Apache 2.0 description: NodeCache instrumentation for Node.js. -authors: Aspecto Authors (amir@aspecto.io) +authors: + - name: Aspecto Authors + email: amir@aspecto.io +urls: + repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-node-cache +createdAt: 2020-06-15 diff --git a/data/registry/instrumentation-js-node-honeycomb.yml b/data/registry/instrumentation-js-node-honeycomb.yml index 663aff524510..53f5e519155a 100644 --- a/data/registry/instrumentation-js-node-honeycomb.yml +++ b/data/registry/instrumentation-js-node-honeycomb.yml @@ -1,12 +1,14 @@ title: Honeycomb OpenTelemetry Distribution for Node.js registryType: instrumentation -isThirdParty: true language: js tags: - js - Node.js - instrumentation -repo: https://github.com/honeycombio/honeycomb-opentelemetry-node license: Apache 2.0 description: Honeycomb's distribution of OpenTelemetry for Node.js -authors: Honeycomb, Hound Technology, Inc +authors: + - name: Honeycomb, Hound Technology, Inc +urls: + repo: https://github.com/honeycombio/honeycomb-opentelemetry-node +createdAt: 2023-02-07 diff --git a/data/registry/instrumentation-js-pg.yml b/data/registry/instrumentation-js-pg.yml index a1b7ab6ee10d..52ef66e145f5 100644 --- a/data/registry/instrumentation-js-pg.yml +++ b/data/registry/instrumentation-js-pg.yml @@ -1,11 +1,17 @@ title: PostgreSQL Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-pg license: Apache 2.0 description: PostgreSQL instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-pg +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-pg' + version: 0.37.2 diff --git a/data/registry/instrumentation-js-pillarjs-router.yml b/data/registry/instrumentation-js-pillarjs-router.yml index ceef8cf0b823..3517c59e51fd 100644 --- a/data/registry/instrumentation-js-pillarjs-router.yml +++ b/data/registry/instrumentation-js-pillarjs-router.yml @@ -1,18 +1,23 @@ -# cSpell:ignore pillarjs +# cSpell:ignore pillarjs restify title: OpenTelemetry pillarjs/Router Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - pillarjs - pillarjs-router - router -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-restify license: Apache 2.0 description: This module provides automatic instrumentation for pillarjs/router and allows the user to automatically collect trace data and export them to their backend of choice. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-restify +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-restify' + version: 0.34.3 diff --git a/data/registry/instrumentation-js-pino.yml b/data/registry/instrumentation-js-pino.yml index 0d346a26f3c5..ce3cf7a1fa6f 100644 --- a/data/registry/instrumentation-js-pino.yml +++ b/data/registry/instrumentation-js-pino.yml @@ -1,14 +1,19 @@ # cSpell:ignore pino title: OpenTelemetry Instrumentation for pino registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - pino - logging -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-pino license: Apache 2.0 description: Instrumentation library for pino. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-pino +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-pino' + version: 0.34.5 diff --git a/data/registry/instrumentation-js-postgres.yml b/data/registry/instrumentation-js-postgres.yml index ff291a2eedc4..548ede228962 100644 --- a/data/registry/instrumentation-js-postgres.yml +++ b/data/registry/instrumentation-js-postgres.yml @@ -1,6 +1,5 @@ title: OpenTelemetry Instrumentation for pg registryType: instrumentation -isThirdParty: false language: js tags: - Node.js @@ -8,8 +7,14 @@ tags: - pg-pool - postgresql - database -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-pg license: Apache 2.0 description: Instrumentation library for pg. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-pg +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-pg' + version: 0.37.2 diff --git a/data/registry/instrumentation-js-pragmaticivan-nestjs.yml b/data/registry/instrumentation-js-pragmaticivan-nestjs.yml index f8915d1b45a7..15987fcfbb17 100644 --- a/data/registry/instrumentation-js-pragmaticivan-nestjs.yml +++ b/data/registry/instrumentation-js-pragmaticivan-nestjs.yml @@ -1,13 +1,16 @@ # cSpell:ignore nestjs title: NestJS OpenTelemetry registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - instrumentation - nestjs -repo: https://github.com/pragmaticivan/nestjs-otel license: MIT description: OpenTelemetry module for NestJS framework. -authors: Ivan Santos (os@ivansantos.me) +authors: + - name: Ivan Santos + email: os@ivansantos.me +urls: + repo: https://github.com/pragmaticivan/nestjs-otel +createdAt: 2021-07-09 diff --git a/data/registry/instrumentation-js-prisma.yml b/data/registry/instrumentation-js-prisma.yml index 16f96c3fd76c..f0aac297be6d 100644 --- a/data/registry/instrumentation-js-prisma.yml +++ b/data/registry/instrumentation-js-prisma.yml @@ -1,13 +1,15 @@ title: Prisma Tracing Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - tracing - instrumentation -repo: https://github.com/prisma/prisma/tree/main/packages/instrumentation license: Apache 2.0 description: OpenTelemetry compliant tracing instrumentation for the Prisma ORM. -authors: Prisma (hello@prisma.io) -otVersion: latest +authors: + - name: Prisma + email: hello@prisma.io +urls: + repo: https://github.com/prisma/prisma/tree/main/packages/instrumentation +createdAt: 2022-08-25 diff --git a/data/registry/instrumentation-js-react-load.yml b/data/registry/instrumentation-js-react-load.yml index e5616588c546..b4e9aa8cec9d 100644 --- a/data/registry/instrumentation-js-react-load.yml +++ b/data/registry/instrumentation-js-react-load.yml @@ -1,11 +1,13 @@ title: React Load Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-plugin-react-load license: Apache 2.0 description: React loading automatic instrumentation -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-plugin-react-load +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-js-redis-4.yml b/data/registry/instrumentation-js-redis-4.yml index 6fff7541f3bf..4e632a70b6bc 100644 --- a/data/registry/instrumentation-js-redis-4.yml +++ b/data/registry/instrumentation-js-redis-4.yml @@ -1,13 +1,17 @@ title: OpenTelemetry Redis Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - redis-4 - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-redis-4 license: Apache 2.0 description: This module provides automatic instrumentation for the `redis@^4.0.0` package. -otVersion: latest +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-redis-4 +createdAt: 2022-10-27 +package: + registry: npm + name: '@opentelemetry/instrumentation-redis-4' + version: 0.35.6 diff --git a/data/registry/instrumentation-js-redis.yml b/data/registry/instrumentation-js-redis.yml index 844fa6d95d8b..44b1b64eb8ed 100644 --- a/data/registry/instrumentation-js-redis.yml +++ b/data/registry/instrumentation-js-redis.yml @@ -1,11 +1,17 @@ title: Redis Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-redis license: Apache 2.0 description: Redis instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-redis +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-redis' + version: 0.35.5 diff --git a/data/registry/instrumentation-js-remix.yml b/data/registry/instrumentation-js-remix.yml index 5919258891b3..799a017a1e8b 100644 --- a/data/registry/instrumentation-js-remix.yml +++ b/data/registry/instrumentation-js-remix.yml @@ -1,13 +1,16 @@ title: OpenTelemetry Instrumentation for Remix registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - instrumentation - remix - remix-run -repo: https://github.com/justindsmith/opentelemetry-instrumentations-js/tree/main/packages/instrumentation-remix license: Apache 2.0 description: Remix instrumentation for Node.js. -authors: Justin Smith (justindsmith@gmail.com) +authors: + - name: Justin Smith + email: justindsmith@gmail.com +urls: + repo: https://github.com/justindsmith/opentelemetry-instrumentations-js/tree/main/packages/instrumentation-remix +createdAt: 2022-02-10 diff --git a/data/registry/instrumentation-js-restify.yml b/data/registry/instrumentation-js-restify.yml index be333c9b4aca..0667cb5eb5c0 100644 --- a/data/registry/instrumentation-js-restify.yml +++ b/data/registry/instrumentation-js-restify.yml @@ -1,13 +1,18 @@ # cSpell:ignore restify title: OpenTelemetry Instrumentation for restify registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - restify -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-restify license: Apache 2.0 description: Instrumentation library for restify. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-restify +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-restify' + version: 0.34.3 diff --git a/data/registry/instrumentation-js-router.yml b/data/registry/instrumentation-js-router.yml index dbbd4cfe0ae3..8a4f03b6a288 100644 --- a/data/registry/instrumentation-js-router.yml +++ b/data/registry/instrumentation-js-router.yml @@ -1,11 +1,17 @@ title: Router Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-router license: Apache 2.0 description: Router instrumentation for Node.js. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-router +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-router' + version: 0.33.4 diff --git a/data/registry/instrumentation-js-sequelize.yml b/data/registry/instrumentation-js-sequelize.yml index 00cf9778791c..ab9a353a4c13 100644 --- a/data/registry/instrumentation-js-sequelize.yml +++ b/data/registry/instrumentation-js-sequelize.yml @@ -1,13 +1,16 @@ # cSpell:ignore sequelize title: OpenTelemetry Sequelize Instrumentation registryType: instrumentation -isThirdParty: true language: js tags: - Node.js - instrumentation - sequelize -repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-sequelize license: Apache 2.0 description: Sequelize instrumentation for Node.js. -authors: Aspecto Authors (nir@aspecto.io) +authors: + - name: Aspecto Authors + email: nir@aspecto.io +urls: + repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-sequelize +createdAt: 2020-06-15 diff --git a/data/registry/instrumentation-js-socket.io.yml b/data/registry/instrumentation-js-socket.io.yml index 6df636fe3861..23ab6c768e10 100644 --- a/data/registry/instrumentation-js-socket.io.yml +++ b/data/registry/instrumentation-js-socket.io.yml @@ -1,14 +1,19 @@ title: OpenTelemetry socket.io Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - socket.io - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-socket.io license: Apache 2.0 description: This module provides automatic instrumentation for the socket.io module -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-socket.io +createdAt: 2022-10-27 +package: + registry: npm + name: '@opentelemetry/instrumentation-socket.io' + version: 0.35.0 diff --git a/data/registry/instrumentation-js-tedious.yml b/data/registry/instrumentation-js-tedious.yml index c42af43232f8..fdcd5faa061e 100644 --- a/data/registry/instrumentation-js-tedious.yml +++ b/data/registry/instrumentation-js-tedious.yml @@ -1,14 +1,19 @@ title: OpenTelemetry Tedious Instrumentation for Node.js registryType: instrumentation -isThirdParty: false language: js tags: - tedious - instrumentation - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-tedious license: Apache 2.0 description: This module provides automatic instrumentation for the tedious module. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/instrumentation-tedious +createdAt: 2022-10-27 +package: + registry: npm + name: '@opentelemetry/instrumentation-tedious' + version: 0.6.5 diff --git a/data/registry/instrumentation-js-typeorm.yml b/data/registry/instrumentation-js-typeorm.yml index 7203eece9a5d..b1173e3d048b 100644 --- a/data/registry/instrumentation-js-typeorm.yml +++ b/data/registry/instrumentation-js-typeorm.yml @@ -1,13 +1,16 @@ # cSpell:ignore typeorm title: OpenTelemetry TypeORM Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - instrumentation - typeorm -repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-typeorm license: Apache 2.0 description: TypeORM instrumentation for Node.js. -authors: Aspecto Authors (nir@aspecto.io) +authors: + - name: Aspecto Authors + email: nir@aspecto.io +urls: + repo: https://github.com/aspecto-io/opentelemetry-ext-js/tree/master/packages/instrumentation-typeorm +createdAt: 2020-06-15 diff --git a/data/registry/instrumentation-js-user-interaction.yml b/data/registry/instrumentation-js-user-interaction.yml index 8e80e2c0aa80..6348395e11b3 100644 --- a/data/registry/instrumentation-js-user-interaction.yml +++ b/data/registry/instrumentation-js-user-interaction.yml @@ -1,11 +1,17 @@ title: User Interaction Instrumentation registryType: instrumentation -isThirdParty: false language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-instrumentation-user-interaction license: Apache 2.0 description: User Interaction instrumentation for browsers. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/web/opentelemetry-instrumentation-user-interaction +createdAt: 2020-11-09 +package: + registry: npm + name: '@opentelemetry/instrumentation-user-interaction' + version: 0.34.1 diff --git a/data/registry/instrumentation-js-winston.yml b/data/registry/instrumentation-js-winston.yml index 56ec016ee234..8037d6a53487 100644 --- a/data/registry/instrumentation-js-winston.yml +++ b/data/registry/instrumentation-js-winston.yml @@ -1,14 +1,19 @@ # cSpell:ignore winston title: OpenTelemetry Instrumentation for winston registryType: instrumentation -isThirdParty: false language: js tags: - Node.js - winston - logging -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-winston license: Apache 2.0 description: Instrumentation library for Winston. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/plugins/node/opentelemetry-instrumentation-winston +createdAt: 2021-07-08 +package: + registry: npm + name: '@opentelemetry/instrumentation-winston' + version: 0.33.1 diff --git a/data/registry/instrumentation-js-xml-http-request.yml b/data/registry/instrumentation-js-xml-http-request.yml index 1df4848accdc..723aa8f14f59 100644 --- a/data/registry/instrumentation-js-xml-http-request.yml +++ b/data/registry/instrumentation-js-xml-http-request.yml @@ -4,7 +4,10 @@ language: js tags: - js - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-xml-http-request license: Apache 2.0 description: XMLHttpRequest instrumentation for browsers. -authors: OpenTelemetry Authors +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation-xml-http-request +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-lua-apache-apisix.yml b/data/registry/instrumentation-lua-apache-apisix.yml index 28ef5eb52a4f..171ef98bb643 100644 --- a/data/registry/instrumentation-lua-apache-apisix.yml +++ b/data/registry/instrumentation-lua-apache-apisix.yml @@ -1,15 +1,16 @@ # cSpell:ignore APISIX title: Apache APISIX Instrumentation registryType: instrumentation -isThirdParty: false language: lua tags: - lua - instrumentation -repo: https://github.com/apache/apisix/blob/master/apisix/plugins/opentelemetry.lua license: Apache 2.0 description: The plugin implements Tracing data collection based on OpenTelemetry native standard, and sends it to OpenTelemetry Collector through HTTP protocol. -authors: Apache APISIX Authors -otVersion: latest +authors: + - name: Apache APISIX Authors +urls: + repo: https://github.com/apache/apisix/blob/master/apisix/plugins/opentelemetry.lua +createdAt: 2022-03-27 diff --git a/data/registry/instrumentation-perl-mojolicious.yml b/data/registry/instrumentation-perl-mojolicious.yml index b3d6081285a4..7e96a901e62b 100644 --- a/data/registry/instrumentation-perl-mojolicious.yml +++ b/data/registry/instrumentation-perl-mojolicious.yml @@ -1,13 +1,14 @@ # cSpell:ignore jjatria Mojolicious title: Mojolicious Instrumentation registryType: instrumentation -isThirdParty: true language: perl tags: - perl - instrumentation -repo: https://github.com/jjatria/mojolicious-plugin-opentelemetry license: Artistic-1.0-Perl description: An OpenTelemetry plugin for Perl's Mojolicious. -authors: jjatria -otVersion: latest +authors: + - name: jjatria +urls: + repo: https://github.com/jjatria/mojolicious-plugin-opentelemetry +createdAt: 2023-12-05 diff --git a/data/registry/instrumentation-perl-plack.yml b/data/registry/instrumentation-perl-plack.yml index 7fc5371efd00..e698f1798dcb 100644 --- a/data/registry/instrumentation-perl-plack.yml +++ b/data/registry/instrumentation-perl-plack.yml @@ -1,13 +1,14 @@ # cSpell:ignore abh title: Plack Instrumentation registryType: instrumentation -isThirdParty: true language: perl tags: - perl - instrumentation -repo: https://github.com/abh/Plack-Middleware-OpenTelemetry license: MIT description: An OpenTelemetry middleware for Perl's Plack. -authors: abh -otVersion: latest +authors: + - name: abh +urls: + repo: https://github.com/abh/Plack-Middleware-OpenTelemetry +createdAt: 2023-12-05 diff --git a/data/registry/instrumentation-php-codeigniter.yml b/data/registry/instrumentation-php-codeigniter.yml index e2b8541c8308..59b07c25ee35 100644 --- a/data/registry/instrumentation-php-codeigniter.yml +++ b/data/registry/instrumentation-php-codeigniter.yml @@ -1,14 +1,15 @@ # cSpell:ignore CodeIgniter codeigniter title: OpenTelemetry CodeIgniter auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - codeigniter - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/CodeIgniter license: Apache 2.0 description: Instrumentation Library for the CodeIgniter Framework -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/CodeIgniter +createdAt: 2023-05-22 diff --git a/data/registry/instrumentation-php-httpasyncclient.yml b/data/registry/instrumentation-php-httpasyncclient.yml index 176d136c2be5..aacd09b6ce7d 100644 --- a/data/registry/instrumentation-php-httpasyncclient.yml +++ b/data/registry/instrumentation-php-httpasyncclient.yml @@ -1,14 +1,15 @@ # cSpell:ignore httpasyncclient title: OpenTelemetry HTTPlug async auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - httpasyncclient - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/HttpAsyncClient license: Apache 2.0 description: Instrumentation Library for PHP HTTP Async Client -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/HttpAsyncClient +createdAt: 2023-05-22 diff --git a/data/registry/instrumentation-php-io.yml b/data/registry/instrumentation-php-io.yml index e6d392c2630d..f2d15873d130 100644 --- a/data/registry/instrumentation-php-io.yml +++ b/data/registry/instrumentation-php-io.yml @@ -1,13 +1,14 @@ title: OpenTelemetry IO auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - io - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/IO license: Apache 2.0 description: Instrumentation Library for PHP IO -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/IO +createdAt: 2023-05-22 diff --git a/data/registry/instrumentation-php-laravel.yml b/data/registry/instrumentation-php-laravel.yml index 71dd5ba08fc0..0652627b532a 100644 --- a/data/registry/instrumentation-php-laravel.yml +++ b/data/registry/instrumentation-php-laravel.yml @@ -1,13 +1,14 @@ title: OpenTelemetry Laravel auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - laravel - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Laravel license: Apache 2.0 description: Instrumentation Library for Laravel -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Laravel +createdAt: 2023-05-22 diff --git a/data/registry/instrumentation-php-mongodb.yml b/data/registry/instrumentation-php-mongodb.yml index 003b2a358447..debf0de01138 100644 --- a/data/registry/instrumentation-php-mongodb.yml +++ b/data/registry/instrumentation-php-mongodb.yml @@ -1,15 +1,16 @@ title: OpenTelemetry MongoDB auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - mongodb - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/MongoDB license: Apache 2.0 description: Auto-instrumentation hooks are registered via composer, and spans will automatically be created for all MongoDB operations. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/MongoDB +createdAt: 2023-08-08 diff --git a/data/registry/instrumentation-php-pdo.yml b/data/registry/instrumentation-php-pdo.yml index bae5ceedff50..c3a00ecb3058 100644 --- a/data/registry/instrumentation-php-pdo.yml +++ b/data/registry/instrumentation-php-pdo.yml @@ -1,13 +1,14 @@ title: OpenTelemetry PDO (PHP DataObjects) auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - pdo - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/PDO license: Apache 2.0 description: Instrumentation Library for PDO -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/PDO +createdAt: 2023-05-22 diff --git a/data/registry/instrumentation-php-psr15.yml b/data/registry/instrumentation-php-psr15.yml index 0f78abf0e3b6..8f5b9736c512 100644 --- a/data/registry/instrumentation-php-psr15.yml +++ b/data/registry/instrumentation-php-psr15.yml @@ -1,13 +1,14 @@ title: PSR-15 Middleware Instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - php - psr-15 - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Psr15 license: Apache 2.0 description: Instrumentation Library for PSR-15 middleware -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Psr15 +createdAt: 2022-12-14 diff --git a/data/registry/instrumentation-php-psr18.yml b/data/registry/instrumentation-php-psr18.yml index 10d565d8dec8..1eb9f5bad5c3 100644 --- a/data/registry/instrumentation-php-psr18.yml +++ b/data/registry/instrumentation-php-psr18.yml @@ -1,14 +1,15 @@ title: PSR-18 HTTP Clients Instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - php - psr-18 - http - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Psr18 license: Apache 2.0 description: Instrumentation Library for PSR-18 HTTP clients -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Psr18 +createdAt: 2022-12-14 diff --git a/data/registry/instrumentation-php-psr3.yml b/data/registry/instrumentation-php-psr3.yml index 40e94458036f..b0ec79ded19f 100644 --- a/data/registry/instrumentation-php-psr3.yml +++ b/data/registry/instrumentation-php-psr3.yml @@ -1,15 +1,16 @@ title: OpenTelemetry PSR-3 auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - psr-3 - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Psr3 license: Apache 2.0 description: Auto-instrumentation hooks are registered via composer, and automatically inject trace ID and span ID into log message context of any PSR-3 logger. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Psr3 +createdAt: 2023-07-10 diff --git a/data/registry/instrumentation-php-slim.yml b/data/registry/instrumentation-php-slim.yml index 1f5c4f172e27..29404aa1f916 100644 --- a/data/registry/instrumentation-php-slim.yml +++ b/data/registry/instrumentation-php-slim.yml @@ -1,13 +1,14 @@ title: Slim Framework registryType: instrumentation -isThirdParty: false language: php tags: - php - slim - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Slim license: Apache 2.0 description: Instrumentation Library for the Slim Framework -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Slim +createdAt: 2022-12-14 diff --git a/data/registry/instrumentation-php-symfony.yml b/data/registry/instrumentation-php-symfony.yml index 779b58abecf9..492a94859fa2 100644 --- a/data/registry/instrumentation-php-symfony.yml +++ b/data/registry/instrumentation-php-symfony.yml @@ -1,13 +1,14 @@ title: OpenTelemetry Symfony auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - symfony - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Symfony license: Apache 2.0 description: Instrumentation Library for the Symfony Framework -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Symfony +createdAt: 2023-05-22 diff --git a/data/registry/instrumentation-php-wordpress.yml b/data/registry/instrumentation-php-wordpress.yml index 8926867d7342..29d0a8b5bc26 100644 --- a/data/registry/instrumentation-php-wordpress.yml +++ b/data/registry/instrumentation-php-wordpress.yml @@ -1,13 +1,14 @@ title: OpenTelemetry WordPress auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - wordpress - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Wordpress license: Apache 2.0 description: Instrumentation Library for WordPress -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Wordpress +createdAt: 2023-05-22 diff --git a/data/registry/instrumentation-php-yii.yml b/data/registry/instrumentation-php-yii.yml index 0a6cbd8117ca..7e8e3397c15d 100644 --- a/data/registry/instrumentation-php-yii.yml +++ b/data/registry/instrumentation-php-yii.yml @@ -1,12 +1,13 @@ title: OpenTelemetry Yii auto-instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - yii - instrumentation - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Yii description: Instrumentation Library for Yii -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Instrumentation/Yii +createdAt: 2022-12-14 diff --git a/data/registry/instrumentation-python-aio-pika.yml b/data/registry/instrumentation-python-aio-pika.yml index 9d2cf0996106..f1a82dc838d9 100644 --- a/data/registry/instrumentation-python-aio-pika.yml +++ b/data/registry/instrumentation-python-aio-pika.yml @@ -1,13 +1,14 @@ title: OpenTelemetry Aio-pika Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - aio-pika - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aio-pika license: Apache 2.0 description: This library allows tracing requests made by the Aio-pika library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aio-pika +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-aiohttp-client.yml b/data/registry/instrumentation-python-aiohttp-client.yml index a63afde04f20..652a40abe81e 100644 --- a/data/registry/instrumentation-python-aiohttp-client.yml +++ b/data/registry/instrumentation-python-aiohttp-client.yml @@ -1,15 +1,16 @@ # cSpell:ignore aiohttp title: OpenTelemetry aiohttp client Integration registryType: instrumentation -isThirdParty: false language: python tags: - aiohttp-client - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiohttp-client license: Apache 2.0 description: This library allows tracing HTTP requests made by the aiohttp client library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiohttp-client +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-aiohttpserver.yml b/data/registry/instrumentation-python-aiohttpserver.yml index 4340c6e769f5..6f58a443eede 100644 --- a/data/registry/instrumentation-python-aiohttpserver.yml +++ b/data/registry/instrumentation-python-aiohttpserver.yml @@ -1,7 +1,6 @@ # cSpell:ignore aiohttp title: OpenTelemetry aiohttp server Integration registryType: instrumentation -isThirdParty: false language: python tags: - aio @@ -9,9 +8,11 @@ tags: - server - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiohttp-server license: Apache 2.0 description: This library allows tracing HTTP requests made by the aiohttp server library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiohttp-server +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-aiopg.yml b/data/registry/instrumentation-python-aiopg.yml index 779710bc72e2..cce2c51f7205 100644 --- a/data/registry/instrumentation-python-aiopg.yml +++ b/data/registry/instrumentation-python-aiopg.yml @@ -1,15 +1,16 @@ # cSpell:ignore AIOPG title: AIOPG Middleware Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiopg license: Apache 2.0 description: This library provides AIOPG middleware to track requests timing through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiopg +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-anthropic.yml b/data/registry/instrumentation-python-anthropic.yml index a00edce4b860..36bdd4b1e616 100644 --- a/data/registry/instrumentation-python-anthropic.yml +++ b/data/registry/instrumentation-python-anthropic.yml @@ -1,13 +1,15 @@ title: Anthropic Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation - anthropic -repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-anthropic license: Apache 2.0 description: Instrumentation for Anthropic LLMs (prompts logging, tokens, etc.) -authors: Traceloop -otVersion: latest +authors: + - name: Traceloop + email: dev@traceloop.com +urls: + repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-anthropic +createdAt: 2023-10-13 diff --git a/data/registry/instrumentation-python-asgi.yml b/data/registry/instrumentation-python-asgi.yml index 95675a6e5976..a0557adafe84 100644 --- a/data/registry/instrumentation-python-asgi.yml +++ b/data/registry/instrumentation-python-asgi.yml @@ -1,15 +1,16 @@ # cSpell:ignore ASGI title: ASGI Middleware Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-asgi license: Apache 2.0 description: This library provides a WSGI middleware that can be used on any ASGI framework (such as Django / Flask) to track requests timing through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-asgi +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-asyncpg.yml b/data/registry/instrumentation-python-asyncpg.yml index 400fc287ad14..f2f44c4b9e0c 100644 --- a/data/registry/instrumentation-python-asyncpg.yml +++ b/data/registry/instrumentation-python-asyncpg.yml @@ -1,14 +1,15 @@ # cSpell:ignore asyncpg title: asyncpg Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-asyncpg license: Apache 2.0 description: This library allows tracing PostgreSQL queries made by the asyncpg library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-asyncpg +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-aws-lambda.yml b/data/registry/instrumentation-python-aws-lambda.yml index eaffb867309d..39e14236e440 100644 --- a/data/registry/instrumentation-python-aws-lambda.yml +++ b/data/registry/instrumentation-python-aws-lambda.yml @@ -1,12 +1,13 @@ title: AWS Lambda Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aws-lambda license: Apache 2.0 description: This library allows tracing invocations of functions on AWS Lambda. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aws-lambda +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-azure-sdk.yml b/data/registry/instrumentation-python-azure-sdk.yml index b46a2c600e4c..17d4e6080281 100644 --- a/data/registry/instrumentation-python-azure-sdk.yml +++ b/data/registry/instrumentation-python-azure-sdk.yml @@ -1,14 +1,15 @@ title: Azure SDK Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation - azure-sdk - azure -repo: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry -license: MIT License +license: MIT description: Instrumentation for Azure SDK for Python (Track 2 libraries). -authors: Microsoft Authors -otVersion: 1.0.0 +authors: + - name: Microsoft Authors +urls: + repo: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry +createdAt: 2021-12-16 diff --git a/data/registry/instrumentation-python-boto.yml b/data/registry/instrumentation-python-boto.yml index c52e11fe16f0..1622c33835ec 100644 --- a/data/registry/instrumentation-python-boto.yml +++ b/data/registry/instrumentation-python-boto.yml @@ -1,13 +1,14 @@ # cSpell:ignore boto title: Boto Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-boto license: Apache 2.0 description: This library allows tracing requests made by the Boto library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-boto +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-boto3sqs.yml b/data/registry/instrumentation-python-boto3sqs.yml index adc799cd5d39..b917f2a2792e 100644 --- a/data/registry/instrumentation-python-boto3sqs.yml +++ b/data/registry/instrumentation-python-boto3sqs.yml @@ -1,16 +1,17 @@ # cSpell:ignore boto title: OpenTelemetry Boto3 SQS Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - boto3sqs - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-boto3sqs license: Apache 2.0 description: This library allows tracing requests made by the Boto3 library to the SQS service. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-boto3sqs +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-botocore.yml b/data/registry/instrumentation-python-botocore.yml index 842ea13c4490..ae283049d1ac 100644 --- a/data/registry/instrumentation-python-botocore.yml +++ b/data/registry/instrumentation-python-botocore.yml @@ -1,13 +1,14 @@ # cSpell:ignore Botocore title: Botocore Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-botocore license: Apache 2.0 description: This library allows tracing requests made by the Botocore library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-botocore +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-cassandra.yml b/data/registry/instrumentation-python-cassandra.yml index b99382123518..62742c3a5672 100644 --- a/data/registry/instrumentation-python-cassandra.yml +++ b/data/registry/instrumentation-python-cassandra.yml @@ -1,15 +1,16 @@ # cSpell:ignore scylla title: OpenTelemetry Cassandra Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - cassandra - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-cassandra license: Apache 2.0 description: Instrumentation for Cassandra (Cassandra-driver and scylla-driver libraries). -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-cassandra +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-celery.yml b/data/registry/instrumentation-python-celery.yml index f9f71aad4bf6..104cde753649 100644 --- a/data/registry/instrumentation-python-celery.yml +++ b/data/registry/instrumentation-python-celery.yml @@ -1,12 +1,13 @@ title: Celery Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-celery license: Apache 2.0 description: Instrumentation for Celery. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-celery +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-cohere.yml b/data/registry/instrumentation-python-cohere.yml index 1b54d0105bdd..24f068478634 100644 --- a/data/registry/instrumentation-python-cohere.yml +++ b/data/registry/instrumentation-python-cohere.yml @@ -1,13 +1,15 @@ title: Cohere Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation - cohere -repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-cohere license: Apache 2.0 description: Instrumentation for Cohere LLMs (prompts logging, tokens, etc.) -authors: Traceloop -otVersion: latest +authors: + - name: Traceloop + email: dev@traceloop.com +urls: + repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-cohere +createdAt: 2023-10-13 diff --git a/data/registry/instrumentation-python-confluent-kafka.yml b/data/registry/instrumentation-python-confluent-kafka.yml index 09002f11fb81..5d582a0d7c18 100644 --- a/data/registry/instrumentation-python-confluent-kafka.yml +++ b/data/registry/instrumentation-python-confluent-kafka.yml @@ -1,14 +1,15 @@ title: OpenTelemetry confluent-kafka Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - confluent-kafka - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-confluent-kafka license: Apache 2.0 description: This library allows tracing requests made by the confluent-kafka library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-confluent-kafka +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-python-dbapi.yml b/data/registry/instrumentation-python-dbapi.yml index 65636b522778..44124a1a5d8a 100644 --- a/data/registry/instrumentation-python-dbapi.yml +++ b/data/registry/instrumentation-python-dbapi.yml @@ -1,12 +1,13 @@ title: Database API integration registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-dbapi license: Apache 2.0 description: The trace integration with Database API for OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-dbapi +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-django.yml b/data/registry/instrumentation-python-django.yml index 068be7e0e5bf..4a64fff5abbd 100644 --- a/data/registry/instrumentation-python-django.yml +++ b/data/registry/instrumentation-python-django.yml @@ -1,12 +1,13 @@ title: Django Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-django license: Apache 2.0 description: This library allows tracing requests for Django applications. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-django +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-elasticsearch.yml b/data/registry/instrumentation-python-elasticsearch.yml index d74b0a48ed48..35be08772a15 100644 --- a/data/registry/instrumentation-python-elasticsearch.yml +++ b/data/registry/instrumentation-python-elasticsearch.yml @@ -1,13 +1,14 @@ title: Elasticsearch Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-elasticsearch license: Apache 2.0 description: This library allows tracing elasticsearch made by the elasticsearch library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-elasticsearch +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-falcon.yml b/data/registry/instrumentation-python-falcon.yml index 511f89fa3f03..e2fff286867b 100644 --- a/data/registry/instrumentation-python-falcon.yml +++ b/data/registry/instrumentation-python-falcon.yml @@ -1,15 +1,16 @@ title: OpenTelemetry Falcon Tracing registryType: instrumentation -isThirdParty: false language: python tags: - falcon - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-falcon license: Apache 2.0 description: This library builds on the OpenTelemetry WSGI middleware to track web requests in Falcon applications. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-falcon +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-fastapi.yml b/data/registry/instrumentation-python-fastapi.yml index 205d46102649..f0014af3639c 100644 --- a/data/registry/instrumentation-python-fastapi.yml +++ b/data/registry/instrumentation-python-fastapi.yml @@ -1,14 +1,15 @@ title: FastAPI Middleware Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-fastapi license: Apache 2.0 description: This library provides FastAPI middleware to track requests timing through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-fastapi +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-flask.yml b/data/registry/instrumentation-python-flask.yml index ec3babcbb4a3..7745552c902a 100644 --- a/data/registry/instrumentation-python-flask.yml +++ b/data/registry/instrumentation-python-flask.yml @@ -1,14 +1,15 @@ title: Flask Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-flask license: Apache 2.0 description: This library builds on the OpenTelemetry WSGI middleware to track web requests in Flask applications. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-flask +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-grpc.yml b/data/registry/instrumentation-python-grpc.yml index 901e89c3a958..7771122cf22e 100644 --- a/data/registry/instrumentation-python-grpc.yml +++ b/data/registry/instrumentation-python-grpc.yml @@ -1,12 +1,13 @@ title: gRPC Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-grpc license: Apache 2.0 description: Client and server interceptors for gRPC Python. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-grpc +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-haystack.yml b/data/registry/instrumentation-python-haystack.yml index f73a97155793..677a06afa892 100644 --- a/data/registry/instrumentation-python-haystack.yml +++ b/data/registry/instrumentation-python-haystack.yml @@ -1,13 +1,15 @@ title: Haystack Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation - haystack -repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-haystack license: Apache 2.0 description: Instrumentation for Haystack LLM framework -authors: Traceloop -otVersion: latest +authors: + - name: Traceloop + email: dev@traceloop.com +urls: + repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-haystack +createdAt: 2023-10-13 diff --git a/data/registry/instrumentation-python-httpx.yml b/data/registry/instrumentation-python-httpx.yml index 062dc59b635e..13cd4dc3cd01 100644 --- a/data/registry/instrumentation-python-httpx.yml +++ b/data/registry/instrumentation-python-httpx.yml @@ -1,15 +1,16 @@ # cSpell:ignore httpx title: OpenTelemetry HTTPX Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - httpx - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-httpx license: Apache 2.0 description: This library allows tracing HTTP requests made by the HTTPX library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-httpx +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-jinja2.yml b/data/registry/instrumentation-python-jinja2.yml index 49ce40028b04..051ee252c326 100644 --- a/data/registry/instrumentation-python-jinja2.yml +++ b/data/registry/instrumentation-python-jinja2.yml @@ -1,12 +1,13 @@ title: Jinja2 Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-jinja2 license: Apache 2.0 description: Instrumentation for Jinja2. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-jinja2 +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-kafka-python.yml b/data/registry/instrumentation-python-kafka-python.yml index 46ca0bd00273..cf5943af2b31 100644 --- a/data/registry/instrumentation-python-kafka-python.yml +++ b/data/registry/instrumentation-python-kafka-python.yml @@ -1,13 +1,14 @@ title: OpenTelemetry kafka-python integration registryType: instrumentation -isThirdParty: false language: python tags: - kafka-python - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-kafka-python license: Apache 2.0 description: Instrumentation library for kafka-python -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-kafka-python +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-python-langchain.yml b/data/registry/instrumentation-python-langchain.yml index 7cc701ba216a..bedbcf5a1603 100644 --- a/data/registry/instrumentation-python-langchain.yml +++ b/data/registry/instrumentation-python-langchain.yml @@ -1,14 +1,16 @@ # cSpell:ignore langchain title: LangChain Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation - langchain -repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-langchain license: Apache 2.0 description: Instrumentation for LangChain Framework -authors: Traceloop -otVersion: latest +authors: + - name: Traceloop + email: dev@traceloop.com +urls: + repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-langchain +createdAt: 2023-10-13 diff --git a/data/registry/instrumentation-python-logging.yml b/data/registry/instrumentation-python-logging.yml index d51d6d1899a0..8c08ccfc9666 100644 --- a/data/registry/instrumentation-python-logging.yml +++ b/data/registry/instrumentation-python-logging.yml @@ -1,13 +1,14 @@ title: OpenTelemetry logging integration registryType: instrumentation -isThirdParty: false language: python tags: - logging - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-logging license: Apache 2.0 description: Installation -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-logging +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-mysql.yml b/data/registry/instrumentation-python-mysql.yml index 95b2f3af361b..25cf8f32131a 100644 --- a/data/registry/instrumentation-python-mysql.yml +++ b/data/registry/instrumentation-python-mysql.yml @@ -1,13 +1,14 @@ title: MySQL Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-mysql license: Apache 2.0 description: Instrumentation with MySQL that supports the mysql-connector library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-mysql +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-mysqlclient.yml b/data/registry/instrumentation-python-mysqlclient.yml index 315c8348e490..052df9b628af 100644 --- a/data/registry/instrumentation-python-mysqlclient.yml +++ b/data/registry/instrumentation-python-mysqlclient.yml @@ -1,14 +1,15 @@ # cSpell:ignore mysqlclient title: OpenTelemetry `mysqlclient` Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - mysql - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-mysqlclient license: Apache 2.0 description: Instrumentation library for `mysqlclient` package. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-mysqlclient +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-openai.yml b/data/registry/instrumentation-python-openai.yml index 7dd0630e9cf4..3a1fa62fc347 100644 --- a/data/registry/instrumentation-python-openai.yml +++ b/data/registry/instrumentation-python-openai.yml @@ -1,14 +1,16 @@ # cSpell:ignore openai title: OpenAI Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation - openai -repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-openai license: Apache 2.0 description: Instrumentation for OpenAI LLMs (prompts logging, tokens, etc.) -authors: Traceloop -otVersion: latest +authors: + - name: Traceloop + email: dev@traceloop.com +urls: + repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-openai +createdAt: 2023-10-13 diff --git a/data/registry/instrumentation-python-opentracing-shim.yml b/data/registry/instrumentation-python-opentracing-shim.yml index c74cfc1a4750..0eda20960185 100644 --- a/data/registry/instrumentation-python-opentracing-shim.yml +++ b/data/registry/instrumentation-python-opentracing-shim.yml @@ -1,12 +1,13 @@ title: OpenTracing Shim Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/shim/opentelemetry-opentracing-shim license: Apache 2.0 description: OpenTracing Shim for OpenTelemetry -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python/tree/main/shim/opentelemetry-opentracing-shim +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-pika.yml b/data/registry/instrumentation-python-pika.yml index 0d64d9eab5d8..ac369743a793 100644 --- a/data/registry/instrumentation-python-pika.yml +++ b/data/registry/instrumentation-python-pika.yml @@ -1,13 +1,14 @@ title: OpenTelemetry pika Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - pika - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pika license: Apache 2.0 description: This library allows tracing requests made by the pika library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pika +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-python-pinecone.yml b/data/registry/instrumentation-python-pinecone.yml index 7074cf23dc6d..373fc569ad51 100644 --- a/data/registry/instrumentation-python-pinecone.yml +++ b/data/registry/instrumentation-python-pinecone.yml @@ -1,13 +1,15 @@ title: Pinecone Instrumentation registryType: instrumentation -isThirdParty: true language: python tags: - python - instrumentation - pinecone -repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-pinecone license: Apache 2.0 description: Instrumentation for Pinecone Vector DB -authors: Traceloop -otVersion: latest +authors: + - name: Traceloop + email: dev@traceloop.com +urls: + repo: https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-pinecone +createdAt: 2023-10-13 diff --git a/data/registry/instrumentation-python-psycopg2.yml b/data/registry/instrumentation-python-psycopg2.yml index acc8dac819d8..5d2ac2ed2f17 100644 --- a/data/registry/instrumentation-python-psycopg2.yml +++ b/data/registry/instrumentation-python-psycopg2.yml @@ -1,13 +1,14 @@ # cSpell:ignore psycopg title: Psycopg Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-psycopg2 license: Apache 2.0 description: This library provides tracing for PostgreSQL via psycopg2. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-psycopg2 +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-pymemcache.yml b/data/registry/instrumentation-python-pymemcache.yml index 73c6bc9e809c..4f707d14abe2 100644 --- a/data/registry/instrumentation-python-pymemcache.yml +++ b/data/registry/instrumentation-python-pymemcache.yml @@ -1,13 +1,14 @@ # cSpell:ignore pymemcache title: Pymemcache Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pymemcache license: Apache 2.0 description: Instrumentation for Pymemcache. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pymemcache +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-pymongo.yml b/data/registry/instrumentation-python-pymongo.yml index c0635d65ca5e..ef12c23c8a95 100644 --- a/data/registry/instrumentation-python-pymongo.yml +++ b/data/registry/instrumentation-python-pymongo.yml @@ -1,13 +1,14 @@ # cSpell:ignore pymongo title: pymongo Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pymongo license: Apache 2.0 description: Instrumentation for the pymongo library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pymongo +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-pymysql.yml b/data/registry/instrumentation-python-pymysql.yml index 4edd9152a713..d379dfb02928 100644 --- a/data/registry/instrumentation-python-pymysql.yml +++ b/data/registry/instrumentation-python-pymysql.yml @@ -1,12 +1,13 @@ title: PyMySQL Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pymysql license: Apache 2.0 description: This library provides tracing for PyMySQL. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pymysql +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-pyramid.yml b/data/registry/instrumentation-python-pyramid.yml index de3ae1290969..b9aa1b2504e6 100644 --- a/data/registry/instrumentation-python-pyramid.yml +++ b/data/registry/instrumentation-python-pyramid.yml @@ -1,12 +1,13 @@ title: Pyramid Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pyramid license: Apache 2.0 description: Instrumentation for Pyramid. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-pyramid +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-redis.yml b/data/registry/instrumentation-python-redis.yml index 1376999c6ffd..9e3c1e01084e 100644 --- a/data/registry/instrumentation-python-redis.yml +++ b/data/registry/instrumentation-python-redis.yml @@ -1,12 +1,13 @@ title: Redis Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-redis license: Apache 2.0 description: This library allows tracing requests made by the Redis library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-redis +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-remoulade.yml b/data/registry/instrumentation-python-remoulade.yml index 1c29d18e2776..db53d8749b46 100644 --- a/data/registry/instrumentation-python-remoulade.yml +++ b/data/registry/instrumentation-python-remoulade.yml @@ -1,14 +1,15 @@ # cSpell:ignore remoulade title: OpenTelemetry Remoulade Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - remoulade - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-remoulade license: Apache 2.0 description: This library allows tracing requests made by the Remoulade library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-remoulade +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-requests.yml b/data/registry/instrumentation-python-requests.yml index cfa83fc4fd88..a6225e52bd1b 100644 --- a/data/registry/instrumentation-python-requests.yml +++ b/data/registry/instrumentation-python-requests.yml @@ -1,13 +1,14 @@ title: Requests Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-requests license: Apache 2.0 description: This library allows tracing HTTP requests made by the requests library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-requests +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-sklearn.yml b/data/registry/instrumentation-python-sklearn.yml index 542855ca5160..199235e636d1 100644 --- a/data/registry/instrumentation-python-sklearn.yml +++ b/data/registry/instrumentation-python-sklearn.yml @@ -1,15 +1,16 @@ # cSpell:ignore scikit sklearn title: OpenTelemetry Scikit-Learn Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - sklearn - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-sklearn license: Apache 2.0 description: This library allows tracing HTTP requests made by the scikit-learn library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-sklearn +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-sqlalchemy.yml b/data/registry/instrumentation-python-sqlalchemy.yml index a8c04b6d3dec..6ca2ee9a934d 100644 --- a/data/registry/instrumentation-python-sqlalchemy.yml +++ b/data/registry/instrumentation-python-sqlalchemy.yml @@ -1,13 +1,14 @@ title: SQLAlchemy Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-sqlalchemy license: Apache 2.0 description: This library allows tracing requests made by the SQLAlchemy library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-sqlalchemy +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-sqlite3.yml b/data/registry/instrumentation-python-sqlite3.yml index 90616bd38c7e..f4fcb34c3cc9 100644 --- a/data/registry/instrumentation-python-sqlite3.yml +++ b/data/registry/instrumentation-python-sqlite3.yml @@ -1,12 +1,13 @@ title: Sqlite3 Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-sqlite3 license: Apache 2.0 description: Instrumentation for Sqlite3. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-sqlite3 +createdAt: 2020-02-05 diff --git a/data/registry/instrumentation-python-starlette.yml b/data/registry/instrumentation-python-starlette.yml index 4ce31e5ad676..e2b9b672e9da 100644 --- a/data/registry/instrumentation-python-starlette.yml +++ b/data/registry/instrumentation-python-starlette.yml @@ -1,16 +1,17 @@ # cSpell:ignore Starlette title: Starlette Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-starlette license: Apache 2.0 description: This library provides automatic and manual instrumentation of Starlette web frameworks, instrumenting HTTP requests served by applications utilizing the framework. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-starlette +createdAt: 2020-06-29 diff --git a/data/registry/instrumentation-python-system-metrics.yml b/data/registry/instrumentation-python-system-metrics.yml index 8d890f2d357e..af2bea5ccc92 100644 --- a/data/registry/instrumentation-python-system-metrics.yml +++ b/data/registry/instrumentation-python-system-metrics.yml @@ -1,12 +1,13 @@ title: System Metrics Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-system-metrics license: Apache 2.0 description: Instrumentation to collect system performance metrics. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-system-metrics +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-tornado.yml b/data/registry/instrumentation-python-tornado.yml index 2970f1e317ed..79ff1ebfc214 100644 --- a/data/registry/instrumentation-python-tornado.yml +++ b/data/registry/instrumentation-python-tornado.yml @@ -1,14 +1,15 @@ title: Tornado Middleware Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tornado license: Apache 2.0 description: This library provides Tornado middleware to track requests timing through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tornado +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-tortoiseorm.yml b/data/registry/instrumentation-python-tortoiseorm.yml index e4ffdcf462a3..4cb80488c856 100644 --- a/data/registry/instrumentation-python-tortoiseorm.yml +++ b/data/registry/instrumentation-python-tortoiseorm.yml @@ -1,16 +1,17 @@ # cSpell:ignore tortoiseorm title: OpenTelemetry Tortoise ORM Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - tortoiseorm - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tortoiseorm license: Apache 2.0 description: This library allows tracing queries made by tortoise ORM backends, MySQL, PostgreSQL and SQLite. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-tortoiseorm +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-urllib.yml b/data/registry/instrumentation-python-urllib.yml index 7a23801f1eba..ece8dfb26776 100644 --- a/data/registry/instrumentation-python-urllib.yml +++ b/data/registry/instrumentation-python-urllib.yml @@ -1,14 +1,15 @@ # cSpell:ignore urllib title: OpenTelemetry urllib Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - urllib - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-urllib license: Apache 2.0 description: This library allows tracing HTTP requests made by the -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-urllib +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-urllib3.yml b/data/registry/instrumentation-python-urllib3.yml index db36927b58bc..427efbd3a3c8 100644 --- a/data/registry/instrumentation-python-urllib3.yml +++ b/data/registry/instrumentation-python-urllib3.yml @@ -1,15 +1,16 @@ # cSpell:ignore urllib3 title: OpenTelemetry urllib3 Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - urllib3 - instrumentation - python -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-urllib3 license: Apache 2.0 description: This library allows tracing HTTP requests made by the urllib3 library. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-urllib3 +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-python-wsgi.yml b/data/registry/instrumentation-python-wsgi.yml index e19aad2cf15d..8e80d2b2fb7f 100644 --- a/data/registry/instrumentation-python-wsgi.yml +++ b/data/registry/instrumentation-python-wsgi.yml @@ -1,14 +1,15 @@ title: WSGI Middleware Instrumentation registryType: instrumentation -isThirdParty: false language: python tags: - python - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-wsgi license: Apache 2.0 description: This library provides a WSGI middleware that can be used on any WSGI framework (such as Django / Flask) to track requests timing through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-wsgi +createdAt: 2020-05-11 diff --git a/data/registry/instrumentation-ruby-action-pack.yml b/data/registry/instrumentation-ruby-action-pack.yml index ed05634749ba..e13300f7fadf 100644 --- a/data/registry/instrumentation-ruby-action-pack.yml +++ b/data/registry/instrumentation-ruby-action-pack.yml @@ -1,13 +1,14 @@ title: ActionPack Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - action_pack -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/action_pack license: Apache 2.0 description: ActionPack instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/action_pack +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-action-view.yml b/data/registry/instrumentation-ruby-action-view.yml index a8cf2e51075a..f5cd56dd0181 100644 --- a/data/registry/instrumentation-ruby-action-view.yml +++ b/data/registry/instrumentation-ruby-action-view.yml @@ -1,13 +1,14 @@ title: ActionView Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - action_view -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/action_view license: Apache 2.0 description: ActionView instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/action_view +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-active-job.yml b/data/registry/instrumentation-ruby-active-job.yml index 2c912e356dbb..71f294151b1d 100644 --- a/data/registry/instrumentation-ruby-active-job.yml +++ b/data/registry/instrumentation-ruby-active-job.yml @@ -1,13 +1,14 @@ title: ActiveJob Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - active_job -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_job license: Apache 2.0 description: ActiveJob instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_job +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-active-model-serializers.yml b/data/registry/instrumentation-ruby-active-model-serializers.yml index fcf758f43a78..6ed83cc9ae12 100644 --- a/data/registry/instrumentation-ruby-active-model-serializers.yml +++ b/data/registry/instrumentation-ruby-active-model-serializers.yml @@ -1,12 +1,13 @@ title: Active Model Serializers Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_model_serializers license: Apache 2.0 description: Active Model Serializers instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_model_serializers +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-active-record.yml b/data/registry/instrumentation-ruby-active-record.yml index 9379844e144f..145f5533a0ef 100644 --- a/data/registry/instrumentation-ruby-active-record.yml +++ b/data/registry/instrumentation-ruby-active-record.yml @@ -1,13 +1,14 @@ title: ActiveRecord Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - active_record -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_record license: Apache 2.0 description: ActiveRecord instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_record +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-active-support.yml b/data/registry/instrumentation-ruby-active-support.yml index 48d0b5e5808e..af1e1bd2dcf4 100644 --- a/data/registry/instrumentation-ruby-active-support.yml +++ b/data/registry/instrumentation-ruby-active-support.yml @@ -1,13 +1,14 @@ title: ActiveSupport Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - active_support -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_support license: Apache 2.0 description: ActiveSupport instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/active_support +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-all.yml b/data/registry/instrumentation-ruby-all.yml index 80062c9f77b4..0178f20a2f60 100644 --- a/data/registry/instrumentation-ruby-all.yml +++ b/data/registry/instrumentation-ruby-all.yml @@ -1,12 +1,13 @@ title: All-in-one Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/all license: Apache 2.0 description: All-in-one instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/all +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-aws-sdk.yml b/data/registry/instrumentation-ruby-aws-sdk.yml index 34ddd82045f3..b429044f8bd0 100644 --- a/data/registry/instrumentation-ruby-aws-sdk.yml +++ b/data/registry/instrumentation-ruby-aws-sdk.yml @@ -1,14 +1,15 @@ title: OpenTelemetry aws-sdk Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - aws-sdk - aws -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/aws_sdk license: Apache 2.0 description: aws-sdk instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/aws_sdk +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-base.yml b/data/registry/instrumentation-ruby-base.yml index efa4e6a28d0a..afed40f963f7 100644 --- a/data/registry/instrumentation-ruby-base.yml +++ b/data/registry/instrumentation-ruby-base.yml @@ -1,15 +1,16 @@ title: OpenTelemetry Instrumentation Base registryType: instrumentation -isThirdParty: false language: ruby tags: - base - instrumentation - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/base license: Apache 2.0 description: The opentelemetry-instrumentation-base gem contains the instrumentation base class, and the instrumentation registry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/base +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-ruby-bunny.yml b/data/registry/instrumentation-ruby-bunny.yml index c236b17f86a8..f9c40d6d0879 100644 --- a/data/registry/instrumentation-ruby-bunny.yml +++ b/data/registry/instrumentation-ruby-bunny.yml @@ -1,13 +1,14 @@ title: Bunny Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - bunny -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/bunny license: Apache 2.0 description: Bunny instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/bunny +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-concurrent-ruby.yml b/data/registry/instrumentation-ruby-concurrent-ruby.yml index ed30267b2a18..182aa8e2f068 100644 --- a/data/registry/instrumentation-ruby-concurrent-ruby.yml +++ b/data/registry/instrumentation-ruby-concurrent-ruby.yml @@ -1,12 +1,13 @@ title: ConcurrentRuby Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/concurrent_ruby license: Apache 2.0 description: ConcurrentRuby instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/concurrent_ruby +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-dalli.yml b/data/registry/instrumentation-ruby-dalli.yml index 6a209f00e33e..ebd4c74e8d44 100644 --- a/data/registry/instrumentation-ruby-dalli.yml +++ b/data/registry/instrumentation-ruby-dalli.yml @@ -1,13 +1,14 @@ # cSpell:ignore Dalli title: Dalli Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/dalli license: Apache 2.0 description: Dalli instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/dalli +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-delayed-job.yml b/data/registry/instrumentation-ruby-delayed-job.yml index b6e909f6e3e4..4347348e0b3d 100644 --- a/data/registry/instrumentation-ruby-delayed-job.yml +++ b/data/registry/instrumentation-ruby-delayed-job.yml @@ -1,12 +1,13 @@ title: Delayed Job Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/delayed_job license: Apache 2.0 description: Delayed Job instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/delayed_job +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-ethon.yml b/data/registry/instrumentation-ruby-ethon.yml index ecfbab9fbe4e..dfb8dc5f0c6b 100644 --- a/data/registry/instrumentation-ruby-ethon.yml +++ b/data/registry/instrumentation-ruby-ethon.yml @@ -1,13 +1,14 @@ # cSpell:ignore Ethon title: Ethon Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/ethon license: Apache 2.0 description: Ethon instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/ethon +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-excon.yml b/data/registry/instrumentation-ruby-excon.yml index 42e773e036ff..67af8576da1d 100644 --- a/data/registry/instrumentation-ruby-excon.yml +++ b/data/registry/instrumentation-ruby-excon.yml @@ -1,14 +1,15 @@ # cSpell:ignore excon title: Excon Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - excon - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/excon license: Apache 2.0 description: Excon instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/excon +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-faraday.yml b/data/registry/instrumentation-ruby-faraday.yml index 7404866d7dc9..18705f0e1c94 100644 --- a/data/registry/instrumentation-ruby-faraday.yml +++ b/data/registry/instrumentation-ruby-faraday.yml @@ -1,12 +1,13 @@ title: Faraday Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/faraday license: Apache 2.0 description: Faraday instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/faraday +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-grape.yml b/data/registry/instrumentation-ruby-grape.yml index 0533d00420f5..48a5947881fa 100644 --- a/data/registry/instrumentation-ruby-grape.yml +++ b/data/registry/instrumentation-ruby-grape.yml @@ -1,15 +1,16 @@ title: OpenTelemetry Grape Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - grape - instrumentation - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/grape license: Apache 2.0 description: The Grape instrumentation is a community-maintained instrumentation for Grape, a REST-like API framework for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/grape +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-ruby-graphql.yml b/data/registry/instrumentation-ruby-graphql.yml index 0d5bc9d6f331..0dec030da62b 100644 --- a/data/registry/instrumentation-ruby-graphql.yml +++ b/data/registry/instrumentation-ruby-graphql.yml @@ -1,12 +1,13 @@ title: GraphQL Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/graphql license: Apache 2.0 description: GraphQL instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/graphql +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-gruf.yml b/data/registry/instrumentation-ruby-gruf.yml index c10ec27986b2..81e75d2d9e23 100644 --- a/data/registry/instrumentation-ruby-gruf.yml +++ b/data/registry/instrumentation-ruby-gruf.yml @@ -1,15 +1,16 @@ # cSpell:ignore gruf title: OpenTelemetry gruf Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - gruf - grpc - instrumentation - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/gruf license: Apache 2.0 description: Instrumentation for gruf (gRPC Ruby Framework). -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/gruf +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-http-client.yml b/data/registry/instrumentation-ruby-http-client.yml index 753b6a784954..ce2535f0eaeb 100644 --- a/data/registry/instrumentation-ruby-http-client.yml +++ b/data/registry/instrumentation-ruby-http-client.yml @@ -1,12 +1,13 @@ title: HttpClient Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/http_client license: Apache 2.0 description: HttpClient instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/http_client +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-http.yml b/data/registry/instrumentation-ruby-http.yml index a73bb31ed05f..5a0521f6caf2 100644 --- a/data/registry/instrumentation-ruby-http.yml +++ b/data/registry/instrumentation-ruby-http.yml @@ -1,12 +1,13 @@ title: HTTP Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/http license: Apache 2.0 description: HTTP instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/http +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-httpx.yml b/data/registry/instrumentation-ruby-httpx.yml index c6b9e926e60b..0b92462f02eb 100644 --- a/data/registry/instrumentation-ruby-httpx.yml +++ b/data/registry/instrumentation-ruby-httpx.yml @@ -1,16 +1,17 @@ # cSpell:ignore httpx title: OpenTelemetry HTTPX Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - httpx - instrumentation - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/httpx license: Apache 2.0 description: The HTTPX instrumentation is a community-maintained instrumentation for the HTTPX gem. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/httpx +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-ruby-koala.yml b/data/registry/instrumentation-ruby-koala.yml index eedb44dd5764..ed39824eac89 100644 --- a/data/registry/instrumentation-ruby-koala.yml +++ b/data/registry/instrumentation-ruby-koala.yml @@ -1,13 +1,14 @@ title: Koala Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - koala -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/koala license: Apache 2.0 description: Koala instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/koala +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-lmdb.yml b/data/registry/instrumentation-ruby-lmdb.yml index a8eb3a43e45e..76d7e114cc64 100644 --- a/data/registry/instrumentation-ruby-lmdb.yml +++ b/data/registry/instrumentation-ruby-lmdb.yml @@ -1,14 +1,15 @@ # cSpell:ignore lmdb title: LMDB Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - lmdb -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/lmdb license: Apache 2.0 description: LMDB instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/lmdb +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-mongo.yml b/data/registry/instrumentation-ruby-mongo.yml index 69a5e1edfd66..dad20a0b8451 100644 --- a/data/registry/instrumentation-ruby-mongo.yml +++ b/data/registry/instrumentation-ruby-mongo.yml @@ -1,12 +1,13 @@ title: Mongo Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/mongo license: Apache 2.0 description: Mongo instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/mongo +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-mysql2.yml b/data/registry/instrumentation-ruby-mysql2.yml index 91b64043ff40..e556edb58c5c 100644 --- a/data/registry/instrumentation-ruby-mysql2.yml +++ b/data/registry/instrumentation-ruby-mysql2.yml @@ -1,12 +1,13 @@ title: Mysql2 Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/mysql2 license: Apache 2.0 description: Mysql2 instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/mysql2 +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-net-http.yml b/data/registry/instrumentation-ruby-net-http.yml index c5dfda561f05..792d779650d3 100644 --- a/data/registry/instrumentation-ruby-net-http.yml +++ b/data/registry/instrumentation-ruby-net-http.yml @@ -1,12 +1,13 @@ title: Net::HTTP Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/net_http license: Apache 2.0 description: Net::HTTP instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/net_http +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-pg.yml b/data/registry/instrumentation-ruby-pg.yml index 0d422b299c96..70dec1783b6b 100644 --- a/data/registry/instrumentation-ruby-pg.yml +++ b/data/registry/instrumentation-ruby-pg.yml @@ -1,14 +1,15 @@ title: PG Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - pg - postgresql -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/pg license: Apache 2.0 description: PG instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/pg +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-que.yml b/data/registry/instrumentation-ruby-que.yml index 15f3244529c4..4debfc4c8f2e 100644 --- a/data/registry/instrumentation-ruby-que.yml +++ b/data/registry/instrumentation-ruby-que.yml @@ -1,13 +1,14 @@ title: Que Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - que -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/que license: Apache 2.0 description: Que instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/que +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-racecar.yml b/data/registry/instrumentation-ruby-racecar.yml index b2c2e6ae3b3f..39dc4243130f 100644 --- a/data/registry/instrumentation-ruby-racecar.yml +++ b/data/registry/instrumentation-ruby-racecar.yml @@ -1,16 +1,17 @@ # cSpell:ignore racecar title: OpenTelemetry Racecar Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - racecar - instrumentation - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/racecar license: Apache 2.0 description: The Racecar instrumentation is a community-maintained instrumentation for Racecar, a client library for Apache Kafka. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/racecar +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-ruby-rack.yml b/data/registry/instrumentation-ruby-rack.yml index f5a132ea7beb..bb503e498f35 100644 --- a/data/registry/instrumentation-ruby-rack.yml +++ b/data/registry/instrumentation-ruby-rack.yml @@ -1,12 +1,13 @@ title: Rack Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rack license: Apache 2.0 description: Rack instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rack +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-rails.yml b/data/registry/instrumentation-ruby-rails.yml index f4b0f43ce5ea..234f445d224f 100644 --- a/data/registry/instrumentation-ruby-rails.yml +++ b/data/registry/instrumentation-ruby-rails.yml @@ -1,12 +1,13 @@ title: Rails Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rails license: Apache 2.0 description: Rails instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rails +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-rake.yml b/data/registry/instrumentation-ruby-rake.yml index 01dbd0c35375..a3dd1d339c38 100644 --- a/data/registry/instrumentation-ruby-rake.yml +++ b/data/registry/instrumentation-ruby-rake.yml @@ -1,15 +1,16 @@ title: OpenTelemetry Rake Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - rake - instrumentation - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rake license: Apache 2.0 description: The Rake instrumentation is a community-maintained instrumentation for the Rake task invocation. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rake +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-ruby-rdkafka.yml b/data/registry/instrumentation-ruby-rdkafka.yml index b27ee7b3a1da..5f111ca92e82 100644 --- a/data/registry/instrumentation-ruby-rdkafka.yml +++ b/data/registry/instrumentation-ruby-rdkafka.yml @@ -1,16 +1,17 @@ # cSpell:ignore rdkafka title: OpenTelemetry rdkafka Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - rdkafka - instrumentation - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rdkafka license: Apache 2.0 description: The rdkafka instrumentation is a community-maintained instrumentation for rdkafka, a client library for Apache Kafka. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rdkafka +createdAt: 2022-10-27 diff --git a/data/registry/instrumentation-ruby-redis.yml b/data/registry/instrumentation-ruby-redis.yml index 8dd86ae19cbf..4224103e56ef 100644 --- a/data/registry/instrumentation-ruby-redis.yml +++ b/data/registry/instrumentation-ruby-redis.yml @@ -1,12 +1,17 @@ title: Redis Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/redis license: Apache 2.0 description: Redis instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +package: + registry: gems + name: opentelemetry-instrumentation-redis + version: 0.25.3 +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/redis +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-resque.yml b/data/registry/instrumentation-ruby-resque.yml index 0c0ce0413f1f..482efe3f4b20 100644 --- a/data/registry/instrumentation-ruby-resque.yml +++ b/data/registry/instrumentation-ruby-resque.yml @@ -1,14 +1,15 @@ # cSpell:ignore resque title: Resque Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - resque -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/resque license: Apache 2.0 description: Resque instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/resque +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-restclient.yml b/data/registry/instrumentation-ruby-restclient.yml index d053196f9cf7..561ae141df83 100644 --- a/data/registry/instrumentation-ruby-restclient.yml +++ b/data/registry/instrumentation-ruby-restclient.yml @@ -1,12 +1,13 @@ title: REST Client Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/restclient license: Apache 2.0 description: REST Client instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/restclient +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-rspec.yml b/data/registry/instrumentation-ruby-rspec.yml index 6847cb7c18b9..48e603661104 100644 --- a/data/registry/instrumentation-ruby-rspec.yml +++ b/data/registry/instrumentation-ruby-rspec.yml @@ -1,13 +1,14 @@ title: RSpec Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - rspec -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rspec license: Apache 2.0 description: RSpec instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rspec +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-ruby-kafka.yml b/data/registry/instrumentation-ruby-ruby-kafka.yml index e26fbbb9dbbf..01b934220a63 100644 --- a/data/registry/instrumentation-ruby-ruby-kafka.yml +++ b/data/registry/instrumentation-ruby-ruby-kafka.yml @@ -1,12 +1,13 @@ title: RubyKafka Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/ruby_kafka license: Apache 2.0 description: RubyKafka instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/ruby_kafka +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-sidekiq.yml b/data/registry/instrumentation-ruby-sidekiq.yml index 7ab79c10402e..3887f7acd98f 100644 --- a/data/registry/instrumentation-ruby-sidekiq.yml +++ b/data/registry/instrumentation-ruby-sidekiq.yml @@ -1,13 +1,14 @@ # cSpell:ignore Sidekiq title: Sidekiq Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/sidekiq license: Apache 2.0 description: Sidekiq instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/sidekiq +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-sinatra.yml b/data/registry/instrumentation-ruby-sinatra.yml index 9b33ff8b11a7..7ad09a86cc2e 100644 --- a/data/registry/instrumentation-ruby-sinatra.yml +++ b/data/registry/instrumentation-ruby-sinatra.yml @@ -1,12 +1,13 @@ title: Sinatra Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/sinatra license: Apache 2.0 description: Sinatra instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/sinatra +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-ruby-trilogy.yml b/data/registry/instrumentation-ruby-trilogy.yml index d9f9670f8fa9..0bcb3304d3e1 100644 --- a/data/registry/instrumentation-ruby-trilogy.yml +++ b/data/registry/instrumentation-ruby-trilogy.yml @@ -1,13 +1,14 @@ title: Trilogy Instrumentation registryType: instrumentation -isThirdParty: false language: ruby tags: - ruby - instrumentation - trilogy -repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/trilogy license: Apache 2.0 description: Trilogy instrumentation for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/trilogy +createdAt: 2020-11-09 diff --git a/data/registry/instrumentation-rust-actix-web.yml b/data/registry/instrumentation-rust-actix-web.yml index ba6b8b1ee353..7199784e4fc8 100644 --- a/data/registry/instrumentation-rust-actix-web.yml +++ b/data/registry/instrumentation-rust-actix-web.yml @@ -1,13 +1,14 @@ # cSpell:ignore Actix Tescher title: Actix Web Instrumentation registryType: instrumentation -isThirdParty: true language: rust tags: - rust - instrumentation -repo: https://github.com/OutThereLabs/actix-web-opentelemetry license: MIT description: OpenTelemetry integration for Actix Web. -authors: Julian Tescher -otVersion: latest +authors: + - name: Julian Tescher +urls: + repo: https://github.com/OutThereLabs/actix-web-opentelemetry +createdAt: 2020-08-28 diff --git a/data/registry/instrumentation-rust-tide.yml b/data/registry/instrumentation-rust-tide.yml index 789f992c8a5a..65ce9b746889 100644 --- a/data/registry/instrumentation-rust-tide.yml +++ b/data/registry/instrumentation-rust-tide.yml @@ -1,13 +1,14 @@ # cSpell:ignore Grabo title: Tide Instrumentation registryType: instrumentation -isThirdParty: true language: rust tags: - rust - instrumentation -repo: https://github.com/asaaki/opentelemetry-tide license: Apache 2.0 OR MIT description: OpenTelemetry integration for the Tide web framework. -authors: Christoph Grabo -otVersion: latest +authors: + - name: Christoph Grabo +urls: + repo: https://github.com/asaaki/opentelemetry-tide +createdAt: 2020-08-28 diff --git a/data/registry/instrumentation-rust-tracing.yml b/data/registry/instrumentation-rust-tracing.yml index 6eb101f08743..4fce4f635815 100644 --- a/data/registry/instrumentation-rust-tracing.yml +++ b/data/registry/instrumentation-rust-tracing.yml @@ -1,13 +1,15 @@ title: Tracing Instrumentation registryType: instrumentation -isThirdParty: true language: rust tags: - rust - instrumentation -repo: https://github.com/tokio-rs/tracing-opentelemetry license: MIT description: Utilities for adding OpenTelemetry interoperability to tracing. -authors: Julian Tescher -otVersion: latest +authors: + - name: Julian Tescher # cSpell:ignore Tescher + +urls: + repo: https://github.com/tokio-rs/tracing-opentelemetry +createdAt: 2020-08-28 diff --git a/data/registry/instrumentation-swift-urlsession.yml b/data/registry/instrumentation-swift-urlsession.yml index 08b54b1b19f6..267a54a130da 100644 --- a/data/registry/instrumentation-swift-urlsession.yml +++ b/data/registry/instrumentation-swift-urlsession.yml @@ -1,6 +1,5 @@ title: URLSession Instrumentation registryType: instrumentation -isThirdParty: false language: swift tags: - swift @@ -8,10 +7,12 @@ tags: - ios - macOS - tvOS -repo: https://github.com/open-telemetry/opentelemetry-swift/tree/main/Sources/Instrumentation/URLSession license: Apache 2.0 description: This library provides a URLSession instrumentation to track requests through OpenTelemetry. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-swift/tree/main/Sources/Instrumentation/URLSession +createdAt: 2021-06-22 diff --git a/data/registry/logs-php-monolog.yml b/data/registry/logs-php-monolog.yml index 4f58f3f867dd..151b6d561320 100644 --- a/data/registry/logs-php-monolog.yml +++ b/data/registry/logs-php-monolog.yml @@ -1,12 +1,13 @@ title: Monolog Appender registryType: core -isThirdParty: false language: php tags: - php - logs -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Logs/Monolog license: Apache 2.0 description: MonoLog Log Appender for PHP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/Logs/Monolog +createdAt: 2022-12-14 diff --git a/data/registry/otel-clojure.yml b/data/registry/otel-clojure.yml index 7ed2a3f37df3..1bcfa32c51ee 100644 --- a/data/registry/otel-clojure.yml +++ b/data/registry/otel-clojure.yml @@ -1,15 +1,16 @@ # cSpell:ignore Steffan Westcott title: clj-otel - Idiomatic Clojure API for OpenTelemetry registryType: extension -isThirdParty: true language: java tags: - clojure - instrumentation -repo: https://github.com/steffan-westcott/clj-otel license: Apache 2.0 description: An idiomatic Clojure API for adding telemetry to your libraries and applications using OpenTelemetry. -authors: Steffan Westcott -otVersion: latest +authors: + - name: Steffan Westcott +urls: + repo: https://github.com/steffan-westcott/clj-otel +createdAt: 2022-03-04 diff --git a/data/registry/otel-collector.yml b/data/registry/otel-collector.yml index c64660ba1358..805ee2825913 100644 --- a/data/registry/otel-collector.yml +++ b/data/registry/otel-collector.yml @@ -1,12 +1,13 @@ title: Collector registryType: core -isThirdParty: false language: collector tags: - collector - agent -repo: https://github.com/open-telemetry/opentelemetry-collector license: Apache 2.0 description: The OpenTelemetry Collector (Agent/Service) -authors: OpenTelemetry Authors -otVersion: 0.2.1 +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-collector +createdAt: 2020-02-04 diff --git a/data/registry/otel-cpp.yml b/data/registry/otel-cpp.yml index a34f96ab126d..07089761fc43 100644 --- a/data/registry/otel-cpp.yml +++ b/data/registry/otel-cpp.yml @@ -1,11 +1,12 @@ title: C++ registryType: core -isThirdParty: false language: cpp tags: - cpp -repo: https://github.com/open-telemetry/opentelemetry-cpp license: Apache 2.0 description: The OpenTelemetry API and SDK for C++. -authors: OpenTelemetry Authors -otVersion: unknown +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-cpp +createdAt: 2020-02-04 diff --git a/data/registry/otel-crystal.yml b/data/registry/otel-crystal.yml index aca9648da20f..fa6865195d99 100644 --- a/data/registry/otel-crystal.yml +++ b/data/registry/otel-crystal.yml @@ -1,13 +1,14 @@ # cSpell:ignore wyhaines title: opentelemetry-api.cr registryType: instrumentation -isThirdParty: true language: crystal tags: - crystal - instrumentation -repo: https://github.com/wyhaines/opentelemetry-api.cr -license: Apache-2.0 +license: Apache 2.0 description: An unofficial implementation of OpenTelemetry in Crystal. -authors: wyhaines -otVersion: latest +authors: + - name: wyhaines +urls: + repo: https://github.com/wyhaines/opentelemetry-api.cr +createdAt: 2022-12-17 diff --git a/data/registry/otel-dart.yml b/data/registry/otel-dart.yml index 64961b0643fc..11863b2a5a7f 100644 --- a/data/registry/otel-dart.yml +++ b/data/registry/otel-dart.yml @@ -1,13 +1,14 @@ # cSpell:ignore Workiva title: OpenTelemetry for Dart registryType: instrumentation -isThirdParty: true language: dart tags: - dart - instrumentation -repo: https://github.com/Workiva/opentelemetry-dart -license: Apache-2.0 +license: Apache 2.0 description: An unofficial implementation of OpenTelemetry in Dart. -authors: Workiva -otVersion: latest +authors: + - name: Workiva +urls: + repo: https://github.com/Workiva/opentelemetry-dart +createdAt: 2022-12-17 diff --git a/data/registry/otel-dotnet.yml b/data/registry/otel-dotnet.yml index 0e7eef29602b..c5a498924540 100644 --- a/data/registry/otel-dotnet.yml +++ b/data/registry/otel-dotnet.yml @@ -1,12 +1,13 @@ title: .NET registryType: core -isThirdParty: false language: dotnet tags: - c# - .net -repo: https://github.com/open-telemetry/opentelemetry-dotnet license: Apache 2.0 description: The OpenTelemetry API and SDK for .NET (C#, F#) -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-dotnet +createdAt: 2020-02-04 diff --git a/data/registry/otel-erlang-api.yml b/data/registry/otel-erlang-api.yml index ba4a5ab37342..e37b09ce9250 100644 --- a/data/registry/otel-erlang-api.yml +++ b/data/registry/otel-erlang-api.yml @@ -1,12 +1,13 @@ title: Erlang/Elixir registryType: core -isThirdParty: false language: erlang tags: - erlang - elixir -repo: https://github.com/open-telemetry/opentelemetry-erlang-api license: Apache 2.0 description: The OpenTelemetry API for Erlang and Elixir. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang-api +createdAt: 2020-02-04 diff --git a/data/registry/otel-erlang-sdk.yml b/data/registry/otel-erlang-sdk.yml index dd0dfecf785d..0463390b1364 100644 --- a/data/registry/otel-erlang-sdk.yml +++ b/data/registry/otel-erlang-sdk.yml @@ -1,12 +1,13 @@ title: Erlang/Elixir registryType: core -isThirdParty: false language: erlang tags: - erlang - elixir -repo: https://github.com/open-telemetry/opentelemetry-erlang license: Apache 2.0 description: The OpenTelemetry SDK for Erlang and Elixir. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-erlang +createdAt: 2020-02-04 diff --git a/data/registry/otel-go-autoinstrumentation.yml b/data/registry/otel-go-autoinstrumentation.yml index e4155123ae59..a53c6c688478 100644 --- a/data/registry/otel-go-autoinstrumentation.yml +++ b/data/registry/otel-go-autoinstrumentation.yml @@ -1,12 +1,13 @@ title: Go Automatic Instrumentation registryType: instrumentation -isThirdParty: true language: go tags: - go - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-go-instrumentation/ license: Apache 2.0 description: OpenTelemetry automatic instrumentation for Go applications. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-instrumentation/ +createdAt: 2022-04-28 diff --git a/data/registry/otel-go.yml b/data/registry/otel-go.yml index 6d91b3be48fc..72d6d80f8bb0 100644 --- a/data/registry/otel-go.yml +++ b/data/registry/otel-go.yml @@ -1,11 +1,12 @@ title: Go registryType: core -isThirdParty: false language: go tags: - go -repo: https://github.com/open-telemetry/opentelemetry-go license: Apache 2.0 description: The OpenTelemetry API and SDK for Go. -authors: OpenTelemetry Authors -otVersion: 0.2.1 +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go +createdAt: 2020-02-04 diff --git a/data/registry/otel-haskell.yml b/data/registry/otel-haskell.yml index c3c90194ec17..a49c7f0dfa02 100644 --- a/data/registry/otel-haskell.yml +++ b/data/registry/otel-haskell.yml @@ -1,13 +1,14 @@ # cSpell:ignore ethercrow title: OpenTelemetry for Haskell registryType: instrumentation -isThirdParty: true language: haskell tags: - haskell - instrumentation -repo: https://github.com/ethercrow/opentelemetry-haskell -license: Apache-2.0 +license: Apache 2.0 description: An unofficial implementation of OpenTelemetry in Haskell. -authors: ethercrow -otVersion: latest +authors: + - name: ethercrow +urls: + repo: https://github.com/ethercrow/opentelemetry-haskell +createdAt: 2022-12-17 diff --git a/data/registry/otel-java-instrumentation.yml b/data/registry/otel-java-instrumentation.yml index af7b78383411..037d9d4aa65f 100644 --- a/data/registry/otel-java-instrumentation.yml +++ b/data/registry/otel-java-instrumentation.yml @@ -1,13 +1,14 @@ title: Java Instrumentation registryType: instrumentation -isThirdParty: false language: java tags: - java - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation license: Apache 2.0 description: Both auto-instrumentation and (manual) instrumentation libraries for Java. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java-instrumentation +createdAt: 2020-03-25 diff --git a/data/registry/otel-java.yml b/data/registry/otel-java.yml index 07afc20fd7a2..b9c0c98dd0a7 100644 --- a/data/registry/otel-java.yml +++ b/data/registry/otel-java.yml @@ -1,11 +1,12 @@ title: Java registryType: core -isThirdParty: false language: java tags: - java -repo: https://github.com/open-telemetry/opentelemetry-java license: Apache 2.0 description: The OpenTelemetry API and SDK for Java. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-java +createdAt: 2020-02-04 diff --git a/data/registry/otel-js.yml b/data/registry/otel-js.yml index 02ab881732cd..a6e44a48b5a9 100644 --- a/data/registry/otel-js.yml +++ b/data/registry/otel-js.yml @@ -1,13 +1,14 @@ title: JavaScript registryType: core -isThirdParty: false language: js tags: - javascript - node.js - browser -repo: https://github.com/open-telemetry/opentelemetry-js license: Apache 2.0 description: The OpenTelemetry API and SDK for JavaScript (Browser and Node) -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js +createdAt: 2020-02-04 diff --git a/data/registry/otel-julia.yml b/data/registry/otel-julia.yml index 83aab42815b2..e4e1cee29f18 100644 --- a/data/registry/otel-julia.yml +++ b/data/registry/otel-julia.yml @@ -1,12 +1,14 @@ title: OpenTelemetry.jl registryType: instrumentation -isThirdParty: true language: julia tags: - julia - instrumentation -repo: https://github.com/oolong-dev/OpenTelemetry.jl -license: Apache-2.0 +license: Apache 2.0 description: An unofficial implementation of OpenTelemetry in Julia. -authors: oolong.dev (https://github.com/oolong-dev) -otVersion: latest +authors: + - name: oolong.dev + url: https://github.com/oolong-dev +urls: + repo: https://github.com/oolong-dev/OpenTelemetry.jl +createdAt: 2022-12-17 diff --git a/data/registry/otel-kotlin.yml b/data/registry/otel-kotlin.yml index e68a850d1db6..f972b76ff99e 100644 --- a/data/registry/otel-kotlin.yml +++ b/data/registry/otel-kotlin.yml @@ -1,14 +1,15 @@ title: Kotlin registryType: core -isThirdParty: true language: kotlin tags: - Kotlin - Js - Jvm - Native -repo: https://github.com/dcxp/opentelemetry-kotlin license: Apache 2.0 description: The OpenTelemetry API and SDK for Kotlin. -authors: SNK; OpenTelemetry Authors -otVersion: latest +authors: + - name: SNK; OpenTelemetry Authors +urls: + repo: https://github.com/dcxp/opentelemetry-kotlin +createdAt: 2022-02-18 diff --git a/data/registry/otel-kube-operator.yml b/data/registry/otel-kube-operator.yml index 28adc50a33ad..51843920bb88 100644 --- a/data/registry/otel-kube-operator.yml +++ b/data/registry/otel-kube-operator.yml @@ -1,11 +1,12 @@ title: Kubernetes Operator registryType: core -isThirdParty: false language: collector tags: - kubernetes -repo: https://github.com/open-telemetry/opentelemetry-operator license: Apache 2.0 description: A Kubernetes Operator for the OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-operator +createdAt: 2020-02-04 diff --git a/data/registry/otel-lua.yml b/data/registry/otel-lua.yml index 7d5d9540845d..7b34db0de486 100644 --- a/data/registry/otel-lua.yml +++ b/data/registry/otel-lua.yml @@ -1,13 +1,14 @@ # cSpell:ignore yangxikun title: opentelemetry-lua registryType: instrumentation -isThirdParty: true language: lua tags: - lua - instrumentation -repo: https://github.com/yangxikun/opentelemetry-lua -license: Apache-2.0 +license: Apache 2.0 description: An unofficial implementation of OpenTelemetry in lua. -authors: yangxikun -otVersion: latest +authors: + - name: yangxikun +urls: + repo: https://github.com/yangxikun/opentelemetry-lua +createdAt: 2022-12-17 diff --git a/data/registry/otel-ocaml.yml b/data/registry/otel-ocaml.yml index 836c1cf75d0b..dec67fb84a83 100644 --- a/data/registry/otel-ocaml.yml +++ b/data/registry/otel-ocaml.yml @@ -1,15 +1,17 @@ # cSpell:ignore Imandra title: OpenTelemetry exporters and instrumentation for OCaml registryType: instrumentation -isThirdParty: true language: ocaml tags: - OCaml - instrumentation -repo: https://github.com/imandra-ai/ocaml-opentelemetry/ license: MIT description: OCaml instrumentation primitives (scopes, metrics, logs, etc.), along with several exporters to talk to signal collectors -authors: Imandra (https://imandra.ai) -otVersion: 0.19 +authors: + - name: Imandra + url: https://imandra.ai +urls: + repo: https://github.com/imandra-ai/ocaml-opentelemetry/ +createdAt: 2022-10-26 diff --git a/data/registry/otel-perl-api.yml b/data/registry/otel-perl-api.yml index 669e30613d6c..80d4e5ffc7f1 100644 --- a/data/registry/otel-perl-api.yml +++ b/data/registry/otel-perl-api.yml @@ -1,13 +1,14 @@ # cSpell:ignore jjatria title: OpenTelemetry for Perl registryType: instrumentation -isThirdParty: true language: perl tags: - perl - instrumentation -repo: https://github.com/jjatria/perl-opentelemetry license: Artistic-1.0-Perl description: An unofficial implementation of OpenTelemetry in Perl. -authors: jjatria -otVersion: latest +authors: + - name: jjatria +urls: + repo: https://github.com/jjatria/perl-opentelemetry +createdAt: 2022-12-17 diff --git a/data/registry/otel-perl-sdk.yml b/data/registry/otel-perl-sdk.yml index 0595a890673b..8bee747cf915 100644 --- a/data/registry/otel-perl-sdk.yml +++ b/data/registry/otel-perl-sdk.yml @@ -1,13 +1,14 @@ # cSpell:ignore jjatria title: OpenTelemetry SDK for Perl registryType: instrumentation -isThirdParty: true language: perl tags: - perl - instrumentation -repo: https://github.com/jjatria/perl-opentelemetry-sdk license: Artistic-1.0-Perl description: An unofficial implementation of the OpenTelemetry SDK in Perl. -authors: jjatria -otVersion: latest +authors: + - name: jjatria +urls: + repo: https://github.com/jjatria/perl-opentelemetry-sdk +createdAt: 2023-12-05 diff --git a/data/registry/otel-php-api.yml b/data/registry/otel-php-api.yml index ddc3f9e46cab..7172076b2f91 100644 --- a/data/registry/otel-php-api.yml +++ b/data/registry/otel-php-api.yml @@ -1,11 +1,12 @@ title: PHP API registryType: core -isThirdParty: false language: php tags: - php -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/API license: Apache 2.0 description: The OpenTelemetry API for PHP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/API +createdAt: 2022-12-14 diff --git a/data/registry/otel-php-autoinstrumentation.yml b/data/registry/otel-php-autoinstrumentation.yml index e981da075ff4..ce2801e67be5 100644 --- a/data/registry/otel-php-autoinstrumentation.yml +++ b/data/registry/otel-php-autoinstrumentation.yml @@ -1,14 +1,15 @@ title: PHP Automatic Instrumentation registryType: instrumentation -isThirdParty: false language: php tags: - php - instrumentation -repo: https://github.com/open-telemetry/opentelemetry-php-instrumentation license: Apache 2.0 description: Extension for OpenTelemetry, to enable auto-instrumentation. It is based on zend_observer and requires PHP8+ -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-instrumentation +createdAt: 2022-12-14 diff --git a/data/registry/otel-php-context.yml b/data/registry/otel-php-context.yml index 179a63db4108..296b1ba24eea 100644 --- a/data/registry/otel-php-context.yml +++ b/data/registry/otel-php-context.yml @@ -1,11 +1,12 @@ title: PHP Context registryType: core -isThirdParty: false language: php tags: - php -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Context license: Apache 2.0 description: OpenTelemetry Context for PHP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Context +createdAt: 2022-12-14 diff --git a/data/registry/otel-php-sdk.yml b/data/registry/otel-php-sdk.yml index 720f72921465..f29dd79c7083 100644 --- a/data/registry/otel-php-sdk.yml +++ b/data/registry/otel-php-sdk.yml @@ -1,11 +1,12 @@ title: PHP SDK registryType: core -isThirdParty: false language: php tags: - php -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/SDK license: Apache 2.0 description: The OpenTelemetry SDK for PHP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/SDK +createdAt: 2022-12-14 diff --git a/data/registry/otel-php-semconv.yml b/data/registry/otel-php-semconv.yml index 05c16d9bf3b7..dc63beef05a4 100644 --- a/data/registry/otel-php-semconv.yml +++ b/data/registry/otel-php-semconv.yml @@ -1,11 +1,12 @@ title: PHP SemConv registryType: core -isThirdParty: false language: php tags: - php -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/SemConv license: Apache 2.0 description: OpenTelemetry Semantic Conventions for PHP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/SemConv +createdAt: 2022-12-14 diff --git a/data/registry/otel-php.yml b/data/registry/otel-php.yml index 8f820a8322c9..05e31d2819ae 100644 --- a/data/registry/otel-php.yml +++ b/data/registry/otel-php.yml @@ -1,11 +1,13 @@ title: PHP registryType: core -isThirdParty: false language: php tags: - php -repo: https://github.com/open-telemetry/opentelemetry-php license: Apache 2.0 description: The OpenTelemetry Core repository for PHP. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php + docs: /docs/languages/php/ +createdAt: 2020-02-04 diff --git a/data/registry/otel-python.yml b/data/registry/otel-python.yml index ea94cade591f..3c92b71c700e 100644 --- a/data/registry/otel-python.yml +++ b/data/registry/otel-python.yml @@ -1,11 +1,12 @@ title: Python registryType: core -isThirdParty: false language: python tags: - python -repo: https://github.com/open-telemetry/opentelemetry-python license: Apache 2.0 description: The OpenTelemetry API and SDK for Python. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python +createdAt: 2020-02-04 diff --git a/data/registry/otel-ruby.yml b/data/registry/otel-ruby.yml index f0727a0b69da..3fec68b3e279 100644 --- a/data/registry/otel-ruby.yml +++ b/data/registry/otel-ruby.yml @@ -1,11 +1,12 @@ title: Ruby registryType: core -isThirdParty: false language: ruby tags: - ruby -repo: https://github.com/open-telemetry/opentelemetry-ruby license: Apache 2.0 description: The OpenTelemetry API and SDK for Ruby. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-ruby +createdAt: 2020-02-04 diff --git a/data/registry/otel-rust.yml b/data/registry/otel-rust.yml index 1b90a90f4d90..ff3e644e3882 100644 --- a/data/registry/otel-rust.yml +++ b/data/registry/otel-rust.yml @@ -1,11 +1,12 @@ title: Rust registryType: core -isThirdParty: false language: rust tags: - rust -repo: https://github.com/open-telemetry/opentelemetry-rust license: Apache 2.0 description: The OpenTelemetry API and SDK for Rust. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-rust +createdAt: 2020-02-04 diff --git a/data/registry/otel-scala.yml b/data/registry/otel-scala.yml index e7d1c69fe247..6d41f34eab9d 100644 --- a/data/registry/otel-scala.yml +++ b/data/registry/otel-scala.yml @@ -1,17 +1,20 @@ # cSpell:ignore typelevel Maksym Ochenashko title: otel4s registryType: instrumentation -isThirdParty: true language: scala tags: - scala - typelevel - cats-effect -repo: https://github.com/typelevel/otel4s license: Apache 2.0 description: An OpenTelemetry implementation for Scala, based on Cats-Effect authors: - - Ross A. Baker - - Zach McCoy - - Maksym Ochenashko -otVersion: latest + - name: Ross A. Baker + email: ross@rossabaker.com + - name: Zach McCoy + email: zachabbott@gmail.com + - name: Maksym Ochenashko + email: maxochenashko@gmail.com +urls: + repo: https://github.com/typelevel/otel4s +createdAt: 2023-02-07 diff --git a/data/registry/otel-swift.yml b/data/registry/otel-swift.yml index c9a05254c3cb..f7d399c66822 100644 --- a/data/registry/otel-swift.yml +++ b/data/registry/otel-swift.yml @@ -1,14 +1,15 @@ title: Swift registryType: core -isThirdParty: false language: swift tags: - swift - ios - macOS - tvOS -repo: https://github.com/open-telemetry/opentelemetry-swift license: Apache 2.0 description: The OpenTelemetry API and SDK for Swift. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-swift +createdAt: 2021-06-22 diff --git a/data/registry/resource-detector-go-aws.yml b/data/registry/resource-detector-go-aws.yml index 502674ffebb7..f159a9541c00 100644 --- a/data/registry/resource-detector-go-aws.yml +++ b/data/registry/resource-detector-go-aws.yml @@ -1,6 +1,5 @@ title: AWS Resource Detectors registryType: resource-detector -isThirdParty: false language: go tags: - aws @@ -10,8 +9,10 @@ tags: - lambda - resource-detector - go -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/detectors/aws license: Apache 2.0 description: AWS resource detectors for go. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/detectors/aws +createdAt: 2020-06-08 diff --git a/data/registry/resource-detector-go-gcp.yml b/data/registry/resource-detector-go-gcp.yml index 4c68d7439bfd..c07fa93f498b 100644 --- a/data/registry/resource-detector-go-gcp.yml +++ b/data/registry/resource-detector-go-gcp.yml @@ -1,13 +1,14 @@ title: GCP Resource detector registryType: resource-detector -isThirdParty: false language: go tags: - gcp - resource-detector - go -repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/detectors/gcp license: Apache 2.0 description: The GCP resource detector for go. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-go-contrib/tree/main/detectors/gcp +createdAt: 2020-06-08 diff --git a/data/registry/resource-detector-js-alibabacloud.yml b/data/registry/resource-detector-js-alibabacloud.yml index 6b86d89bb794..7141f7d1866f 100644 --- a/data/registry/resource-detector-js-alibabacloud.yml +++ b/data/registry/resource-detector-js-alibabacloud.yml @@ -1,14 +1,15 @@ # cSpell:ignore alibabacloud title: OpenTelemetry Resource Detector for Alibaba Cloud registryType: resource-detector -isThirdParty: false language: js tags: - alibabacloud - resource-detector - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-alibaba-cloud license: Apache 2.0 description: Resource detector for Alibaba Cloud -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-alibaba-cloud +createdAt: 2022-12-07 diff --git a/data/registry/resource-detector-js-aws.yml b/data/registry/resource-detector-js-aws.yml index 4f3da0efda06..6e79c83103ff 100644 --- a/data/registry/resource-detector-js-aws.yml +++ b/data/registry/resource-detector-js-aws.yml @@ -1,13 +1,14 @@ title: OpenTelemetry Resource Detector for AWS registryType: resource-detector -isThirdParty: false language: js tags: - aws - resource-detector - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-aws license: Apache 2.0 description: Resource detector for Amazon Web Services. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-aws +createdAt: 2022-12-07 diff --git a/data/registry/resource-detector-js-azure.yml b/data/registry/resource-detector-js-azure.yml index ab321f01215e..4eac41d414c2 100644 --- a/data/registry/resource-detector-js-azure.yml +++ b/data/registry/resource-detector-js-azure.yml @@ -1,13 +1,14 @@ title: OpenTelemetry Resource Detector for Azure registryType: resource-detector -isThirdParty: false language: js tags: - azure - resource-detector - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-azure license: Apache 2.0 description: Resource detector for Azure -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-azure +createdAt: 2022-12-07 diff --git a/data/registry/resource-detector-js-container.yml b/data/registry/resource-detector-js-container.yml index ce444b957671..b705e19525d6 100644 --- a/data/registry/resource-detector-js-container.yml +++ b/data/registry/resource-detector-js-container.yml @@ -1,15 +1,16 @@ title: OpenTelemetry Resource Detector for Container registryType: resource-detector -isThirdParty: false language: js tags: - container - resource-detector - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-container license: Apache 2.0 description: Resource detector for container ID. Compatible with OpenTelemetry JS API and SDK 1.0+. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-container +createdAt: 2022-12-07 diff --git a/data/registry/resource-detector-js-gcp.yml b/data/registry/resource-detector-js-gcp.yml index 201e3f85e490..38c1e5fb6c09 100644 --- a/data/registry/resource-detector-js-gcp.yml +++ b/data/registry/resource-detector-js-gcp.yml @@ -1,13 +1,14 @@ title: OpenTelemetry Resource Detector for GCP registryType: resource-detector -isThirdParty: false language: js tags: - gcp - resource-detector - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-gcp license: Apache 2.0 description: Resource detector for Google Cloud Platform. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-gcp +createdAt: 2022-12-07 diff --git a/data/registry/resource-detector-js-github.yml b/data/registry/resource-detector-js-github.yml index 29ab5b118584..5184d8eaaf2f 100644 --- a/data/registry/resource-detector-js-github.yml +++ b/data/registry/resource-detector-js-github.yml @@ -1,15 +1,16 @@ title: OpenTelemetry Resource Detector for GitHub Actions registryType: resource-detector -isThirdParty: false language: js tags: - github - resource-detector - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-github license: Apache 2.0 description: Detects GITHUB_* environment variables specified and adds as attributes on a resource. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-github +createdAt: 2022-12-07 diff --git a/data/registry/resource-detector-js-instana.yml b/data/registry/resource-detector-js-instana.yml index e78e0eaab6f6..e9c1e91eca92 100644 --- a/data/registry/resource-detector-js-instana.yml +++ b/data/registry/resource-detector-js-instana.yml @@ -1,15 +1,16 @@ title: OpenTelemetry Resource Detector for Instana registryType: resource-detector -isThirdParty: false language: js tags: - instana - resource-detector - js -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-instana license: Apache 2.0 description: This resource detector will detect the Instana agent to register the OpenTelemetry as a Node.js process -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/detectors/node/opentelemetry-resource-detector-instana +createdAt: 2022-12-07 diff --git a/data/registry/resource-detector-php-container.yml b/data/registry/resource-detector-php-container.yml index a46769bbe89a..2c4d25e9f0a1 100644 --- a/data/registry/resource-detector-php-container.yml +++ b/data/registry/resource-detector-php-container.yml @@ -1,13 +1,14 @@ title: OpenTelemetry Resource Detector for Container registryType: resource-detector -isThirdParty: false language: php tags: - container - resource-detector - php -repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/ResourceDetectors/Container license: Apache 2.0 description: Resource detector for container ID. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/src/ResourceDetectors/Container +createdAt: 2023-11-05 diff --git a/data/registry/sdk-extension-python-aws.yml b/data/registry/sdk-extension-python-aws.yml index 3c904a676d01..1fa3d62fd938 100644 --- a/data/registry/sdk-extension-python-aws.yml +++ b/data/registry/sdk-extension-python-aws.yml @@ -1,14 +1,15 @@ title: AWS SDK Extension registryType: utilities -isThirdParty: true language: python tags: - python - sdk-extension -repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/sdk-extension/opentelemetry-sdk-extension-aws license: Apache 2.0 description: This library provides components to configure OpenTelemetry Python to generate traces which are compatible with AWS X-Ray. -authors: OpenTelemetry Authors -otVersion: latest +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/sdk-extension/opentelemetry-sdk-extension-aws +createdAt: 2020-12-03 diff --git a/data/registry/sdk-swift-nautilustelemetry.yml b/data/registry/sdk-swift-nautilustelemetry.yml index f9cfbf60ca06..a7d8a2394ba2 100644 --- a/data/registry/sdk-swift-nautilustelemetry.yml +++ b/data/registry/sdk-swift-nautilustelemetry.yml @@ -1,7 +1,6 @@ # cSpell:ignore Ladd title: NautilusTelemetry registryType: instrumentation -isThirdParty: true language: swift tags: - swift @@ -10,7 +9,6 @@ tags: - macOS - tvOS - watchOS -repo: https://github.com/eBay/NautilusTelemetry license: MIT description: NautilusTelemetry is an iOS-oriented Swift package to collect OpenTelemetry @@ -18,6 +16,9 @@ description: gRPC is not currently supported in order to keep the package size as small as possible. Not all features of OpenTelemetry are supported, and this package should be considered experimental. - -authors: Ladd Van Tol, -otVersion: latest +authors: + - name: Ladd Van Tol, + email: levantol@ebay.com +urls: + repo: https://github.com/eBay/NautilusTelemetry +createdAt: 2022-06-17 diff --git a/data/registry/span-processor-go-mralias-flow.yml b/data/registry/span-processor-go-mralias-flow.yml index 0ecb6713e55c..da85902d0c5d 100644 --- a/data/registry/span-processor-go-mralias-flow.yml +++ b/data/registry/span-processor-go-mralias-flow.yml @@ -1,15 +1,16 @@ title: flow - tracing flow metrics registryType: processor -isThirdParty: true language: go tags: - go - processor - prometheus -repo: https://github.com/MrAlias/flow license: Apache 2.0 description: An OpenTelemetry-Go SpanProcessor reporting tracing flow as Prometheus metrics. -authors: MrAlias -otVersion: latest +authors: + - name: MrAlias +urls: + repo: https://github.com/MrAlias/flow +createdAt: 2022-03-08 diff --git a/data/registry/tools-browser-extension-autoinjection.yml b/data/registry/tools-browser-extension-autoinjection.yml index 93cf47adc0fd..39dd89823445 100644 --- a/data/registry/tools-browser-extension-autoinjection.yml +++ b/data/registry/tools-browser-extension-autoinjection.yml @@ -1,7 +1,6 @@ # cSpell:ignore firefox autoinjection title: OpenTelemetry Browser Extension Autoinjection registryType: utilities -isThirdParty: false language: js tags: - js @@ -11,11 +10,14 @@ tags: - chrome-extension - firefox-extension - autoinjection -repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/archive/opentelemetry-browser-extension-autoinjection license: Apache 2.0 description: > This browser extension allows you to inject OpenTelemetry instrumentation in any web page. It uses the Web SDK and can export data to Zipkin or an OpenTelemetry Collector. -authors: OpenTelemetry Authors -otVersion: latest + +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/archive/opentelemetry-browser-extension-autoinjection +createdAt: 2021-07-09 diff --git a/data/registry/tools-cpp-alpine-apk.yml b/data/registry/tools-cpp-alpine-apk.yml index 5a6e7de8d480..0b7845584c97 100644 --- a/data/registry/tools-cpp-alpine-apk.yml +++ b/data/registry/tools-cpp-alpine-apk.yml @@ -1,14 +1,15 @@ title: Alpine Linux Packages for OpenTelemetry C++ registryType: core exporter -isThirdParty: true language: cpp tags: - cpp - alpine linux - apk - package -repo: https://pkgs.alpinelinux.org/packages?name=opentelemetry-cpp-* license: Apache 2.0 description: Alpine Linux packages in support of opentelemetry-cpp. -authors: Severin Neumann -otVersion: unknown +authors: + - name: Severin Neumann +urls: + repo: https://pkgs.alpinelinux.org/packages?name=opentelemetry-cpp-* +createdAt: 2023-02-13 diff --git a/data/registry/tools-cpp-conan.yml b/data/registry/tools-cpp-conan.yml index 575e60422842..779f481d720f 100644 --- a/data/registry/tools-cpp-conan.yml +++ b/data/registry/tools-cpp-conan.yml @@ -1,14 +1,15 @@ # cSpell:ignore conan title: Conan Package for OpenTelemetry C++ registryType: core -isThirdParty: true language: cpp tags: - cpp - conan - package -repo: https://conan.io/center/recipes/opentelemetry-cpp license: MIT description: Conan package for `opentelemetry-cpp`. authors: -otVersion: unknown + - name: +urls: + repo: https://conan.io/center/recipes/opentelemetry-cpp +createdAt: 2023-02-13 diff --git a/data/registry/tools-cpp-vcpkg.yml b/data/registry/tools-cpp-vcpkg.yml index 8bd7c754c271..3aee04cf2125 100644 --- a/data/registry/tools-cpp-vcpkg.yml +++ b/data/registry/tools-cpp-vcpkg.yml @@ -1,14 +1,15 @@ # cSpell:ignore vcpkg title: vcpkg package for OpenTelemetry C++ registryType: core -isThirdParty: true language: cpp tags: - cpp - vcpkg - package -repo: https://github.com/microsoft/vcpkg/tree/master/ports/opentelemetry-cpp license: MIT description: A vcpkg package for opentelemetry-cpp. authors: -otVersion: unknown + - name: +urls: + repo: https://github.com/microsoft/vcpkg/tree/master/ports/opentelemetry-cpp +createdAt: 2023-02-13 diff --git a/data/registry/tools-go-mralias-redact.yml b/data/registry/tools-go-mralias-redact.yml index 43b85701789e..3957a599dac1 100644 --- a/data/registry/tools-go-mralias-redact.yml +++ b/data/registry/tools-go-mralias-redact.yml @@ -1,14 +1,15 @@ title: redact registryType: utilities -isThirdParty: true language: go tags: - go - utilities -repo: https://github.com/MrAlias/redact license: Apache 2.0 description: Collection of utilities to redact sensitive information from OpenTelemetry tracing data. -authors: MrAlias -otVersion: latest +authors: + - name: MrAlias +urls: + repo: https://github.com/MrAlias/redact +createdAt: 2022-09-07 diff --git a/data/registry/tools-go-propagator-datadog.yml b/data/registry/tools-go-propagator-datadog.yml index c85e06b154e9..78ce8e11bae8 100644 --- a/data/registry/tools-go-propagator-datadog.yml +++ b/data/registry/tools-go-propagator-datadog.yml @@ -1,16 +1,19 @@ title: OpenTelemetry context propagation for Datadog registryType: utilities -isThirdParty: true language: go tags: - go - datadog - utilities - propagator -repo: https://github.com/tonglil/opentelemetry-go-datadog-propagator license: Apache 2.0 description: > This library provides support for propagating trace context in the Datadog X-Datadog-* format. -authors: https://github.com/tonglil -otVersion: latest + +authors: + - name: Tony Li + url: https://github.com/tonglil +urls: + repo: https://github.com/tonglil/opentelemetry-go-datadog-propagator +createdAt: 2022-04-18 diff --git a/data/registry/tools-java-sentry.yml b/data/registry/tools-java-sentry.yml index 31f594e19144..11b60a8a5703 100644 --- a/data/registry/tools-java-sentry.yml +++ b/data/registry/tools-java-sentry.yml @@ -1,6 +1,5 @@ title: Java Integration for Sentry registryType: utilities -isThirdParty: true language: java tags: - java @@ -9,12 +8,15 @@ tags: - utilities - sentry - error monitoring -repo: https://github.com/getsentry/sentry-java/tree/main/sentry-opentelemetry license: MIT description: The Sentry OpenTelemetry Java integration provides a processor and propagator to send data to Sentry and to associate traces/spans to Sentry errors. For configuration details, see [OpenTelemetry Support](https://docs.sentry.io/platforms/java/performance/instrumentation/opentelemetry/). -authors: Sentry authors -otVersion: latest +authors: + - name: Sentry authors + email: otel@sentry.io +urls: + repo: https://github.com/getsentry/sentry-java/tree/main/sentry-opentelemetry +createdAt: 2023-01-31 diff --git a/data/registry/tools-js-sentry.yml b/data/registry/tools-js-sentry.yml index 391e1a5f70e6..7235eae8c4ab 100644 --- a/data/registry/tools-js-sentry.yml +++ b/data/registry/tools-js-sentry.yml @@ -1,6 +1,5 @@ title: Node Integration for Sentry registryType: utilities -isThirdParty: true language: js tags: - javascript @@ -10,12 +9,15 @@ tags: - utilities - sentry - error monitoring -repo: https://github.com/getsentry/sentry-javascript/tree/master/packages/opentelemetry-node license: MIT description: The Sentry OpenTelemetry Node integration provides a processor and propagator to send data to Sentry and to associate traces/spans to Sentry errors. For configuration details, see [OpenTelemetry Support](https://docs.sentry.io/platforms/node/performance/instrumentation/opentelemetry/). -authors: Sentry authors -otVersion: latest +authors: + - name: Sentry authors + email: otel@sentry.io +urls: + repo: https://github.com/getsentry/sentry-javascript/tree/master/packages/opentelemetry-node +createdAt: 2023-01-31 diff --git a/data/registry/tools-otelbin.yml b/data/registry/tools-otelbin.yml index 0c7c8e919183..99ead8cd8756 100644 --- a/data/registry/tools-otelbin.yml +++ b/data/registry/tools-otelbin.yml @@ -1,6 +1,5 @@ title: OTelBin registryType: utilities -isThirdParty: true language: collector tags: - collector @@ -8,10 +7,13 @@ tags: - dash0 - validation - visualization -repo: https://github.com/dash0hq/otelbin license: Apache 2.0 description: SaaS editor for OpenTelemetry Collector configurations with visualization, validation and sharing support -authors: Dash0 -otVersion: latest +authors: + - name: Dash0 + email: hi@dash0.com +urls: + repo: https://github.com/dash0hq/otelbin +createdAt: 2023-11-16 diff --git a/data/registry/tools-php-propagator-b3.yml b/data/registry/tools-php-propagator-b3.yml index 3c6f168e6f9e..573df014680a 100644 --- a/data/registry/tools-php-propagator-b3.yml +++ b/data/registry/tools-php-propagator-b3.yml @@ -1,15 +1,17 @@ title: OpenTelemetry B3 context propagation registryType: extension -isThirdParty: false language: php tags: - php - b3 - extension - propagator -repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Extension/Propagator/B3 license: Apache 2.0 description: > This library provides support for propagating trace context in the B3 format. -authors: OpenTelemetry Authors -otVersion: latest + +authors: + - name: OpenTelemetry Authors +urls: + repo: https://github.com/open-telemetry/opentelemetry-php/tree/main/src/Extension/Propagator/B3 +createdAt: 2023-11-05 diff --git a/data/registry/tools-python-propagator-gcp.yml b/data/registry/tools-python-propagator-gcp.yml index 55d157854349..2df310b43a91 100644 --- a/data/registry/tools-python-propagator-gcp.yml +++ b/data/registry/tools-python-propagator-gcp.yml @@ -1,6 +1,5 @@ title: Google Cloud Tools registryType: utilities -isThirdParty: true language: python tags: - python @@ -8,10 +7,13 @@ tags: - utilities - propagator - resource detector -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-propagator-gcp license: Apache 2.0 description: > This library provides support for propagating trace context in the Google Cloud X-Cloud-Trace-Context format. -authors: Google -otVersion: latest + +authors: + - name: Google +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-propagator-gcp +createdAt: 2020-08-13 diff --git a/data/registry/tools-python-resourcedetector-gcp.yml b/data/registry/tools-python-resourcedetector-gcp.yml index 7cdda65fe6af..c8cf3c52ab1e 100644 --- a/data/registry/tools-python-resourcedetector-gcp.yml +++ b/data/registry/tools-python-resourcedetector-gcp.yml @@ -1,6 +1,5 @@ title: Google Cloud Tools registryType: utilities -isThirdParty: true language: python tags: - python @@ -8,9 +7,12 @@ tags: - utilities - propagator - resource detector -repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-resourcedetector-gcp license: Apache 2.0 description: > This library provides support for detecting GCP resources like GCE, GKE, etc. -authors: Google -otVersion: latest + +authors: + - name: Google +urls: + repo: https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/tree/main/opentelemetry-resourcedetector-gcp +createdAt: 2020-08-13 diff --git a/data/registry/tools-python-sentry.yml b/data/registry/tools-python-sentry.yml index ff4610c8cb46..4a69cb56e44a 100644 --- a/data/registry/tools-python-sentry.yml +++ b/data/registry/tools-python-sentry.yml @@ -1,6 +1,5 @@ title: Python Integration for Sentry registryType: utilities -isThirdParty: true language: python tags: - python @@ -9,12 +8,15 @@ tags: - utilities - sentry - error monitoring -repo: https://github.com/getsentry/sentry-python/tree/master/sentry_sdk/integrations/opentelemetry license: MIT description: The Sentry OpenTelemetry Python integration provides a processor and propagator to send data to Sentry and to associate traces/spans to Sentry errors. For configuration details, see [OpenTelemetry Support](https://docs.sentry.io/platforms/python/performance/instrumentation/opentelemetry/). -authors: Sentry authors -otVersion: latest +authors: + - name: Sentry authors + email: otel@sentry.io +urls: + repo: https://github.com/getsentry/sentry-python/tree/master/sentry_sdk/integrations/opentelemetry +createdAt: 2023-01-31 diff --git a/data/registry/tools-ruby-sentry.yml b/data/registry/tools-ruby-sentry.yml index 1a8d20fe5683..291ee0ca7493 100644 --- a/data/registry/tools-ruby-sentry.yml +++ b/data/registry/tools-ruby-sentry.yml @@ -1,6 +1,5 @@ title: Ruby Integration for Sentry registryType: utilities -isThirdParty: true language: ruby tags: - ruby @@ -9,12 +8,15 @@ tags: - utilities - sentry - error monitoring -repo: https://github.com/getsentry/sentry-ruby/tree/master/sentry-opentelemetry license: MIT description: The Sentry OpenTelemetry Ruby integration provides a processor and propagator to send data to Sentry and to associate traces/spans to Sentry errors. For configuration details, see [OpenTelemetry Support](https://docs.sentry.io/platforms/ruby/performance/instrumentation/opentelemetry/). -authors: Sentry authors -otVersion: latest +authors: + - name: Sentry authors + email: otel@sentry.io +urls: + repo: https://github.com/getsentry/sentry-ruby/tree/master/sentry-opentelemetry +createdAt: 2023-01-31 diff --git a/data/registry/tools-traceloop.yml b/data/registry/tools-traceloop.yml index 2848b6e680e3..5a8fbdc6213c 100644 --- a/data/registry/tools-traceloop.yml +++ b/data/registry/tools-traceloop.yml @@ -1,6 +1,5 @@ title: Traceloop Jest Test Engine registryType: utilities -isThirdParty: true language: js tags: - js @@ -9,8 +8,11 @@ tags: - test-automation - e2e-testing - api-testing -repo: https://github.com/traceloop/jest-opentelemetry license: Apache 2.0 description: Generate e2e tests from traces -authors: Traceloop dev -otVersion: latest +authors: + - name: Traceloop dev + email: dev@traceloop.dev +urls: + repo: https://github.com/traceloop/jest-opentelemetry +createdAt: 2023-02-26 diff --git a/layouts/ecosystem/registry.json.json b/layouts/ecosystem/registry.json.json index 3cfa27bc5368..f2b1ea932533 100644 --- a/layouts/ecosystem/registry.json.json +++ b/layouts/ecosystem/registry.json.json @@ -1,7 +1,8 @@ +{{ $counter := 0 -}} {{ $entries := slice -}} -{{ range $entry_name_ignored, $entry := .Site.Data.registry -}} - {{ $entry := merge $entry (dict "title" (markdownify $entry.title) ) }} - {{ $entry := merge $entry (dict "description" (markdownify $entry.description) ) }} +{{ range $key, $entry := .Site.Data.registry -}} + {{ $entry = merge $entry (dict "_key" $key "id" $counter) -}} {{ $entries = $entries | append $entry -}} + {{ $counter = add $counter 1 }} {{ end -}} {{ jsonify (dict "indent" " ") $entries -}} diff --git a/layouts/partials/ecosystem/registry/entry.html b/layouts/partials/ecosystem/registry/entry.html new file mode 100644 index 000000000000..0801a9104494 --- /dev/null +++ b/layouts/partials/ecosystem/registry/entry.html @@ -0,0 +1,201 @@ +{{ $languageNames := .languageNames -}} + +{{ with .value -}} + {{ + $remoteRegistries := dict + "npm" (dict + "urlPattern" "https://npmjs.com/package/%s" + "installTemplate" "ecosystem/registry/quickinstall/default.md" + "installLine" "npm install %s" + "icon" "fab fa-npm") + "packagist" (dict + "urlPattern" "https://packagist.org/packages/%s" + "installLine" "composer install %s" + "installTemplate" "ecosystem/registry/quickinstall/default.md" + "icon" "fa-solid fa-box-open") + "gems" (dict + "urlPattern" "https://rubygems.org/gems/%s" + "installLine" "gem install %s" + "installTemplate" "ecosystem/registry/quickinstall/default.md" + "icon" "fa-solid fa-gem") + "go" (dict + "urlPattern" "https://pkg.go.dev/%s" + "installLine" "go get %s" + "installTemplate" "ecosystem/registry/quickinstall/default.md" + "icon" "fa-brands fa-golang") + "go-collector" (dict + "urlPattern" "https://pkg.go.dev/%s" + "installTemplate" "ecosystem/registry/quickinstall/collector.md" + "icon" "fa-solid fa-box-open") + "nuget" (dict + "urlPattern" "https://www.nuget.org/packages/%s" + "installLine" "dotnet add package %s" + "installTemplate" "ecosystem/registry/quickinstall/default.md" + "icon" "fa-solid fa-box-open") + "pip" (dict + "urlPattern" "https://pypi.org/project/%s" + "installLine" "pip install %s" + "installTemplate" "ecosystem/registry/quickinstall/default.md" + "icon" "fa-brands fa-python") + "hex" (dict + "urlPattern" "https://hex.pm/packages/%s" + "installTemplate" "ecosystem/registry/quickinstall/hex.md" + "icon" "fa-brands fa-erlang") + -}} + + {{ $isNativ := and (eq .registryType "instrumentation") (.isNative) }} + {{ $isFirstParty := and (eq .registryType "instrumentation") (.isFirstParty) }} + {{ $currentTime := (time now) -}} + {{ $delta := $currentTime.Sub (time.AsTime .createdAt) -}} + {{ $isNew := lt $delta.Hours 730 -}} + {{ $usedInDemo := and (isset . "urls") (isset .urls "demo") }} + {{ $deprecated := and (isset . "deprecated") (isset .deprecated "reason") }} + {{ $package := "" -}} + {{ if and (.package) (isset $remoteRegistries .package.registry) -}} + {{ $package = merge .package (index $remoteRegistries .package.registry) -}} + {{ $package = merge $package (dict "type" .registryType) -}} + {{ end -}} + {{ $highlightStyle := "" -}} + {{ if $isNew -}} + {{ $highlightStyle = "border-info" -}} + {{ end -}} + {{ if $isNativ -}} + {{ $highlightStyle = "border-success" -}} + {{ end -}} + {{ if $isFirstParty -}} + {{ $highlightStyle = "border-success" -}} + {{ end -}} + {{ if $usedInDemo -}} + {{ $highlightStyle = "border-secondary" -}} + {{ end -}} + {{ if $deprecated -}} + {{ $highlightStyle = "border-danger" -}} + {{ end -}} + {{ $repoHref := printf "href=%q" .urls.repo | safeHTMLAttr -}} +
  • +
    +

    + + {{- .title | markdownify -}} + +
    + {{ if $isNew -}} + new + {{ end -}} + {{ if $isNativ -}} + native + {{ end -}} + {{ if $isFirstParty -}} + first party integration + {{ end -}} + {{ if $usedInDemo -}} + OTel Demo + {{ end -}} + {{ if $deprecated -}} + deprecated + {{ end -}} +
    +

    +

    + + by + {{ range $index, $author := .authors -}} + {{ if $index }}, {{ end }} + {{ if eq $author.name "OpenTelemetry Authors" -}} + 🔭 {{ $author.name }} 🔭 + {{ else if isset $author "url" }} + {{ $href := printf "href=%q" $author.url | safeHTMLAttr -}} + {{ $author.name }} + {{ else -}} + {{ $author.name -}} + {{ end -}} + {{ end -}} + +

    +
    +
    +
    + {{ if $deprecated -}} + + {{ end -}} + {{- .description | markdownify -}} +
    + {{ with $package -}} +
    Quick Install
    +

    {{ (partial .installTemplate .) | markdownify -}} +

    + {{- end -}} +
    +
    +
      + {{ if .package.version -}} +
    • +
      +
      + {{ .package.version }} +
      + Version +
      +
    • + {{- end -}} + {{ with .language -}} +
    • +
      +
      + {{ $languageNames.Get . | default (humanize .) }} +
      + Language +
      +
    • + {{- end }} + {{ with .registryType -}} +
    • +
      +
      + {{ . | humanize }} +
      + Component +
      +
    • + {{- end -}} + {{ with .license -}} +
    • +
      +
      + {{ . }} +
      + License +
      +
    • + {{- end -}} +
    +
    +
    + +
    + {{ with .urls.homepage -}} + {{ $homepageHref := printf "href=%q" . | safeHTMLAttr -}} + Homepage + {{- end -}} + {{ with .urls.docs -}} + {{ $docsHref := printf "href=%q" . | safeHTMLAttr -}} +  Documentation + {{- end -}} + {{ with $package -}} + {{ $packageUrl := printf "href=%q" (printf .urlPattern .name) | safeHTMLAttr -}} +  Package Details ({{ .registry }}) + {{- end -}} + {{ with .urls.repo -}} + {{ $icon := cond ( hasPrefix . "https://github.com/" ) "fa-brands fa-github" "fab fa-git-alt" -}} +  Repository + {{- end -}} + {{ with .urls.demo -}} + {{ $demoUrl := printf "href=%q" (printf .) | safeHTMLAttr -}} +  Demo Service + {{- end -}} +
    +
  • + {{ end -}} \ No newline at end of file diff --git a/layouts/partials/ecosystem/registry/quickinstall/collector.md b/layouts/partials/ecosystem/registry/quickinstall/collector.md new file mode 100644 index 000000000000..ab838900c4b8 --- /dev/null +++ b/layouts/partials/ecosystem/registry/quickinstall/collector.md @@ -0,0 +1,9 @@ +{{/* cSpell:ignore gomod */ -}} + +When [building a custom collector](/docs/collector/custom-collector/) you can add this {{ .type }} to the manifest file like the following: + +```yaml +{{ .type | pluralize }}: + - gomod: + {{ .name }} {{ .version }} +``` diff --git a/layouts/partials/ecosystem/registry/quickinstall/default.md b/layouts/partials/ecosystem/registry/quickinstall/default.md new file mode 100644 index 000000000000..7f33f0b22fbf --- /dev/null +++ b/layouts/partials/ecosystem/registry/quickinstall/default.md @@ -0,0 +1,8 @@ +{{ $typesNames := newScratch -}} +{{ $typesNames.Set "instrumentation" "instrumentation library" -}} + +To install this {{ $typesNames.Get .type | default .type }} run: + +```shell +{{ printf .installLine .name }} +``` \ No newline at end of file diff --git a/layouts/partials/ecosystem/registry/quickinstall/hex.md b/layouts/partials/ecosystem/registry/quickinstall/hex.md new file mode 100644 index 000000000000..7a1a3d724628 --- /dev/null +++ b/layouts/partials/ecosystem/registry/quickinstall/hex.md @@ -0,0 +1,8 @@ +The package can be installed by adding `{{ .name }}` to your list of dependencies in `mix.exs`: + +```exs +def deps do + [ + {:{{ .name }}, "~> {{ .version }}"} + ] +``` diff --git a/layouts/shortcodes/docs/languages/libraries-intro.md b/layouts/shortcodes/docs/languages/libraries-intro.md new file mode 100644 index 000000000000..b31bc3107d8f --- /dev/null +++ b/layouts/shortcodes/docs/languages/libraries-intro.md @@ -0,0 +1,49 @@ + +{{ $lang := .Get 0 -}} +{{ $howMany := .Get 1 | default 10 -}} +{{ $integrations := where (where $.Site.Data.ecosystem.integrations ".components" "intersect" (slice $lang)) ".native" "eq" true -}} + +When you develop an app, you might use third-party libraries and frameworks to +accelerate your work. If you then instrument your app using OpenTelemetry, you +might want to avoid spending additional time to manually add traces, logs, and +metrics to the third-party libraries and frameworks you use. + +Many libraries and frameworks already support OpenTelemetry or are supported +through OpenTelemetry +[instrumentation](/docs/concepts/instrumentation/libraries/), so that they can +generate telemetry you can export to an observability back end. + +If you are instrumenting an app or service that use third-party libraries or +frameworks, follow these instructions to learn how to use natively instrumented +libraries and instrumentation libraries for your dependencies. + +## Use natively instrumented libraries + +If a library comes with OpenTelemetry support by default, you can get traces, +metrics, and logs emitted from that library by adding and setting up the +OpenTelemetry SDK with your app. + +The library might require some additional configuration for the instrumentation. +Go to the documentation for that library to learn more. + +{{ range first $howMany (sort $integrations "name") -}} + + +- [{{ .name }}]({{ .docsUrl }}) +{{- end }} + +{{ if eq (len $integrations) 0 -}} + + +{{ else -}} + +{{ end -}} diff --git a/layouts/shortcodes/registry-search-form.html b/layouts/shortcodes/ecosystem/registry/search-form.html similarity index 60% rename from layouts/shortcodes/registry-search-form.html rename to layouts/shortcodes/ecosystem/registry/search-form.html index 0174c51c4a2c..5c78c66d4bb8 100644 --- a/layouts/shortcodes/registry-search-form.html +++ b/layouts/shortcodes/ecosystem/registry/search-form.html @@ -6,6 +6,7 @@ {{ $languageNames.Set "js" "JavaScript" -}} {{ $languageNames.Set "php" "PHP" -}} + {{ $langs := slice -}} {{ range $registry -}} {{ $language := .language -}} @@ -26,12 +27,20 @@ {{ end -}} {{ $types = $types | uniq | sort -}} +
    +The OpenTelemetry Registry allows you to search for instrumentation libraries, +collector components, utilities, and other useful projects in the OpenTelemetry +ecosystem. If you a project maintainer, you can add your project to the OpenTelemetry Registry +
    +
    - Search - Search {{ len $registry }} entries + + + @@ -39,15 +48,14 @@ + onclick="document.getElementById('input-s').value = ''; document.getElementById('input-language').value = 'all';document.getElementById('input-component').value = 'all';document.getElementById('searchForm').submit();">Reset @@ -65,49 +73,18 @@
    +
        - {{ range $registry -}} - {{ template "registry-entry" . }} + {{ range $key, $value := $registry -}} + {{ $value = merge $value (dict "_key" $key) -}} + {{ partial "ecosystem/registry/entry" (dict "value" $value "languageNames" $languageNames) }} {{ end -}}
      -{{- - $fuseVar := (dict - "description" "${description}" - "language" "${language}" - "registryType" "${registryType}" - "repo" "${repo}" - "title" "${title}" - ) --}} - - + {{ partial "script.html" (dict "src" "js/registrySearch.js") -}} - -{{- define "registry-entry" -}} -{{ $href := printf "href=%q" .repo | safeHTMLAttr -}} -
    • -
      - - - {{- .description | markdownify -}} - -
      - {{ with .language -}} - {{ . }} - {{- end }} - {{ with .registryType -}} - {{ . }} - {{- end -}} -
      -
      -
    • -{{- end -}} diff --git a/scripts/update-registry-versions.sh b/scripts/update-registry-versions.sh new file mode 100755 index 000000000000..d9c16ee50c20 --- /dev/null +++ b/scripts/update-registry-versions.sh @@ -0,0 +1,82 @@ +#!/bin/bash + +# Check if a file is provided +if [ "$#" -ne 1 ]; then + echo "Usage: $0 " + exit 1 +fi + +yaml_file=$1 + +# Check if yq is installed +if ! command -v yq &> /dev/null; then + echo "yq could not be found, please install yq." + exit 1 +fi + +# Function to get latest version based on registry +get_latest_version() { + package_name=$1 + registry=$2 + + case $registry in + npm) + curl -s "https://registry.npmjs.org/${package_name}/latest" | jq -r '.version' + ;; + packagist) + curl -s "https://repo.packagist.org/p2/${package_name}.json" | jq -r ".packages.\"${package_name}\"[0].version" + ;; + gems) + curl -s "https://rubygems.org/api/v1/versions/${package_name}/latest.json" | jq -r '.version' + ;; + go) + go list -m --versions "$package_name" | awk '{print $NF}' + ;; + go-collector) + go list -m --versions "$package_name" | awk '{print $NF}' + ;; + nuget) + lower_case_package_name=$(echo "$package_name" | tr '[:upper:]' '[:lower:]') + curl -s "https://api.nuget.org/v3/registration5-gz-semver2/${lower_case_package_name}/index.json" | gunzip | jq -r '.items[0].upper' + ;; + hex) + curl -s "https://hex.pm/api/packages/$package_name" | jq -r '.releases | max_by(.inserted_at) | .version' + ;; + *) + echo "Registry not supported." + ;; + esac +} + +# Read package details +name=$(yq eval '.package.name' "$yaml_file") +registry=$(yq eval '.package.registry' "$yaml_file") +current_version=$(yq eval '.package.version' "$yaml_file") + +if [ -z "$name" ] || [ -z "$registry" ]; then + echo "Package name and/or registry are missing in the YAML file." + exit 1 +fi + +# Get latest version +latest_version=$(get_latest_version "$name" "$registry") + +if [ "$latest_version" == "Registry not supported." ]; then + echo "Registry not supported."; + exit 0 +fi + +# If version field is missing, populate it with the latest version +if [ -z "$current_version" ]; then + yq eval -i ".package.version = \"$latest_version\"" $yaml_file + echo "Version field was missing. Populated with the latest version: $latest_version" + exit 0 +fi + +# Compare and update if necessary +if [ "$latest_version" != "$current_version" ]; then + yq eval -i ".package.version = \"$latest_version\"" "$yaml_file" + echo "Updated version from $current_version to $latest_version in $yaml_file" +else + echo "Version is already up to date." +fi \ No newline at end of file diff --git a/static/refcache.json b/static/refcache.json index 4cb6d6c5eaa6..ac8986a98286 100644 --- a/static/refcache.json +++ b/static/refcache.json @@ -231,10 +231,18 @@ "StatusCode": 206, "LastSeen": "2023-06-30T09:16:02.918744-04:00" }, + "https://cdn.jsdelivr.net/npm/minisearch@6.3.0/dist/umd/index.min.js": { + "StatusCode": 206, + "LastSeen": "2024-01-08T12:17:27.412252+01:00" + }, "https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.2.0/fuse.min.js": { "StatusCode": 200, "LastSeen": "2023-06-29T13:38:37.508148-04:00" }, + "https://cdnjs.cloudflare.com/ajax/libs/fuse.js/6.6.2/fuse.min.js": { + "StatusCode": 200, + "LastSeen": "2023-12-23T20:37:24.220193+01:00" + }, "https://cerbos.dev/": { "StatusCode": 206, "LastSeen": "2023-09-15T16:58:31.234644+02:00" @@ -2119,6 +2127,10 @@ "StatusCode": 200, "LastSeen": "2023-06-30T08:34:38.397928-04:00" }, + "https://github.com/XSAM": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:15.729934+01:00" + }, "https://github.com/XSAM/otelsql": { "StatusCode": 200, "LastSeen": "2023-06-30T08:33:10.980276-04:00" @@ -2535,6 +2547,10 @@ "StatusCode": 200, "LastSeen": "2023-06-30T09:28:26.438746-04:00" }, + "https://github.com/kubernetes/kubernetes": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:14.67389+01:00" + }, "https://github.com/kubeshop/tracetest": { "StatusCode": 200, "LastSeen": "2023-06-30T09:29:24.005223-04:00" @@ -2555,6 +2571,10 @@ "StatusCode": 200, "LastSeen": "2023-06-30T08:32:10.766549-04:00" }, + "https://github.com/liurui-1": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:18.522022+01:00" + }, "https://github.com/lmolkova": { "StatusCode": 200, "LastSeen": "2023-11-03T03:04:54.119611-04:00" @@ -2635,6 +2655,10 @@ "StatusCode": 200, "LastSeen": "2023-06-30T09:29:18.483677-04:00" }, + "https://github.com/oolong-dev": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:25.5166+01:00" + }, "https://github.com/oolong-dev/OpenTelemetry.jl": { "StatusCode": 200, "LastSeen": "2023-06-30T08:35:28.787959-04:00" @@ -4039,6 +4063,10 @@ "StatusCode": 200, "LastSeen": "2023-07-07T17:32:13.388771+02:00" }, + "https://github.com/tonglil": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:27.166111+01:00" + }, "https://github.com/tonglil/opentelemetry-go-datadog-propagator": { "StatusCode": 200, "LastSeen": "2023-06-30T08:36:56.210179-04:00" @@ -4071,6 +4099,10 @@ "StatusCode": 200, "LastSeen": "2023-06-30T09:18:10.958286-04:00" }, + "https://github.com/vercel/": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:24.045228+01:00" + }, "https://github.com/vivint-smarthome/opentelemetry-stackdriver": { "StatusCode": 200, "LastSeen": "2023-06-30T08:32:27.203113-04:00" @@ -4311,6 +4343,10 @@ "StatusCode": 200, "LastSeen": "2023-06-29T16:11:41.155675-04:00" }, + "https://hex.pm/packages/opentelemetry_ecto": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:14.14905+01:00" + }, "https://hex.pm/packages/opentelemetry_exporter": { "StatusCode": 200, "LastSeen": "2023-06-29T16:11:51.357207-04:00" @@ -4391,6 +4427,10 @@ "StatusCode": 200, "LastSeen": "2023-08-03T17:44:10.601039+02:00" }, + "https://imandra.ai": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:25.955771+01:00" + }, "https://img.shields.io/badge/-deprecated-red": { "StatusCode": 200, "LastSeen": "2023-12-16T15:01:13.954765472Z" @@ -4931,6 +4971,186 @@ "StatusCode": 200, "LastSeen": "2023-06-29T18:47:28.212004-04:00" }, + "https://npmjs.com/package/@autotelic/fastify-opentelemetry": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:21.583319+01:00" + }, + "https://npmjs.com/package/@azure/monitor-opentelemetry-exporter": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:00.678026+01:00" + }, + "https://npmjs.com/package/@cerbos/opentelemetry": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:23.493318+01:00" + }, + "https://npmjs.com/package/@jenniferplusplus/opentelemetry-instrumentation-bullmq": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:08:41.74881+01:00" + }, + "https://npmjs.com/package/@jufab/opentelemetry-angular-interceptor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:19.843581+01:00" + }, + "https://npmjs.com/package/@opentelemetry/exporter-jaeger": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:02.210115+01:00" + }, + "https://npmjs.com/package/@opentelemetry/exporter-zipkin": { + "StatusCode": 200, + "LastSeen": "2023-12-23T20:37:23.122581+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-amqplib": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:18.052325+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-aws-lambda": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:08:39.059075+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-aws-sdk": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:08:39.89973+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-bunyan": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:08:43.455934+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-cassandra-driver": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:08:45.156373+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-connect": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:08:46.858491+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-cucumber": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:08:48.11466+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-dataloader": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:12:05.824679+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-dns": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:12:07.623347+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-document-load": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:12:09.393079+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-express": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:12:11.136393+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-fastify": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:12:12.888226+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-fs": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:12:14.640209+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-generic-pool": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:12:16.375879+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-graphql": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:17:44.227062+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-hapi": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:17:45.899542+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-ioredis": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:17:47.625135+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-knex": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:17:49.355613+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-koa": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:17:51.092482+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-long-task": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:17:53.091885+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-lru-memoizer": { + "StatusCode": 200, + "LastSeen": "2024-01-11T21:17:54.82301+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-memcached": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:43:06.219663+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-mongodb": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:43:07.447507+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-mongoose": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:43:09.136225+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-mysql": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:43:10.784684+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-mysql2": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:43:12.582621+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-nestjs-core": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:43:14.274695+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-net": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:43:15.638315+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-pg": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:52:51.087224+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-pino": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:52:54.593604+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-redis": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:52:56.97762+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-redis-4": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:52:59.545073+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-restify": { + "StatusCode": 200, + "LastSeen": "2024-01-15T09:52:52.871638+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-router": { + "StatusCode": 200, + "LastSeen": "2024-01-15T11:08:26.460933+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-socket.io": { + "StatusCode": 200, + "LastSeen": "2024-01-15T11:08:28.151807+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-tedious": { + "StatusCode": 200, + "LastSeen": "2024-01-15T11:08:29.855822+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-user-interaction": { + "StatusCode": 200, + "LastSeen": "2024-01-15T11:08:31.830172+01:00" + }, + "https://npmjs.com/package/@opentelemetry/instrumentation-winston": { + "StatusCode": 200, + "LastSeen": "2024-01-15T11:08:33.674123+01:00" + }, "https://o11y.news": { "StatusCode": 206, "LastSeen": "2023-06-29T18:50:35.174088-04:00" @@ -5155,6 +5375,10 @@ "StatusCode": 200, "LastSeen": "2023-06-30T09:21:37.570419-04:00" }, + "https://packagist.org/packages/open-telemetry/exporter-zipkin": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:02.477812+01:00" + }, "https://packagist.org/packages/open-telemetry/opentelemetry-instrumentation-installer": { "StatusCode": 200, "LastSeen": "2023-06-30T09:35:52.370259-04:00" @@ -5167,6 +5391,10 @@ "StatusCode": 200, "LastSeen": "2023-07-22T15:46:26.9606521Z" }, + "https://packagist.org/packages/opentelemetry/exporter-otlp": { + "StatusCode": 200, + "LastSeen": "2023-12-23T20:37:23.469598+01:00" + }, "https://packagist.org/providers/php-http/async-client-implementation": { "StatusCode": 200, "LastSeen": "2023-06-30T09:20:58.580599-04:00" @@ -5199,257 +5427,953 @@ "StatusCode": 200, "LastSeen": "2023-06-29T18:45:36.801594-04:00" }, + "https://pkg.go.dev/github.com/XSAM/otelsql": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:16.696764+01:00" + }, "https://pkg.go.dev/github.com/mitchellh/mapstructure": { "StatusCode": 200, "LastSeen": "2023-07-26T16:44:49.203638-04:00" }, - "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alertmanagerexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:52:27.01064-04:00" + "LastSeen": "2024-01-08T12:15:28.289532+01:00" }, - "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor#hdr-RBAC": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/alibabacloudlogserviceexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:44:00.955665-04:00" + "LastSeen": "2024-01-08T12:15:28.755164+01:00" }, - "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sprocessor": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awscloudwatchlogsexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:42:39.121125-04:00" + "LastSeen": "2024-01-08T12:15:31.167875+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/collector/component#Component": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsemfexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:44.73129-04:00" + "LastSeen": "2024-01-08T12:15:32.755043+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/collector/component#Extension": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awss3exporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:08.181202-04:00" + "LastSeen": "2024-01-08T12:15:34.164238+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/awsxrayexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:13.374554-04:00" + "LastSeen": "2024-01-08T12:15:30.433561+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth#GRPCClientAuthenticator": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuredataexplorerexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:34.461761-04:00" + "LastSeen": "2024-01-08T12:15:35.616261+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth#HTTPClientAuthenticator": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/azuremonitorexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:39.592605-04:00" + "LastSeen": "2024-01-08T12:15:35.130891+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth#ServerAuthenticator": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/carbonexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:29.368185-04:00" + "LastSeen": "2024-01-08T12:15:35.907279+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/cassandraexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:25.55139188Z" + "LastSeen": "2024-01-08T12:15:36.382262+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel#GetTracerProvider": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/clickhouseexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:44:38.92155-04:00" + "LastSeen": "2024-01-08T12:15:36.85192+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel#Meter": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/coralogixexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:26.091012084Z" + "LastSeen": "2024-01-08T12:15:37.48954+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/bridge/opentracing": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datadogexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:49:30.144573-04:00" + "LastSeen": "2024-01-08T12:15:38.667647+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/codes": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/datasetexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:45:31.487484-04:00" + "LastSeen": "2024-01-08T12:15:39.076757+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/jaeger": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/dynatraceexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:44:54.85629-04:00" + "LastSeen": "2024-01-08T12:15:39.382554+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/elasticsearchexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T11:12:33.788950402Z" + "LastSeen": "2024-01-08T12:15:39.789984+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/f5cloudexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T11:12:33.662712825Z" + "LastSeen": "2024-01-08T12:15:40.31607+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T11:12:33.534988445Z" + "LastSeen": "2024-01-08T12:15:40.724176+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/googlecloudexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T11:12:33.40195469Z" + "LastSeen": "2024-01-08T12:15:41.07108+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/prometheus": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/googlecloudpubsubexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:45:05.539864-04:00" + "LastSeen": "2024-01-08T12:15:41.411422+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdoutmetric": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/googlemanagedprometheusexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:25.954024386Z" + "LastSeen": "2024-01-08T12:15:42.29472+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdouttrace": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/honeycombmarkerexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T11:12:33.278510097Z" + "LastSeen": "2024-01-08T12:15:42.688706+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/zipkin": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/influxdbexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:45:00.287054-04:00" + "LastSeen": "2024-01-08T12:15:43.216092+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/metric": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/instanaexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:25.28571455Z" + "LastSeen": "2024-01-08T12:15:43.543663+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/metric#WithAttributeSet": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kafkaexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:26.225649719Z" + "LastSeen": "2024-01-08T12:15:43.802543+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/metric#WithAttributes": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/kineticaexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:26.416861936Z" + "LastSeen": "2024-01-08T12:15:44.141473+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:44:49.352453-04:00" + "LastSeen": "2024-01-08T12:15:44.674569+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/logicmonitorexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:25.420952095Z" + "LastSeen": "2024-01-08T12:15:45.041299+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#NewView": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/logzioexporter": { "StatusCode": 200, - "LastSeen": "2023-09-15T09:41:38.164411819Z" + "LastSeen": "2024-01-08T12:15:45.343569+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#View": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/lokiexporter": { "StatusCode": 200, - "LastSeen": "2023-09-15T09:41:38.432556144Z" + "LastSeen": "2024-01-08T12:15:45.786391+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#With": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/mezmoexporter": { "StatusCode": 200, - "LastSeen": "2023-09-15T09:41:38.295762202Z" + "LastSeen": "2024-01-08T12:15:46.288301+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#WithView": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/opencensusexporter": { "StatusCode": 200, - "LastSeen": "2023-09-15T16:34:14.034832295Z" + "LastSeen": "2024-01-08T12:15:46.618998+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/resource": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/opensearchexporter": { "StatusCode": 200, - "LastSeen": "2023-09-11T14:33:25.721659015Z" + "LastSeen": "2024-01-08T12:15:46.902637+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/resource#Resource": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:45:10.781059-04:00" + "LastSeen": "2024-01-08T12:15:47.271108+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#AlwaysSample": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusremotewriteexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T09:39:52.203079253Z" + "LastSeen": "2024-01-08T12:15:48.178973+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#NeverSample": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/pulsarexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T09:39:52.327351275Z" + "LastSeen": "2024-01-08T12:15:48.644086+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#NewBatchSpanProcessor": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sapmexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:45:21.093114-04:00" + "LastSeen": "2024-01-08T12:15:48.96771+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#ParentBased": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sentryexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T09:39:52.578080474Z" + "LastSeen": "2024-01-08T12:15:49.933559+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#Sampler": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/signalfxexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T09:39:51.939566324Z" + "LastSeen": "2024-01-08T12:15:50.397104+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#SpanProcessor": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/skywalkingexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:45:15.990524-04:00" + "LastSeen": "2024-01-08T12:15:50.829942+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#TraceIDRatioBased": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/splunkhecexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T09:39:52.452582667Z" + "LastSeen": "2024-01-08T12:15:51.2708+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#WithBatcher": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/sumologicexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:45:26.188308-04:00" + "LastSeen": "2024-01-08T12:15:51.772877+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#WithSampler": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/syslogexporter": { "StatusCode": 200, - "LastSeen": "2023-09-27T09:39:52.070515192Z" + "LastSeen": "2024-01-08T12:15:52.147833+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/trace": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/tanzuobservabilityexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:44:28.724597-04:00" + "LastSeen": "2024-01-08T12:15:52.550274+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/trace#Tracer": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/tencentcloudlogserviceexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:44:33.823661-04:00" + "LastSeen": "2024-01-08T12:15:52.997273+01:00" }, - "https://pkg.go.dev/go.opentelemetry.io/otel/trace#TracerProvider": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/exporter/zipkinexporter": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:44:44.085131-04:00" + "LastSeen": "2024-01-08T12:15:53.29617+01:00" }, - "https://pkg.go.dev/google.golang.org/grpc/credentials#PerRPCCredentials": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/asapauthextension": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:55.129635-04:00" + "LastSeen": "2024-01-08T12:15:53.592567+01:00" }, - "https://pkg.go.dev/net/http": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/basicauthextension": { "StatusCode": 200, - "LastSeen": "2023-09-25T10:17:08.593410057Z" + "LastSeen": "2024-01-08T12:15:53.942766+01:00" }, - "https://pkg.go.dev/net/http#RoundTripper": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/bearertokenauthextension": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:43:49.830308-04:00" + "LastSeen": "2024-01-08T12:15:54.298376+01:00" }, - "https://pkg.go.dev/runtime#Compiler": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/encoding": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:41:04.803658-04:00" + "LastSeen": "2024-01-08T12:15:54.593894+01:00" }, - "https://pkg.go.dev/runtime/debug#Stack": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/headerssetterextension": { "StatusCode": 200, - "LastSeen": "2023-06-30T09:16:47.332649-04:00" + "LastSeen": "2024-01-08T12:15:55.080979+01:00" }, - "https://pkgs.alpinelinux.org/packages": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/healthcheckextension": { "StatusCode": 200, - "LastSeen": "2023-06-29T18:38:15.529629-04:00" + "LastSeen": "2024-01-08T12:15:55.604+01:00" }, - "https://playwright.dev/": { - "StatusCode": 206, - "LastSeen": "2023-10-04T17:14:47.324713-07:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/httpforwarder": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:55.902358+01:00" }, - "https://plugins.jenkins.io/opentelemetry/": { - "StatusCode": 206, - "LastSeen": "2023-10-05T19:46:14.084327+02:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/jaegerremotesampling": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:56.204017+01:00" }, - "https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Flux.html": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/oauth2clientauthextension": { "StatusCode": 200, - "LastSeen": "2023-06-30T07:49:47.370691-04:00" + "LastSeen": "2024-01-08T12:15:56.606365+01:00" }, - "https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html": { + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/oidcauthextension": { "StatusCode": 200, - "LastSeen": "2023-06-30T07:49:41.856831-04:00" + "LastSeen": "2024-01-08T12:15:57.111759+01:00" }, - "https://promcon.io/2022-munich/talks/native-histograms-in-prometheus/": { - "StatusCode": 206, - "LastSeen": "2023-06-30T11:47:07.942482-04:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/opampextension": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:57.558049+01:00" }, - "https://prometheus.io": { - "StatusCode": 206, - "LastSeen": "2023-06-29T18:41:36.406865-04:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/pprofextension": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:58.005382+01:00" }, - "https://prometheus.io/": { - "StatusCode": 206, - "LastSeen": "2023-06-29T18:37:54.454671-04:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/remotetapextension": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:58.382964+01:00" }, - "https://prometheus.io/docs/alerting/latest/alertmanager/": { - "StatusCode": 206, - "LastSeen": "2023-12-01T16:02:43.039481+01:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/extension/sigv4authextension": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:58.781435+01:00" }, - "https://prometheus.io/docs/concepts/data_model/#metric-names-and-labels": { - "StatusCode": 206, - "LastSeen": "2023-06-30T09:18:45.333174-04:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/attributesprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:59.158+01:00" }, - "https://prometheus.io/docs/concepts/jobs_instances/#jobs-and-instances": { - "StatusCode": 206, - "LastSeen": "2023-06-30T09:18:40.157089-04:00" + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/cumulativetodeltaprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:15:59.669526+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/datadogprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:00.083615+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/deltatorateprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:00.533052+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/filterprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:00.881649+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/groupbyattrsprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:02.105171+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/groupbytraceprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:01.685466+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:52:27.01064-04:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sattributesprocessor#hdr-RBAC": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:44:00.955665-04:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sprocessor": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:42:39.121125-04:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/logstransformprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:02.529095+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricsgenerationprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:03.552411+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricstransformprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:03.06727+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/probabilisticsamplerprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:03.902467+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/redactionprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:04.313958+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/remotetapprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:04.60957+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourcedetectionprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:05.287053+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/resourceprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:04.791259+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/routingprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:06.020352+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/schemaprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:06.319911+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/servicegraphprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:06.657299+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/spanmetricsprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:07.359544+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/spanprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:07.031012+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/sumologicprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:07.896378+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/tailsamplingprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:08.451989+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:08.924269+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/activedirectorydsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:09.366942+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/aerospikereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:09.81236+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/apachereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:10.274399+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/apachesparkreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:10.580314+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscloudwatchmetricsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:12.236877+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscloudwatchreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:11.789876+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awscontainerinsightreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:13.179306+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsecscontainermetricsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:10.931453+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsfirehosereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:13.469744+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/awsxrayreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:11.377253+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azureblobreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:14.021815+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azureeventhubreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:14.530649+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azuremonitorreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:14.987567+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/bigipreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:15.318503+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/carbonreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:15.709993+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/chronyreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:16.14302+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/cloudflarereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:16.532752+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/cloudfoundryreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:16.977481+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/collectdreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:17.295301+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/couchdbreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:17.677524+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/datadogreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:18.957475+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:19.296603+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/elasticsearchreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:19.605437+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/expvarreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:19.916686+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filelogreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:20.768869+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:20.345664+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filestatsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:21.069153+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/flinkmetricsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:21.529179+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/fluentforwardreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:21.924037+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/gitproviderreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:22.302263+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/googlecloudpubsubreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:22.891847+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/googlecloudspannerreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:23.209323+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/haproxyreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:24.344712+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/hostmetricsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:24.834543+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/httpcheckreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:25.215875+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/iisreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:25.95575+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/influxdbreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:26.319012+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jaegerreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:26.605186+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/jmxreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:27.03827+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/journaldreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:27.334809+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/k8sclusterreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:27.678189+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/k8seventsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:28.076462+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/k8sobjectsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:28.565339+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkametricsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:30.962575+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:30.548313+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kubeletstatsreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:31.502653+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/lokireceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:31.790302+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/memcachedreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:32.217011+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:33.08707+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:32.60777+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mysqlreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:33.497762+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/nginxreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:34.039723+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/nsxtreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:34.437256+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/opencensusreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:34.849763+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/oracledbreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:35.319616+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otlpjsonfilereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:35.726108+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/podmanreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:36.128751+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/postgresqlreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:36.526546+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:37.030993+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/pulsarreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:37.477089+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/purefareceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:37.827552+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/purefbreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:38.43319+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/rabbitmqreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:39.252097+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/receivercreator": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:39.724339+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/redisreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:40.142055+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/riakreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:40.667766+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/saphanareceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:40.977949+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sapmreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:41.412687+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:41.817392+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/simpleprometheusreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:42.233397+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/skywalkingreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:42.688934+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/snmpreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:43.52665+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/snowflakereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:43.87032+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/solacereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:44.336823+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkenterprisereceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:45.165163+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:44.696389+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlqueryreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:45.605818+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlserverreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:46.127452+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sshcheckreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:46.656959+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:46.996592+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/syslogreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:47.299617+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/tcplogreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:47.823407+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/udplogreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:48.235598+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/vcenterreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:48.668062+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/wavefrontreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:49.136569+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/webhookeventreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:49.448156+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowseventlogreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:50.322655+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/windowsperfcountersreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:49.756174+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zipkinreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:50.661395+01:00" + }, + "https://pkg.go.dev/github.com/open-telemetry/opentelemetry-collector-contrib/receiver/zookeeperreceiver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:51.070771+01:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/collector/component#Component": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:44.73129-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/collector/component#Extension": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:08.181202-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:13.374554-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth#GRPCClientAuthenticator": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:34.461761-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth#HTTPClientAuthenticator": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:39.592605-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/collector/config/configauth#ServerAuthenticator": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:29.368185-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:25.55139188Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel#GetTracerProvider": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:44:38.92155-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel#Meter": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:26.091012084Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/bridge/opentracing": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:49:30.144573-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/codes": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:45:31.487484-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/jaeger": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:44:54.85629-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc": { + "StatusCode": 200, + "LastSeen": "2023-09-27T11:12:33.788950402Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp": { + "StatusCode": 200, + "LastSeen": "2023-09-27T11:12:33.662712825Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc": { + "StatusCode": 200, + "LastSeen": "2023-09-27T11:12:33.534988445Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp": { + "StatusCode": 200, + "LastSeen": "2023-09-27T11:12:33.40195469Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/prometheus": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:45:05.539864-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdoutmetric": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:25.954024386Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/stdout/stdouttrace": { + "StatusCode": 200, + "LastSeen": "2023-09-27T11:12:33.278510097Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/exporters/zipkin": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:45:00.287054-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/metric": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:25.28571455Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/metric#WithAttributeSet": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:26.225649719Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/metric#WithAttributes": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:26.416861936Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:44:49.352453-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:25.420952095Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#NewView": { + "StatusCode": 200, + "LastSeen": "2023-09-15T09:41:38.164411819Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#View": { + "StatusCode": 200, + "LastSeen": "2023-09-15T09:41:38.432556144Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#With": { + "StatusCode": 200, + "LastSeen": "2023-09-15T09:41:38.295762202Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric#WithView": { + "StatusCode": 200, + "LastSeen": "2023-09-15T16:34:14.034832295Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/resource": { + "StatusCode": 200, + "LastSeen": "2023-09-11T14:33:25.721659015Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/resource#Resource": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:45:10.781059-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#AlwaysSample": { + "StatusCode": 200, + "LastSeen": "2023-09-27T09:39:52.203079253Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#NeverSample": { + "StatusCode": 200, + "LastSeen": "2023-09-27T09:39:52.327351275Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#NewBatchSpanProcessor": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:45:21.093114-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#ParentBased": { + "StatusCode": 200, + "LastSeen": "2023-09-27T09:39:52.578080474Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#Sampler": { + "StatusCode": 200, + "LastSeen": "2023-09-27T09:39:51.939566324Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#SpanProcessor": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:45:15.990524-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#TraceIDRatioBased": { + "StatusCode": 200, + "LastSeen": "2023-09-27T09:39:52.452582667Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#WithBatcher": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:45:26.188308-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/sdk/trace#WithSampler": { + "StatusCode": 200, + "LastSeen": "2023-09-27T09:39:52.070515192Z" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/trace": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:44:28.724597-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/trace#Tracer": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:44:33.823661-04:00" + }, + "https://pkg.go.dev/go.opentelemetry.io/otel/trace#TracerProvider": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:44:44.085131-04:00" + }, + "https://pkg.go.dev/google.golang.org/grpc/credentials#PerRPCCredentials": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:55.129635-04:00" + }, + "https://pkg.go.dev/net/http": { + "StatusCode": 200, + "LastSeen": "2023-09-25T10:17:08.593410057Z" + }, + "https://pkg.go.dev/net/http#RoundTripper": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:43:49.830308-04:00" + }, + "https://pkg.go.dev/runtime#Compiler": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:41:04.803658-04:00" + }, + "https://pkg.go.dev/runtime/debug#Stack": { + "StatusCode": 200, + "LastSeen": "2023-06-30T09:16:47.332649-04:00" + }, + "https://pkgs.alpinelinux.org/packages": { + "StatusCode": 200, + "LastSeen": "2023-06-29T18:38:15.529629-04:00" + }, + "https://playwright.dev/": { + "StatusCode": 206, + "LastSeen": "2023-10-04T17:14:47.324713-07:00" + }, + "https://plugins.jenkins.io/opentelemetry/": { + "StatusCode": 206, + "LastSeen": "2023-10-05T19:46:14.084327+02:00" + }, + "https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Flux.html": { + "StatusCode": 200, + "LastSeen": "2023-06-30T07:49:47.370691-04:00" + }, + "https://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html": { + "StatusCode": 200, + "LastSeen": "2023-06-30T07:49:41.856831-04:00" + }, + "https://promcon.io/2022-munich/talks/native-histograms-in-prometheus/": { + "StatusCode": 206, + "LastSeen": "2023-06-30T11:47:07.942482-04:00" + }, + "https://prometheus.io": { + "StatusCode": 206, + "LastSeen": "2023-06-29T18:41:36.406865-04:00" + }, + "https://prometheus.io/": { + "StatusCode": 206, + "LastSeen": "2023-06-29T18:37:54.454671-04:00" + }, + "https://prometheus.io/docs/alerting/latest/alertmanager/": { + "StatusCode": 206, + "LastSeen": "2023-12-01T16:02:43.039481+01:00" + }, + "https://prometheus.io/docs/concepts/data_model/#metric-names-and-labels": { + "StatusCode": 206, + "LastSeen": "2023-06-30T09:18:45.333174-04:00" + }, + "https://prometheus.io/docs/concepts/jobs_instances/#jobs-and-instances": { + "StatusCode": 206, + "LastSeen": "2023-06-30T09:18:40.157089-04:00" }, "https://prometheus.io/docs/practices/naming/#metric-names": { "StatusCode": 206, @@ -5495,6 +6419,10 @@ "StatusCode": 200, "LastSeen": "2023-06-28T13:37:36.342515-04:00" }, + "https://pypi.org/project/azure-monitor-opentelemetry-exporter": { + "StatusCode": 206, + "LastSeen": "2024-01-08T12:17:02.820411+01:00" + }, "https://pypi.org/project/opentelemetry-api/": { "StatusCode": 206, "LastSeen": "2023-06-30T11:43:42.332023-04:00" @@ -5595,6 +6523,10 @@ "StatusCode": 200, "LastSeen": "2024-01-16T17:59:00.198437+01:00" }, + "https://rubygems.org/gems/opentelemetry-instrumentation-redis": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:25.018558+01:00" + }, "https://rubyonrails.org/": { "StatusCode": 206, "LastSeen": "2023-06-30T11:45:10.389335-04:00" @@ -6663,6 +7595,14 @@ "StatusCode": 200, "LastSeen": "2023-09-06T15:04:25.165623+02:00" }, + "https://www.nuget.org/packages/Azure.Monitor.OpenTelemetry.Exporter": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:52.020671+01:00" + }, + "https://www.nuget.org/packages/Confluent.Kafka": { + "StatusCode": 200, + "LastSeen": "2024-01-18T10:45:19.955108939Z" + }, "https://www.nuget.org/packages/Elastic.Clients.Elasticsearch": { "StatusCode": 200, "LastSeen": "2023-09-06T15:04:24.3457+02:00" @@ -6683,6 +7623,10 @@ "StatusCode": 200, "LastSeen": "2023-09-06T15:04:14.681431+02:00" }, + "https://www.nuget.org/packages/KafkaFlow.OpenTelemetry": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:09.813416+01:00" + }, "https://www.nuget.org/packages/MassTransit": { "StatusCode": 200, "LastSeen": "2023-09-06T15:04:35.326603+02:00" @@ -6719,14 +7663,66 @@ "StatusCode": 200, "LastSeen": "2023-10-13T09:34:45.811783+02:00" }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.Geneva": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:52.640928+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.InMemory": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:54.088108+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.InfluxDB": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:53.242379+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.Instana": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:54.624719+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.OneCollector": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:55.18972+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:55.911758+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.Prometheus.AspNetCore": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:56.504932+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.Prometheus.HttpListener": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:57.077457+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.Stackdriver": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:57.67458+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Exporter.Zipkin": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:16:58.383719+01:00" + }, "https://www.nuget.org/packages/OpenTelemetry.Extensions.Hosting": { "StatusCode": 200, "LastSeen": "2023-06-29T18:44:22.963399-04:00" }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWS": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:03.97417+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:04.547895+01:00" + }, "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet": { "StatusCode": 200, "LastSeen": "2023-10-13T09:34:44.998116+02:00" }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:03.421695+01:00" + }, "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet/": { "StatusCode": 200, "LastSeen": "2023-06-29T18:44:17.584126-04:00" @@ -6735,14 +7731,74 @@ "StatusCode": 200, "LastSeen": "2023-06-29T18:44:11.930561-04:00" }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Cassandra": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:05.131216+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.ElasticsearchClient": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:05.675509+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.EntityFrameworkCore": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:06.2301+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.EventCounters": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:06.840134+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.GrpcCore": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:07.403297+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.GrpcNetClient": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:08.041641+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Hangfire": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:08.604025+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Http": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:09.21921+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.MassTransit": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:10.368391+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.MySqlData": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:10.929312+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Owin": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:11.47286+01:00" + }, "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Process": { "StatusCode": 200, "LastSeen": "2023-09-06T15:04:49.345518+02:00" }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Quartz": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:12.029192+01:00" + }, "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Runtime": { "StatusCode": 200, "LastSeen": "2023-09-06T15:04:48.575209+02:00" }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:12.629954+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.StackExchangeRedis": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:13.279094+01:00" + }, + "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Wcf": { + "StatusCode": 200, + "LastSeen": "2024-01-08T12:17:13.880643+01:00" + }, "https://www.nuget.org/packages/Quartz": { "StatusCode": 200, "LastSeen": "2023-09-06T15:04:30.630826+02:00" diff --git a/templates/registry-entry.yml b/templates/registry-entry.yml index a2f9c225d2e3..7894149c7e9b 100644 --- a/templates/registry-entry.yml +++ b/templates/registry-entry.yml @@ -1,12 +1,18 @@ # cSpell:ignore # add words unknown to cspell, remove this line if not required title: My OpenTelemetry Integration # the name of your project registryType: # the type of integration; is this an exporter, plugin, API package, or something else? -isThirdParty: # this is only true if the project is not maintained by the OpenTelemetry project language: tags: - -repo: https://github.com/your-organization/your-repo # projects don't have to be hosted on GitHub, but this should link to the git or other source control repository for your project -license: Apache 2.0 # or whatever your OSS license is +urls: + repo: https://github.com/your-organization/your-repo # (mandatory) projects don't have to be hosted on GitHub, but this should link to the git or other source control repository for your project + docs: https://your-organization/your-instructions # (optional) path to a documentation for the specific project. +license: Apache 2.0 # or whatever your OSS license is (see https://opensource.org/licenses/), properietary or non-OSI approved may be rejected description: A friendly description of your integration/plugin -authors: -otVersion: +authors: + - name: First author name + email: first author email (optional) + url: first author URL (github handle, optional) +createdAt: # Set todays date +isNative: false # set this to true only if OpenTelemetry is directly integrated into your software (no plugin, no instrumentation library) +isFirstParty: false # set this to true if "isNative" is set to false, but the plugin / instrumentation library is from the same vendor/project as the instrumented software