Skip to content

Commit 57b8c2f

Browse files
Remove prerelease flag (#141)
Users should install the latest stable release now there is one.
1 parent a646c7d commit 57b8c2f

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<!-- markdown-link-check-disable -->
1111
[![Build](https://github.com/grafana/grafana-opentelemetry-dotnet/actions/workflows/unit-tests.yml/badge.svg?branch=main)](https://github.com/grafana/grafana-opentelemetry-dotnet/actions/workflows/unit-tests.yml)
1212
[![OATS](https://github.com/grafana/grafana-opentelemetry-dotnet/actions/workflows/oats.yml/badge.svg?branch=main)](https://github.com/grafana/grafana-opentelemetry-dotnet/actions/workflows/oats.yml)
13-
[![Nuget](https://img.shields.io/nuget/v/Grafana.OpenTelemetry.svg)](https://www.nuget.org/profiles/Grafana)
13+
[![NuGet](https://img.shields.io/nuget/v/Grafana.OpenTelemetry?logo=nuget&label=NuGet&color=blue)](https://www.nuget.org/profiles/Grafana)
1414
[![SDK](https://img.shields.io/badge/otel--sdk-1.9.0-blue?style=flat&logo=opentelemetry)](https://github.com/open-telemetry/opentelemetry-dotnet)
1515
[![Slack](https://img.shields.io/badge/join%20slack-%23app--o11y-brightgreen.svg?logo=slack)](https://grafana.slack.com/archives/C05E87XRK3J)
1616
<!-- markdown-link-check-enable -->
@@ -32,7 +32,7 @@ reference to the [`Grafana.OpenTelemetry`](https://www.nuget.org/packages/Grafan
3232
package to your project.
3333

3434
```sh
35-
dotnet add package --prerelease Grafana.OpenTelemetry
35+
dotnet add package Grafana.OpenTelemetry
3636
```
3737

3838
### Step 2: Enable the Grafana distribution at application startup

docs/migration.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,19 @@ installing and configuring upstream OpenTelemetry .NET packages. Follow these
55
steps if you want to migrate from this distribution to the upstream
66
OpenTelemetry .NET project.
77

8-
- Set appropriate environment variables or web.config/app.config values as
9-
explained [here](https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/#push-directly-from-applications-using-the-opentelemetry-sdks)
8+
- Set appropriate environment variables or `web.config`/`app.config` values as
9+
explained here: [Send data to the Grafana Cloud OTLP endpoint][publish-otlp]
1010
- Install and activate the OpenTelemetry SDK,
11-
as covered in the upstream [Getting Started](https://github.com/open-telemetry/opentelemetry-dotnet#getting-started)
12-
guide
11+
as covered in the upstream [Getting Started][getting-started] guide
1312
- Setup the OTLP exporter for metrics, logs, and traces - see the
14-
[exporter README](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/src/OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md)
15-
for details. The exporter will respect the previously set environment variables:
13+
[exporter README][exporter-readme] for details. The exporter will respect the
14+
previously set environment variables:
1615
- `OTEL_EXPORTER_OTLP_PROTOCOL`
1716
- `OTEL_EXPORTER_OTLP_ENDPOINT`
1817
- `OTEL_EXPORTER_OTLP_HEADERS`
1918
- Install and configure any desired instrumentation packages
20-
[listed here](./supported-instrumentations.md)
21-
- [Add the OpenTelemetry resource attributes](https://grafana.com/docs/opentelemetry/instrumentation/configuration/resource-attributes/)
19+
[listed here](./supported-instrumentations.md)
20+
- [Add the OpenTelemetry resource attributes][resource-attributes]
2221
via the `OTEL_RESOURCE_ATTRIBUTES` environment variable
2322
- `service.name`
2423
- `service.namespace`
@@ -29,3 +28,8 @@ via the `OTEL_RESOURCE_ATTRIBUTES` environment variable
2928
```shell
3029
export OTEL_RESOURCE_ATTRIBUTES=service.instance.id=<pod123>,deployment.environment=...
3130
```
31+
32+
[exporter-readme]: https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/src/OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md
33+
[getting-started]: https://github.com/open-telemetry/opentelemetry-dotnet#getting-started
34+
[publish-otlp]: https://grafana.com/docs/grafana-cloud/send-data/otlp/send-data-otlp/#quickstart-architecture
35+
[resource-attributes]: https://grafana.com/docs/grafana-cloud/monitor-applications/application-observability/instrument/resource-attributes/

0 commit comments

Comments
 (0)