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:
CREATE INDEX channel_idx_id ON "channel" ("id");
CREATE INDEX message_idx_channel_id_status ON "message" ("channel_id","status");
SELECT
ch.name,
date(msg.date_created),
msg.status
FROM
message msg,
channel ch
WHERE
msg.status != 'TRANSFORMED'
AND msg.channel_id = ch.id
AND msg.date_created BETWEEN to_date('2015-01-10', 'YYYY-MM-DD') AND to_date('2015-01-11', 'YYYY-MM-DD')