Indietro in M1 è possibile registrare le query lente modificando le seguenti variabili in lib/Varien/Db/Adapter/Pdo/Mysql.php
:
/**
* Write SQL debug data to file
*
* @var bool
*/
protected $_debug = false;
/**
* Minimum query duration time to be logged
*
* @var unknown_type
*/
protected $_logQueryTime = 0.05;
/**
* Log all queries (ignored minimum query duration time)
*
* @var bool
*/
protected $_logAllQueries = false;
/**
* Add to log call stack data (backtrace)
*
* @var bool
*/
protected $_logCallStack = false;
/**
* Path to SQL debug data log
*
* @var string
*/
protected $_debugFile = 'var/debug/sql.txt';
Quindi mi chiedo come posso farlo in M2? Ho trovato alcune cose interessanti lib/internal/Magento/Framework/DB/Logger/LoggerAbstract
e lib/internal/Magento/Framework/DB/Logger/File
non sono sicuro al 100% su come affrontarlo.