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

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

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.

*Fisheye および Crucible は除く

要約

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

ソリューション

Jira uses the AO_4E8AE6_NOTIF_BATCH_QUEUE table to store the satisfaction survey email notifications to customers. Every time when the CONTEXT is RESOLVED, JSD will send out a CSAT email.

In order to obtain the email CSAT emails you sent during the previous month, we 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;

(info) 1598943600000 is in epoch time format and it means Sep1st 12 am PST.
(info) 1601535540000 is Sep30th 11:50 pm PST.

(warning) Google Epoch time converter to change 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 to meet the different needs of your database.

(info) The table AO_4E8AE6_NOTIF_BATCH_QUEUE is cleared 1 month after sending it to avoid the database table gets too big. 

Additional Information


最終更新日 2020 年 11 月 23 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.