Add Prometheus to the core package (#2185)
This commit is contained in:
parent
8a087d50d6
commit
c7aebdbf7d
|
|
@ -1,12 +1,5 @@
|
|||
# Changelog
|
||||
|
||||
## Experimental - Metrics
|
||||
|
||||
Note: the metrics work is happening in the [metrics feature
|
||||
branch](https://github.com/open-telemetry/opentelemetry-dotnet/tree/metrics),
|
||||
please check the latest changes
|
||||
[here](https://github.com/open-telemetry/opentelemetry-dotnet/blob/metrics/src/OpenTelemetry.Exporter.Console/CHANGELOG.md#experimental---metrics).
|
||||
|
||||
## Unreleased
|
||||
|
||||
## 1.2.0-alpha1
|
||||
|
|
|
|||
|
|
@ -1,12 +1,5 @@
|
|||
# Changelog
|
||||
|
||||
## Experimental - Metrics
|
||||
|
||||
Note: the metrics work is happening in the [metrics feature
|
||||
branch](https://github.com/open-telemetry/opentelemetry-dotnet/tree/metrics),
|
||||
please check the latest changes
|
||||
[here](https://github.com/open-telemetry/opentelemetry-dotnet/blob/metrics/src/OpenTelemetry.Exporter.InMemory/CHANGELOG.md#experimental---metrics).
|
||||
|
||||
## Unreleased
|
||||
|
||||
## 1.2.0-alpha1
|
||||
|
|
|
|||
|
|
@ -1,12 +1,5 @@
|
|||
# Changelog
|
||||
|
||||
## Experimental - Metrics
|
||||
|
||||
Note: the metrics work is happening in the [metrics feature
|
||||
branch](https://github.com/open-telemetry/opentelemetry-dotnet/tree/metrics),
|
||||
please check the latest changes
|
||||
[here](https://github.com/open-telemetry/opentelemetry-dotnet/blob/metrics/src/OpenTelemetry.Exporter.OpenTelemetryProtocol/CHANGELOG.md#experimental---metrics).
|
||||
|
||||
## Unreleased
|
||||
|
||||
## 1.2.0-alpha1
|
||||
|
|
@ -16,6 +9,8 @@ Released 2021-Jul-23
|
|||
* Removes .NET Framework 4.5.2, .NET 4.6 support. The minimum .NET Framework
|
||||
version supported is .NET 4.6.1. ([#2138](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2138))
|
||||
|
||||
* Add Metrics support.([#2174](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2174))
|
||||
|
||||
## 1.1.0
|
||||
|
||||
Released 2021-Jul-12
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
|
||||
## 1.0.0-rc1.1
|
||||
|
||||
Released 2020-Nov-17
|
||||
|
||||
* Initial release
|
||||
|
|
@ -2,14 +2,21 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
|
||||
<Description>Console exporter for OpenTelemetry .NET</Description>
|
||||
<Description>Prometheus exporter for OpenTelemetry .NET</Description>
|
||||
<PackageTags>$(PackageTags);prometheus;metrics</PackageTags>
|
||||
<MinVerTagPrefix>core-</MinVerTagPrefix>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<NoWarn>$(NoWarn),1591</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<!--Do not run ApiCompat as this package has never released a stable version.
|
||||
Remove this property once we have released a stable version.-->
|
||||
<PropertyGroup>
|
||||
<RunApiCompat>false</RunApiCompat>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="$(RepoRoot)\src\OpenTelemetry\OpenTelemetry.csproj" />
|
||||
</ItemGroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue