From cfa6ee4f05dad9fdf7a8b406a220802385c7b415 Mon Sep 17 00:00:00 2001 From: Rasmus Kuusmann Date: Fri, 29 Apr 2022 01:54:51 +0300 Subject: [PATCH] Update Changelog and MongoDB docs (#635) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update docs * configure md024 rule * Update CHANGELOG.md Co-authored-by: Piotr Kiełkowicz Co-authored-by: Piotr Kiełkowicz Co-authored-by: Paulo Janotti --- .markdownlint.yaml | 9 ++++++++- CHANGELOG.md | 4 ++++ docs/config.md | 14 ++++++++------ 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/.markdownlint.yaml b/.markdownlint.yaml index 30672f8e7f..94ef32d8b4 100644 --- a/.markdownlint.yaml +++ b/.markdownlint.yaml @@ -1,7 +1,14 @@ # Default state for all rules default: true -# allow long lines for tables and code blocks +# Configure long lines for tables and code blocks MD013: code_blocks: false tables: false + +# Configure Multiple headings with the same content +MD024: + # Only check sibling headings + allow_different_nesting: true + # Only check sibling headings + siblings_only: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 414ab8c3ae..fe87154fb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v0.1.0-beta.1...HEAD) +### Added + +- Adds MongoDB instrumentation support from .NET Core 3.1+. + ## [0.1.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v0.1.0-beta.1) The is an initial, official beta release, diff --git a/docs/config.md b/docs/config.md index 96a801e2fb..b81e6bfe53 100644 --- a/docs/config.md +++ b/docs/config.md @@ -32,12 +32,14 @@ for more details. ### Instrumented libraries and frameworks -| ID | Library | Instrumentation type | -|-|-|-| -| `AspNet` | ASP.NET and ASP.NET Core | source | -| `GraphQL` | [GraphQL](https://www.nuget.org/packages/GraphQL/) | bytecode | -| `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 | -| `SqlClient` | [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) and [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient) | source | +| ID | Library | Supported versions | Instrumentation type | +|-|-|-|-| +| `AspNet` | ASP.NET MVC Framework | * | source | +| `AspNet` | ASP.NET Core | * | source | +| `GraphQL` | [GraphQL](https://www.nuget.org/packages/GraphQL/) | ≥2.3.0 & < 3.0.0 | bytecode | +| `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 | +| `MongoDb` | [MongoDB.Driver.Core](https://www.nuget.org/packages/MongoDB.Driver.Core) | ≥2.3.0 & < 3.0.0 | source & bytecode | +| `SqlClient` | [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) and [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient) | * | source | ## ASP.NET (.NET Framework) Instrumentation