We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a convenience method to insert annotations for the entire app (all requests should have them)?
Right now seems like needing to customise SegmentCollector.php
public function initHttpTracer(Request $request): void { if (! $this->isTracerEnabled()) { return; } $this->segments = []; $tracer = $this->tracer() ->setTraceHeader($_SERVER['HTTP_X_AMZN_TRACE_ID'] ?? null) ->setName(config('app.name')) ->setClientIpAddress($request->getClientIp()) ->addAnnotation('Framework', 'Laravel ' . app()->version()) ->addAnnotation('PHP Version', PHP_VERSION) // EXTRA ANNONTATION TO DEFINE SYSTEM BOUNDARY ->addAnnotation("System", "SYSTEM NAME TO DIFFERENTIATE FROM OTHERS") ->setUrl($request->url()) ->setMethod($request->method()); $tracer->begin(100); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there a convenience method to insert annotations for the entire app (all requests should have them)?
Right now seems like needing to customise SegmentCollector.php
The text was updated successfully, but these errors were encountered: