Skip to content

Commit ab72985

Browse files
authored
Update host and OS detectors for 1.0.1 (#121)
1 parent 46d6455 commit ab72985

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.0.0
3+
## 1.0.1
44

55
This is the first GA release of this distribution.
66

@@ -20,11 +20,15 @@ This is the first GA release of this distribution.
2020

2121
* Remove workaround for stable `service.instance.id` across signals
2222
([#108](https://github.com/grafana/grafana-opentelemetry-dotnet/pull/108))
23+
* Use 0.1.0-beta.3 of OpenTelemetry.Resources.Host
24+
* Fix the bug where macOS was detected as Linux
25+
([#1985](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1985))
2326

2427
### New features
2528

2629
* Adds Operating System resource detector.
2730
([#113](https://github.com/grafana/grafana-opentelemetry-dotnet/pull/113))
31+
([#121](https://github.com/grafana/grafana-opentelemetry-dotnet/pull/121))
2832
* Add new environment variable `GRAFANA_DOTNET_DISABLE_RESOURCE_DETECTORS`.
2933
Setting this will cause the provided resource detectors to be disabled.
3034
([#111](https://github.com/grafana/grafana-opentelemetry-dotnet/pull/111))

src/Grafana.OpenTelemetry.Base/Grafana.OpenTelemetry.Base.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747

4848
<!-- Non-stable instrumentation packages with no dependencies, non netstandard2.0 -->
4949
<ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2.0' ">
50-
<PackageReference Include="OpenTelemetry.Resources.Host" Version="0.1.0-beta.2" />
51-
<PackageReference Include="OpenTelemetry.Resources.OperatingSystem" Version="0.1.0-alpha.2" />
50+
<PackageReference Include="OpenTelemetry.Resources.Host" Version="0.1.0-beta.3" />
51+
<PackageReference Include="OpenTelemetry.Resources.OperatingSystem" Version="0.1.0-alpha.4" />
5252
<PackageReference Include="OpenTelemetry.Resources.Process" Version="0.1.0-beta.2" />
5353
<PackageReference Include="OpenTelemetry.Resources.ProcessRuntime" Version="0.1.0-beta.2" />
5454
</ItemGroup>

0 commit comments

Comments
 (0)