Hello,
I'm trying the Jira Enhancer Plugin. I've just added a CF Last User Commenter, but I can't find any entry in the database (not in CHANGEITEM, not even CUSTOMFIELDVALUE) to make KPIs on it
Thanks
Hi
All JIRA Enhancer Plugin custom fields are calculated custom fields.
This means that they are not stored in database, they are calculated from issue's actions.
However, you can get KPIs automaticcaly via REST API.
For example by getting JSON form http://example.com/jira/rest/api/2/issue/issue-key returns a value of "customfield_10860":"2012-05-18 14:46:18.0"
Regards
Tuncay Senturk
Thank you guys
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess the information you are looking for stands in JIRAACTION with ACTIONTYPE ='comment'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And here is how to select it:
select i.pkey, a.updateauthor lastcommentedby, a.updated lastcommented from jiraaction a, jiraissue i where a.issueid = i.id and (a.issueid, a.updated) =(select issueid, max(updated) from jiraaction where actiontype ='comment' group by issueid);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.