@@ -53,7 +53,14 @@ class EventHandler
53
53
*
54
54
* @var bool
55
55
*/
56
- private $ traceSqlQueryOrigins ;
56
+ private $ traceSqlQueryOrigin ;
57
+
58
+ /**
59
+ * The threshold in milliseconds to consider a SQL query origin.
60
+ *
61
+ * @var int
62
+ */
63
+ private $ traceSqlQueryOriginTreshHoldMs ;
57
64
58
65
/**
59
66
* Indicates if we should trace queue job spans.
@@ -90,7 +97,8 @@ public function __construct(array $config)
90
97
{
91
98
$ this ->traceSqlQueries = ($ config ['sql_queries ' ] ?? true ) === true ;
92
99
$ this ->traceSqlBindings = ($ config ['sql_bindings ' ] ?? true ) === true ;
93
- $ this ->traceSqlQueryOrigins = ($ config ['sql_origin ' ] ?? true ) === true ;
100
+ $ this ->traceSqlQueryOrigin = ($ config ['sql_origin ' ] ?? true ) === true ;
101
+ $ this ->traceSqlQueryOriginTreshHoldMs = $ config ['sql_origin_threshold_ms ' ] ?? 100 ;
94
102
95
103
$ this ->traceQueueJobs = ($ config ['queue_jobs ' ] ?? false ) === true ;
96
104
$ this ->traceQueueJobsAsTransactions = ($ config ['queue_job_transactions ' ] ?? false ) === true ;
@@ -180,8 +188,8 @@ protected function queryExecutedHandler(DatabaseEvents\QueryExecuted $query): vo
180
188
]));
181
189
}
182
190
183
- if ($ this ->traceSqlQueryOrigins ) {
184
- $ queryOrigin = $ this ->resolveQueryOriginFromBacktrace ();
191
+ if ($ this ->traceSqlQueryOrigin && $ query -> time >= $ this -> traceSqlQueryOriginTreshHoldMs ) {
192
+ $ queryOrigin = $ this ->resolveEventOrigin ();
185
193
186
194
if ($ queryOrigin !== null ) {
187
195
$ context ->setData (array_merge ($ context ->getData (), $ queryOrigin ));
@@ -191,30 +199,6 @@ protected function queryExecutedHandler(DatabaseEvents\QueryExecuted $query): vo
191
199
$ parentSpan ->startChild ($ context );
192
200
}
193
201
194
- /**
195
- * Try to find the origin of the SQL query that was just executed.
196
- *
197
- * @return string|null
198
- */
199
- private function resolveQueryOriginFromBacktrace (): ?array
200
- {
201
- $ backtraceHelper = $ this ->makeBacktraceHelper ();
202
-
203
- $ firstAppFrame = $ backtraceHelper ->findFirstInAppFrameForBacktrace (debug_backtrace (DEBUG_BACKTRACE_IGNORE_ARGS ));
204
-
205
- if ($ firstAppFrame === null ) {
206
- return null ;
207
- }
208
-
209
- $ filePath = $ backtraceHelper ->getOriginalViewPathForFrameOfCompiledViewPath ($ firstAppFrame ) ?? $ firstAppFrame ->getFile ();
210
-
211
- return [
212
- 'code.filepath ' => $ filePath ,
213
- 'code.function ' => $ firstAppFrame ->getFunctionName (),
214
- 'code.lineno ' => $ firstAppFrame ->getLine (),
215
- ];
216
- }
217
-
218
202
protected function responsePreparedHandler (RoutingEvents \ResponsePrepared $ event ): void
219
203
{
220
204
$ span = $ this ->popSpan ();
0 commit comments