How to Monitor Fisheye's Mail Queue

Still need help?

The Atlassian Community is here for you.

Ask the community

The content on this page relates to platforms which are supported; however, the content is out of scope of our Atlassian Support Offerings. Consequently, Atlassian cannot guarantee support. Please be aware that this material is provided for your information only and you may use it at your own risk.

Purpose

If the mail queue gets backed up frequently it can be useful to monitor the mail queue.

Solution

Use the following database query to see all the queued emails:

SELECT cru_recipient.cru_email AS status, cru_create_date, cru_note, cru_user_name
FROM cru_recipient
JOIN cru_notification ON cru_recipient.cru_notification_id = cru_notification.cru_notification_id
JOIN cru_user ON cru_recipient.cru_user = cru_user.cru_user_id
ORDER BY cru_create_date DESC;



Last modified on Oct 26, 2021

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.