<@U0W7DGZA6> there are only basic statistics (i.e....
# exposed
t
@mathiasbn there are only basic statistics (i.e. executions count and duration aggregated by similar queries). It's switched off by default, but you can enable it by setting:
Copy code
transaction {
   debug = true
   // your code 
   statementStats.forEach { 
     val query = it.key
     val (count, duration) = it.value
     // log or track it
  }
  // statements.toString() <-- contains string with every query and duration 
}