Add Prometheus to the core package (#2185)

This commit is contained in:
Cijo Thomas 2021-07-25 09:46:18 -07:00 committed by GitHub
parent 8a087d50d6
commit c7aebdbf7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 19 additions and 22 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -0,0 +1,9 @@
# Changelog
## Unreleased
## 1.0.0-rc1.1
Released 2020-Nov-17
* Initial release

View File

@ -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>