This is a debug sender for Flare payloads, mostly used for internal testing purposes.
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
You can install the package via composer:
composer require spatie/flare-debug-sender
Within your Flare config:
'sender' => [
'class' => \Spatie\FlareDebugSender\FlareDebugSender::class,
'config' => ['passthrough_errors' => false,
'passthrough_traces' => false,
'passthrough_zipkin' => false,
'replace_tracing_ids' => true,
'replace_tracing_times' => true,
'print_full_payload' => false,
'print_endpoint' => false,
],
],
Open up Ray and start debugging!
passthrough_errors
: If set totrue
, errors will be passed through to the default sender.passthrough_traces
: If set totrue
, traces will be passed through to the default sender.passthrough_zipkin
: If set totrue
, traces will be sent to a local Zipkin instance.replace_tracing_ids
: If set totrue
, the span ids will be replaced with a more readable version.replace_tracing_times
: If set totrue
, the start and end times of the spans will be replaced with a more readable version.print_full_payload
: If set totrue
, the full payload will be printed to ray.print_endpoint
: If set totrue
, the endpoint will be printed to ray.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.