Hi, I am looking at creating a dashboard that shows an overview of bugs by day, by week and by month. Please let me know if this is possible. thanks!
Dear @Kim Boesen ,
you could use the simple Filter Gadget three times and assign each a filter like this
issuetype = "Bug" and createdDate >= startOfDay()
issuetype = "Bug" and createdDate >= startOfWeek()
issuetype = "Bug" and createdDate >= startOfMonth()
If you need day, week, month back:
issuetype = "Bug" and createdDate >= -24h
issuetype = "Bug" and createdDate >= -7d
issuetype = "Bug" and createdDate >= -30d
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.