Een optie is om gewoon een tijdstempel voor de query en een tijdstempel na de query te gebruiken en het verschil als volgt te controleren:
// get a timestamp before running the query
var pre_query = new Date().getTime();
// run the job
connection.query(query, function(err, rows, fields) {
// get a timestamp after running the query
var post_query = new Date().getTime();
// calculate the duration in seconds
var duration = (post_query - pre_query) / 1000;
});