How to find out how many Jira Service Management Customer Satisfaction Survey has been sent

Still need help?

The Atlassian Community is here for you.

Ask the community


Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

The response rate to the Jira Service Management Customer Satisfaction Survey is low sometimes. As an admin, you can find out how many emails were sent out in the last month and this month. 

Solution

Jira uses the AO_4E8AE6_NOTIF_BATCH_QUEUE table to store customer satisfaction survey email notifications. When the CONTEXT is RESOLVED, JSM sends out a CSAT email.

In order to obtain the email CSAT emails sent during the previous month, you can run the following query to get the count. 

select count(*) from AO_4E8AE6_NOTIF_BATCH_QUEUE where CONTEXT='RESOLVED' AND SENT_TIME between 1598943600000 and 1601535540000;

1598943600000 is in epoch time format and it means Sep 1st 12 am PST.
1601535540000 is Sep 30th 11:50 pm PST.
The table AO_4E8AE6_NOTIF_BATCH_QUEUE is cleared 1 month after sending it to avoid the database table getting too big. 

You can use the Google Epoch time converter to convert the time from human date to Epoch format to get the data. Please also be aware that this query was written for MySQL; please modify it to meet the different needs of your database.

Additional Information


Last modified on Oct 30, 2024

Was this helpful?

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