Skip to content

Commit a77d0fe

Browse files
authored
Prepares X-Ray UDP Exporter v1.0.0 release (#278)
1 parent ab41d96 commit a77d0fe

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

exporters/xrayudp/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History: exporters/xrayudp
22

3+
### v1.0.0 / 2025-05-15
4+
5+
* No changes
6+
37
### v0.1.0 / 2025-04-15
48

5-
* Initial release
9+
* Initial release

exporters/xrayudp/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# AWS X-Ray UDP Exporter for Usage with OpenTelemetry on Lambda
2+
3+
## Installation
4+
5+
Install with the following command:
6+
7+
```
8+
go get github.com/aws-observability/aws-otel-go/exporters/xrayudp
9+
```
10+
11+
## Usage
12+
13+
```go
14+
// ...
15+
16+
udpExporter, _ := xrayudp.NewSpanExporter(ctx)
17+
18+
tp := trace.NewTracerProvider(trace.WithSpanProcessor(trace.NewSimpleSpanProcessor(udpExporter)))
19+
20+
// ...
21+
```

0 commit comments

Comments
 (0)