Skip to content

Commit 150ad8c

Browse files
authored
Prep azotel for v0.1.0 release (#20977)
* Prep azotel for v0.1.0 release * add code owners for azotel * fix build status links
1 parent 51a7e61 commit 150ad8c

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
# PRLabel: %Storage
4949
/sdk/storage/ @siminsavani-msft @souravgupta-msft @tasherif-msft @jhendrixMSFT @gapra-msft @vibhansa-msft
5050

51+
# PRLabel: %Open Telemetry
52+
/sdk/tracing/azotel @jhendrixMSFT @rickwinter
53+
5154
################
5255
# Automation
5356
################

sdk/tracing/azotel/CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
# Release History
22

3-
## 0.1.0 (Unreleased)
3+
## 0.1.0 (2023-06-06)
44

55
### Features Added
66

7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
7+
* Initial release

sdk/tracing/azotel/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Azure OpenTelemetry Adapter Module for Go
22

33
[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/tracing/azotel)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/tracing/azotel)
4-
[![Build Status](https://dev.azure.com/azure-sdk/public/_apis/build/status/go/go%20-%20azcore%20-%20ci?branchName=main)](https://dev.azure.com/azure-sdk/public/_build/latest?definitionId=1843&branchName=main)
4+
[![Build Status](https://dev.azure.com/azure-sdk/public/_apis/build/status/go/go%20-%20azotel%20-%20ci?branchName=main)](https://dev.azure.com/azure-sdk/public/_build/latest?definitionId=6176&branchName=main)
55

6-
The `azotel` module is used to connect an OpenTelemetry's `TracerAdapter` to an Azure SDK client.
6+
The `azotel` module is used to connect an instance of OpenTelemetry's `TracerProvider` to an Azure SDK client.
77

88
## Getting started
99

@@ -21,7 +21,7 @@ General documentation and examples can be found on [pkg.go.dev](https://pkg.go.d
2121

2222
## Using the adapter
2323

24-
Once you have an OpenTelemetry `TracerProvider`, you connect it to an Azure SDK client via its `ClientOptions`.
24+
Once you have created an OpenTelemetry `TracerProvider`, you connect it to an Azure SDK client via its `ClientOptions`.
2525

2626
```go
2727
options := azcore.ClientOptions{}

sdk/tracing/azotel/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/Azure/azure-sdk-for-go/sdk/tracing/azotel
33
go 1.19
44

55
require (
6-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0-beta.1
6+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0-beta.2
77
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0
88
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.1.1
99
github.com/stretchr/testify v1.8.3
@@ -31,5 +31,3 @@ require (
3131
golang.org/x/text v0.8.0 // indirect
3232
gopkg.in/yaml.v3 v3.0.1 // indirect
3333
)
34-
35-
replace github.com/Azure/azure-sdk-for-go/sdk/azcore => ../../azcore

sdk/tracing/azotel/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0-beta.2 h1:C3zKsGguxcLd8a2uEytB8+TFtBGd75bXRxEs0QBwsv0=
2+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0-beta.2/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q=
13
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0 h1:vcYCAze6p19qBW7MhZybIsqD8sMV8js0NyQM8JDnVtg=
24
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0/go.mod h1:OQeznEEkTZ9OrhHJoDD8ZDq51FHgXjqtP9z6bEwBq9U=
35
github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 h1:sXr+ck84g/ZlZUOZiNELInmMgOsuGwdjjVkEIde0OtY=

0 commit comments

Comments
 (0)