JQL - How to count the number of my comments per day?

Martin Bassus September 18, 2012

Hey Guys,

i want to create a filter, that show me how much comments i did per day, for a graph.


I want to create a new Graph-Gadget after that, that show me a line, with the number of my comments.

Help! :)

Thanks a lot!

1 answer

0 votes
Tiago Comasseto
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 19, 2012

Hi Martin,

I don't know if it is possible only with JIRA, but as an alternative you may use Confluence and SQL plugin to query directly JIRA database.

This is an example of usage with wikimarkup:

{chart:title=Comments per user|type=pie|dataOrientation=vertical}
{sql:output=wiki|dataSource=JIRA}
select author, count(*) as "Comments" from jiraaction where created like concat(curdate(),' ','%') group by author;
{sql}
{chart}

Cheers

Suggest an answer

Log in or Sign up to answer