File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
src/Tracing/Doctrine/DBAL Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ abstract class AbstractTracingStatement
14
14
/**
15
15
* @internal
16
16
*/
17
- public const SPAN_OP_STMT_EXECUTE = 'sql.stmt .execute ' ;
17
+ public const SPAN_OP_STMT_EXECUTE = 'db.sql .execute ' ;
18
18
19
19
/**
20
20
* @var HubInterface The current hub
Original file line number Diff line number Diff line change @@ -23,32 +23,32 @@ final class TracingDriverConnection implements TracingDriverConnectionInterface
23
23
/**
24
24
* @internal
25
25
*/
26
- public const SPAN_OP_CONN_PREPARE = 'sql.conn .prepare ' ;
26
+ public const SPAN_OP_CONN_PREPARE = 'db.sql .prepare ' ;
27
27
28
28
/**
29
29
* @internal
30
30
*/
31
- public const SPAN_OP_CONN_QUERY = 'sql.conn .query ' ;
31
+ public const SPAN_OP_CONN_QUERY = 'db.sql .query ' ;
32
32
33
33
/**
34
34
* @internal
35
35
*/
36
- public const SPAN_OP_CONN_EXEC = 'sql.conn .exec ' ;
36
+ public const SPAN_OP_CONN_EXEC = 'db.sql .exec ' ;
37
37
38
38
/**
39
39
* @internal
40
40
*/
41
- public const SPAN_OP_CONN_BEGIN_TRANSACTION = 'sql.conn.begin_transaction ' ;
41
+ public const SPAN_OP_CONN_BEGIN_TRANSACTION = 'db. sql.transaction.begin ' ;
42
42
43
43
/**
44
44
* @internal
45
45
*/
46
- public const SPAN_OP_TRANSACTION_COMMIT = 'sql.transaction.commit ' ;
46
+ public const SPAN_OP_TRANSACTION_COMMIT = 'db. sql.transaction.commit ' ;
47
47
48
48
/**
49
49
* @internal
50
50
*/
51
- public const SPAN_OP_TRANSACTION_ROLLBACK = 'sql.transaction.rollback ' ;
51
+ public const SPAN_OP_TRANSACTION_ROLLBACK = 'db. sql.transaction.rollback ' ;
52
52
53
53
/**
54
54
* @var HubInterface The current hub
You can’t perform that action at this time.
0 commit comments