zipkin-php
zipkin-php copied to clipboard
Zipkin instrumentation for PHP
``` $span->log([ 'event'=>'error', 'stack'=> (string)$exception, ]); ```  `event` and `stack` valid
We need to provide framework integrations for zipkin. Priority frameworks are: 1. [x] Symfony 2. [ ] Laravel 3. [ ] Silex 4. [x] Guzzle http client Ping @felixfbecker @beberlei
This PR adds a middleware to instrument laravel apps.
Hello everyone, I have a php app which communicates with other microservices for its operations. Can i use Zipkin to observe every message between microservices and their size? Essentially, i...
If you don't mind, please move some of the logic inlined into ci.yml into build-bin, with a README and RELEASE.md like the other projects. Also, if you can, please change...
Currently reporter is not providing any feedback about the call to the zipkin server, if it fails it logs the error and don't fail and more so if it success,...
Initially `Map` was a Getter/Setter supposed to act as a usual map (i.e. set/get by key, see https://github.com/openzipkin/zipkin-php/blob/master/src/Zipkin/Propagation/Map.php), unfortunately I also promoted its use for HTTP headers (for things like...
There are many use cases where we want to pass tags to all our spans based on enviroment parameters (e.g. instance id). They are static values and can perfectly fit...