Skip to content

Releases: Vinelab/tracing-laravel

v1.0.1

29 Jan 11:47
7888f9e
Compare
Choose a tag to compare

Included compatibility fix for Laravel 6.

v1.0.0

26 Dec 14:13
573e9e3
Compare
Choose a tag to compare

Added support for tracing Laravel's queue jobs. Also provides better default names for spans created from console commands.

v0.7.1

29 Nov 21:08
4fa8693
Compare
Choose a tag to compare

We're now fault-tolerant 🎉

Ensure application doesn't go down when collector is not reachable. You can configure request_timeout (defaults to 5). Also reports warning when unable to resolve IP address from a hostname (previously a fatal error).

v0.7.0

24 Oct 09:46
e0bdcec
Compare
Choose a tag to compare

Added

  • Better default span names for HTTP tracing like VERB /path/for/route.
  • Option to whitelist headers for logging (or use wildcard like * to log everything).
  • Option to mark headers as sensitive in order to hide their values (the header name will still be visible if allowed in configuration).
  • Automatically tag errors in order to denote that operation represented by the Span has failed (this adds error=true tag to the span if error message is logged). You can opt-out of this behavior via config file.

Upgrade Guide

  • if you published tracing config to your project, you will need to add middleware.allowed_headers, middleware.sensitive_headers and errors options. Please reference default configuration for more details.

v0.6.0

21 Oct 12:22
95e49a2
Compare
Choose a tag to compare

Added support for Google Cloud PubSub to propagate tracing headers

v0.5.1

20 Sep 13:53
65ecd99
Compare
Choose a tag to compare
  • Fix the bug with incompatible propagation contracts due to composer's minimum-stability constraint ignoring dependency version constraint in a lock file. All consumers of the package are advised to update to a new version

v0.5.0

30 Aug 14:26
45e2b3a
Compare
Choose a tag to compare
  • Allow to configure HTTP middleware to exclude certain path (patterns) from tracing

v0.4.1

30 Aug 11:52
0a504fb
Compare
Choose a tag to compare
  • Fix the cause of an error when calling php artisan without arguments

v0.4.0

27 Aug 18:12
b50987e
Compare
Choose a tag to compare
  • Don't throw error on inject when current span is missing, just gracefully move on

v0.3.0

27 Aug 17:41
9374389
Compare
Choose a tag to compare
  • Add console tracing