v0.4.0
⚠️ This release contains breaking changes ⚠️
This Release:
- Introduces named parameter support
Prior to this release:
python tracepusher.py http://localhost:4318 tracepusher my-span 2
Becomes the following in this release:
python tracepusher.py --endpoint=http://OTEL-COLLECTOR-URL:4318 --service-name=tracepusher --span-name=my-span --duration=2
or:
docker run gardnera/tracepusher:v0.4.0 \
--endpoint=http://OTEL-COLLECTOR-URL:4318 \
--service-name=tracepusher \
--span-name=my-span \
--duration=2
What's Changed
- (feat) Named Arguments by @agardnerIT in #10
Full Changelog: 0.3.1...0.4.0