Release 1.0.0-rc.1 (#2700)
This commit is contained in:
parent
25a7728e42
commit
3f53834c63
22
CHANGELOG.md
22
CHANGELOG.md
|
|
@ -5,7 +5,21 @@ All notable changes to this component are documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v0.7.0...HEAD)
|
||||
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.0.0-rc.1...HEAD)
|
||||
|
||||
### Added
|
||||
|
||||
### Changed
|
||||
|
||||
### Deprecated
|
||||
|
||||
### Removed
|
||||
|
||||
### Fixed
|
||||
|
||||
### Security
|
||||
|
||||
## [1.0.0-rc.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0-rc.1)
|
||||
|
||||
This release is built on top of [OpenTelemetry .NET](https://github.com/open-telemetry/opentelemetry-dotnet):
|
||||
|
||||
|
|
@ -36,18 +50,12 @@ This release is built on top of [OpenTelemetry .NET](https://github.com/open-tel
|
|||
- [GraphQL](https://www.nuget.org/packages/GraphQL/) instrumentation is now
|
||||
supported from version 7.5.0 working on .NET.
|
||||
|
||||
### Deprecated
|
||||
|
||||
### Removed
|
||||
|
||||
- Removed `WCF` instrumentation for Core WCF Client working on .NET.
|
||||
- Removed [GraphQL](https://www.nuget.org/packages/GraphQL/) instrumentation
|
||||
for versions 2.3.0-2.4.*.
|
||||
|
||||
### Fixed
|
||||
|
||||
### Security
|
||||
|
||||
### Known issues
|
||||
|
||||
- Lack of support for MySql.Data 8.0.33. See [#2542](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/2542).
|
||||
|
|
|
|||
|
|
@ -222,7 +222,7 @@ function Install-OpenTelemetryCore() {
|
|||
[string]$LocalPath
|
||||
)
|
||||
|
||||
$version = "v0.7.0"
|
||||
$version = "v1.0.0-rc.1"
|
||||
$installDir = Get-CLIInstallDir-From-InstallDir $InstallDir
|
||||
$archivePath = $null
|
||||
$deleteArchive = $true
|
||||
|
|
|
|||
|
|
@ -47,8 +47,8 @@ partial class Build : NukeBuild
|
|||
[Parameter("The location to restore NuGet packages. Optional")]
|
||||
readonly AbsolutePath NuGetPackagesDirectory;
|
||||
|
||||
[Parameter("Version number of the NuGet packages built from the project. Default is '0.7.0'")]
|
||||
readonly string NuGetBaseVersionNumber = "0.7.0";
|
||||
[Parameter("Version number of the NuGet packages built from the project. Default is '1.0.0'")]
|
||||
readonly string NuGetBaseVersionNumber = "1.0.0";
|
||||
|
||||
[Parameter("Version suffix added to the NuGet packages built from the project, see https://semver.org/spec/v2.0.0.html#spec-item-9 for details. Default is empty")]
|
||||
// The default needs to be empty: there is no other way to make this parameter to accept an empty string, which will be required
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ to .NET applications without having to modify their source code.
|
|||
> **Warning**
|
||||
> The following documentation refers to the in-development version
|
||||
of OpenTelemetry .NET Automatic Instrumentation. Docs for the latest version
|
||||
([0.7.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
|
||||
can be found [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v0.7.0/docs/README.md).
|
||||
([1.0.0-rc.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
|
||||
can be found [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.0.0-rc.1/docs/README.md).
|
||||
|
||||
---
|
||||
|
||||
|
|
@ -133,23 +133,23 @@ When running your application, make sure to:
|
|||
1. Set the [resources](config.md#resources).
|
||||
1. Set the environment variables from the table below.
|
||||
|
||||
| Environment variable | .NET version | Value |
|
||||
|--------------------------------------|---------------------|---------------------------------------------------------------------------|
|
||||
| `COR_ENABLE_PROFILING` | .NET Framework | `1` |
|
||||
| `COR_PROFILER` | .NET Framework | `{918728DD-259F-4A6A-AC2B-B85E1B658318}` |
|
||||
| `COR_PROFILER_PATH_32` | .NET Framework | `$INSTALL_DIR/win-x86/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `COR_PROFILER_PATH_64` | .NET Framework | `$INSTALL_DIR/win-x64/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `CORECLR_ENABLE_PROFILING` | .NET | `1` |
|
||||
| `CORECLR_PROFILER` | .NET | `{918728DD-259F-4A6A-AC2B-B85E1B658318}` |
|
||||
| `CORECLR_PROFILER_PATH` | .NET on Linux glibc | `$INSTALL_DIR/linux-x64/OpenTelemetry.AutoInstrumentation.Native.so` |
|
||||
| `CORECLR_PROFILER_PATH` | .NET on Linux musl | `$INSTALL_DIR/linux-musl-x64/OpenTelemetry.AutoInstrumentation.Native.so` |
|
||||
| `CORECLR_PROFILER_PATH` | .NET on macOS | `$INSTALL_DIR/osx-x64/OpenTelemetry.AutoInstrumentation.Native.dylib` |
|
||||
| `CORECLR_PROFILER_PATH_32` | .NET on Windows | `$INSTALL_DIR/win-x86/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `CORECLR_PROFILER_PATH_64` | .NET on Windows | `$INSTALL_DIR/win-x64/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `DOTNET_ADDITIONAL_DEPS` | .NET | `$INSTALL_DIR/AdditionalDeps` |
|
||||
| `DOTNET_SHARED_STORE` | .NET | `$INSTALL_DIR/store` |
|
||||
| `DOTNET_STARTUP_HOOKS` | .NET | `$INSTALL_DIR/net/OpenTelemetry.AutoInstrumentation.StartupHook.dll` |
|
||||
| `OTEL_DOTNET_AUTO_HOME` | All versions | `$INSTALL_DIR` |
|
||||
| Environment variable | .NET version | Value |
|
||||
|----------------------------|---------------------|---------------------------------------------------------------------------|
|
||||
| `COR_ENABLE_PROFILING` | .NET Framework | `1` |
|
||||
| `COR_PROFILER` | .NET Framework | `{918728DD-259F-4A6A-AC2B-B85E1B658318}` |
|
||||
| `COR_PROFILER_PATH_32` | .NET Framework | `$INSTALL_DIR/win-x86/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `COR_PROFILER_PATH_64` | .NET Framework | `$INSTALL_DIR/win-x64/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `CORECLR_ENABLE_PROFILING` | .NET | `1` |
|
||||
| `CORECLR_PROFILER` | .NET | `{918728DD-259F-4A6A-AC2B-B85E1B658318}` |
|
||||
| `CORECLR_PROFILER_PATH` | .NET on Linux glibc | `$INSTALL_DIR/linux-x64/OpenTelemetry.AutoInstrumentation.Native.so` |
|
||||
| `CORECLR_PROFILER_PATH` | .NET on Linux musl | `$INSTALL_DIR/linux-musl-x64/OpenTelemetry.AutoInstrumentation.Native.so` |
|
||||
| `CORECLR_PROFILER_PATH` | .NET on macOS | `$INSTALL_DIR/osx-x64/OpenTelemetry.AutoInstrumentation.Native.dylib` |
|
||||
| `CORECLR_PROFILER_PATH_32` | .NET on Windows | `$INSTALL_DIR/win-x86/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `CORECLR_PROFILER_PATH_64` | .NET on Windows | `$INSTALL_DIR/win-x64/OpenTelemetry.AutoInstrumentation.Native.dll` |
|
||||
| `DOTNET_ADDITIONAL_DEPS` | .NET | `$INSTALL_DIR/AdditionalDeps` |
|
||||
| `DOTNET_SHARED_STORE` | .NET | `$INSTALL_DIR/store` |
|
||||
| `DOTNET_STARTUP_HOOKS` | .NET | `$INSTALL_DIR/net/OpenTelemetry.AutoInstrumentation.StartupHook.dll` |
|
||||
| `OTEL_DOTNET_AUTO_HOME` | All versions | `$INSTALL_DIR` |
|
||||
|
||||
> **Note**
|
||||
> Some settings can be omitted on .NET. For more information, see [config.md](config.md#net-clr-profiler).
|
||||
|
|
@ -166,7 +166,7 @@ Example usage:
|
|||
|
||||
```sh
|
||||
# Download the bash script
|
||||
curl -sSfL https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v0.7.0/otel-dotnet-auto-install.sh -O
|
||||
curl -sSfL https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v1.0.0-rc.1/otel-dotnet-auto-install.sh -O
|
||||
|
||||
# Install core files
|
||||
sh ./otel-dotnet-auto-install.sh
|
||||
|
|
@ -189,7 +189,7 @@ uses environment variables as parameters:
|
|||
| `OTEL_DOTNET_AUTO_HOME` | Location where binaries are to be installed | No | `$HOME/.otel-dotnet-auto` |
|
||||
| `OS_TYPE` | Possible values: `linux-glibc`, `linux-musl`, `macos`, `windows` | No | *Calculated* |
|
||||
| `TMPDIR` | Temporary directory used when downloading the files | No | `$(mktemp -d)` |
|
||||
| `VERSION` | Version to download | No | `v0.7.0` |
|
||||
| `VERSION` | Version to download | No | `1.0.0-rc.1` |
|
||||
|
||||
[instrument.sh](../instrument.sh) script
|
||||
uses environment variables as parameters:
|
||||
|
|
@ -208,7 +208,7 @@ Example usage (run as administrator):
|
|||
|
||||
```powershell
|
||||
# Download the module
|
||||
$module_url = "https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v0.7.0/OpenTelemetry.DotNet.Auto.psm1"
|
||||
$module_url = "https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v1.0.0-rc.1/OpenTelemetry.DotNet.Auto.psm1"
|
||||
$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
|
||||
Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
|
||||
|
||||
|
|
|
|||
|
|
@ -157,14 +157,14 @@ due to lack of stable semantic convention.
|
|||
Metrics are 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/main/src/OpenTelemetry.Instrumentation.AspNet/README.md#list-of-metrics-produced) | * | source & bytecode | [Experimental](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `ASPNETCORE` | ASP.NET Core \[2\] **Not supported on .NET Framework** | [ASP.NET Core metrics](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/src/OpenTelemetry.Instrumentation.AspNetCore/README.md#list-of-metrics-produced) | * | source | [Experimental](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `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/tree/main/src/OpenTelemetry.Instrumentation.Http#metrics) | * | source | [Experimental](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `NETRUNTIME` | [OpenTelemetry.Instrumentation.Runtime](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Runtime) | [Process metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Process#metrics) | * | source | [Experimental](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `PROCESS` | [OpenTelemetry.Instrumentation.Process](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Process) | [Runtime metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/tree/main/src/OpenTelemetry.Instrumentation.Runtime#metrics) | * | source | [Experimental](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `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](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| 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](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `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](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `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](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `NETRUNTIME` | [OpenTelemetry.Instrumentation.Runtime](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Runtime) | [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](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `PROCESS` | [OpenTelemetry.Instrumentation.Process](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Process) | [Runtime metrics](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Runtime-1.5.0/src/OpenTelemetry.Instrumentation.Process/README.md#metrics) | * | source | [Experimental](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
| `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](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/versioning-and-stability.md) |
|
||||
|
||||
\[1\]: The ASP.NET metrics are generated only if the `AspNet` trace instrumentation
|
||||
is also enabled.
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ you to either add the missing instrumentation package or to skip the
|
|||
instrumentation of the corresponding package:
|
||||
|
||||
```terminal
|
||||
~packages/opentelemetry.autoinstrumentation.buildtasks/0.7.0-local.1/build/OpenTelemetry.AutoInstrumentation.BuildTasks.targets(29,5): error : OpenTelemetry.AutoInstrumentation: add a reference to the instrumentation package 'MongoDB.Driver.Core.Extensions.DiagnosticSources' version 1.3.0 or add 'MongoDB.Driver.Core' to the property 'SkippedInstrumentations' to suppress this error.
|
||||
~packages/opentelemetry.autoinstrumentation.buildtasks/1.0.0-local.1/build/OpenTelemetry.AutoInstrumentation.BuildTasks.targets(29,5): error : OpenTelemetry.AutoInstrumentation: add a reference to the instrumentation package 'MongoDB.Driver.Core.Extensions.DiagnosticSources' version 1.3.0 or add 'MongoDB.Driver.Core' to the property 'SkippedInstrumentations' to suppress this error.
|
||||
```
|
||||
|
||||
To resolve the error either add the recommended instrumentation package or skip
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ esac
|
|||
|
||||
test -z "$OTEL_DOTNET_AUTO_HOME" && OTEL_DOTNET_AUTO_HOME="$HOME/.otel-dotnet-auto"
|
||||
test -z "$TMPDIR" && TMPDIR="$(mktemp -d)"
|
||||
test -z "$VERSION" && VERSION="v0.7.0"
|
||||
test -z "$VERSION" && VERSION="v1.0.0-rc.1"
|
||||
|
||||
RELEASES_URL="https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases"
|
||||
ARCHIVE="opentelemetry-dotnet-instrumentation-$OS_TYPE.zip"
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<EnablePublicApi>true</EnablePublicApi>
|
||||
|
||||
<!-- NuGet packages -->
|
||||
<Version>0.7.0$(VersionSuffix)</Version>
|
||||
<Version>1.0.0$(VersionSuffix)</Version>
|
||||
<IsPackable>true</IsPackable>
|
||||
<PackageIcon>opentelemetry-icon-color.png</PackageIcon>
|
||||
<PackageProjectUrl>https://opentelemetry.io</PackageProjectUrl>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ cmake_policy(SET CMP0015 NEW)
|
|||
# Project definition
|
||||
# ******************************************************
|
||||
|
||||
project("OpenTelemetry.AutoInstrumentation.Native" VERSION 0.7.0)
|
||||
project("OpenTelemetry.AutoInstrumentation.Native" VERSION 1.0.0)
|
||||
|
||||
# ******************************************************
|
||||
# Environment detection
|
||||
|
|
|
|||
|
|
@ -69,12 +69,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "The OpenTelemetry Authors"
|
||||
VALUE "FileDescription", "OpenTelemetry CLR Profiler"
|
||||
VALUE "FileVersion", "0.7.0.0"
|
||||
VALUE "FileVersion", "1.0.0.0"
|
||||
VALUE "InternalName", "OpenTelemetry.AutoInstrumentation.Native.DLL"
|
||||
VALUE "LegalCopyright", "Copyright 2021 The OpenTelemetry Authors"
|
||||
VALUE "OriginalFilename", "OpenTelemetry.AutoInstrumentation.Native.DLL"
|
||||
VALUE "ProductName", "OpenTelemetry .NET AutoInstrumentation"
|
||||
VALUE "ProductVersion", "0.7.0"
|
||||
VALUE "ProductVersion", "1.0.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ void CorProfiler::InitNetFxAssemblyRedirectsMap()
|
|||
{ L"OpenTelemetry", {1, 0, 0, 0} },
|
||||
{ L"OpenTelemetry.Api", {1, 0, 0, 0} },
|
||||
{ L"OpenTelemetry.Api.ProviderBuilderExtensions", {1, 0, 0, 0} },
|
||||
{ L"OpenTelemetry.AutoInstrumentation", {0, 7, 0, 0} },
|
||||
{ L"OpenTelemetry.AutoInstrumentation", {1, 0, 0, 0} },
|
||||
{ L"OpenTelemetry.Exporter.Console", {1, 0, 0, 0} },
|
||||
{ L"OpenTelemetry.Exporter.OpenTelemetryProtocol", {1, 0, 0, 0} },
|
||||
{ L"OpenTelemetry.Exporter.Prometheus.HttpListener", {1, 0, 0, 0} },
|
||||
|
|
|
|||
|
|
@ -69,13 +69,13 @@ const WSTRING opentelemetry_autoinstrumentation_loader_assemblyName = WStr("Open
|
|||
const WSTRING managed_profiler_name = WStr("OpenTelemetry.AutoInstrumentation");
|
||||
|
||||
const WSTRING managed_profiler_full_assembly_version =
|
||||
WStr("OpenTelemetry.AutoInstrumentation, Version=0.7.0.0, Culture=neutral, PublicKeyToken=null");
|
||||
WStr("OpenTelemetry.AutoInstrumentation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null");
|
||||
|
||||
const WSTRING nonwindows_nativemethods_type = WStr("OpenTelemetry.AutoInstrumentation.NativeMethods+NonWindows");
|
||||
const WSTRING windows_nativemethods_type = WStr("OpenTelemetry.AutoInstrumentation.NativeMethods+Windows");
|
||||
|
||||
const WSTRING managed_profiler_full_assembly_version_strong_name =
|
||||
WStr("OpenTelemetry.AutoInstrumentation, Version=0.7.0.0, Culture=neutral, PublicKeyToken=c0db600a13f60b51");
|
||||
WStr("OpenTelemetry.AutoInstrumentation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c0db600a13f60b51");
|
||||
|
||||
} // namespace trace
|
||||
|
||||
|
|
|
|||
|
|
@ -5,4 +5,4 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
constexpr auto PROFILER_VERSION = "0.7.0";
|
||||
constexpr auto PROFILER_VERSION = "1.0.0";
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ internal static class Constants
|
|||
{
|
||||
public static class Tracer
|
||||
{
|
||||
public const string Version = "0.7.0";
|
||||
public const string Version = "1.0.0-rc.1";
|
||||
public const string AutoInstrumentationVersionName = "telemetry.auto.version";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue