In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
ALTER TABLE `process_period` ADD INDEX `process_period_idx_start_time` (`start_time`);
SELECT
process_period.start_time,
process_period.duration
FROM
process_period
WHERE
process_period.start_time >= '2013-10-01 10:00:00'
AND process_period.start_time < process_period."2013-10-24 11:00:00"