Skip to content

Releases: NdoleStudio/go-otelroundtripper

v0.0.11

21 Dec 04:46
bb00951
Compare
Choose a tag to compare
  • Updated go.opentelemetry.io/otel to v1.33.0
  • Updated go.opentelemetry.io/otel/metric to v1.33.0

v0.0.10

28 Jun 02:53
94a6a37
Compare
Choose a tag to compare
  • Updated go.opentelemetry.io/otel to v1.27.0
  • Updated go.opentelemetry.io/otel/metric to v1.27.0

v0.0.9

08 Nov 06:17
e2325b6
Compare
Choose a tag to compare
  • Updated go.opentelemetry.io/otel to v1.19.0
  • Updated go.opentelemetry.io/otel/metric to v1.19.0

v0.0.8

29 Jul 11:22
b9a4390
Compare
Choose a tag to compare
  • Updated go.opentelemetry.io/otel to v1.16.0
  • Updated go.opentelemetry.io/otel/metric to v0.39.0

Full Changelog: v0.0.7...v0.0.8

0.0.7

20 Mar 18:39
Compare
Choose a tag to compare
  • Updated go.opentelemetry.io/otel to v1.14.0
  • Updated go.opentelemetry.io/otel/metric to v0.37.0

Full Changelog: v0.0.6...v0.0.7

v0.0.6

22 Jan 14:00
Compare
Choose a tag to compare

Full Changelog: v0.0.5...v0.0.6

v0.0.5

15 Oct 19:22
Compare
Choose a tag to compare
  • Fixed bug with the example_test.go file.

v0.0.4

15 Oct 18:45
Compare
Choose a tag to compare

Replaced nonrecording.NewNoopMeter() with metric.NewNoopMeter()

v0.0.3

15 Oct 18:38
Compare
Choose a tag to compare
  • Updated go.opentelemetry.io/otel v1.11.0
  • Updated go.opentelemetry.io/otel/metric v0.32.3

v0.0.1

20 Nov 16:49
Compare
Choose a tag to compare

Initial Release

The following metrics will be emited:

  • *.no_reqeusts http calls with nil http.Request
  • *.errors http requests which had an error response i.e err != nil
  • *.success http requests which were successfull. Meaning there were no transport errors
  • *.timeouts http requests which timed out
  • *.cancelled http requests with cancelled context
  • *.deadline_exceeded http requests with context dateline exceeded
  • *.total_duration total time it takes to execute the http request in milliseconds
  • *.in_flight concurrent http requests
  • *.attempts http requests attempted
  • *.failures http requests with http status code >= 400
  • *.redirects http requests with 300 <= http status code < 400