Graph not plotting the Sum of existing issues

Issue #99 resolved
Prathima Ramachandra created an issue

Hi,

I am trying to create a graph that shows me the trend of issues created / resolved / and currently open for a particular label. All the different created / resolved line graphs are getting plotted correctly. But the Total open items when I select the Time series as None(Sum of existing issues) gives me 0 as the count. I have tried to play with query in different ways, but not able to get the same. What is it that I am doing wrong here? The dashboard where I am trying this out is: https://eton-solutions.atlassian.net/secure/Dashboard.jspa?selectPageId=10188#JavaScript-Chart-for-JIRA-Cloud/10893

This is urgent & if any help can be extended today, that would be great.

Prathima

Comments (5)

  1. Prathima Ramachandra Account Deactivated reporter

    This query that I have used: labels = CSOPBug and resolution = unresolved has an output of 71 issues. So it isnt related to Performance either. There seems to be something else broken.

  2. boydo repo owner

    Hi @{5d43eab3982c2b0db298b55d}

    The JQL query when using “Sum of all issues” requires a “WAS” in it. It is executing that query during a time period in the past.
    So to show the trend of unresolved queries over time, you would need something like:
    labels = CSOPBug and resolution WAS IN ('unresolved')

  3. Prathima Ramachandra Account Deactivated reporter

    Hi boydo, I used this, but it throws me 0 issues. and hence the graph remains at 0.

    However I used alternate way of querying the data and got this working. Thanks..

  4. Log in to comment