You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
It seems that currently with opencensus_trace_method as part of the PECL extension, if the method is inherited from a parent class, the trace won't fire.
For e.g. we wanted to trace Illuminate\Http\Response::send, but it is actually inherited from Symfony\Component\HttpFoundation\Response::send.
Hello,
It seems that currently with
opencensus_trace_method
as part of the PECL extension, if the method is inherited from a parent class, the trace won't fire.For e.g. we wanted to trace
Illuminate\Http\Response::send
, but it is actually inherited fromSymfony\Component\HttpFoundation\Response::send
.https://github.com/a1comms/GaeSupportLaravel/blob/php72-laravel55/src/A1comms/GaeSupportLaravel/Trace/Integration/LaravelExtended.php#L32
Here, only the callback for:
and not
is ever fired.
Would it be possible to trigger when a trace is requested on the child class?
This would properly allow re-defining the function in the child class without having to re-do the trace definition.
Regards,
iamacarpet
The text was updated successfully, but these errors were encountered: