Seems to be laggy when scrolling through the details of a JIRA backlog story on google chrome 64 bit, no problems when using firefox 64 bit. or when using firefox/chrome 32 bit.
System details
AMD Ryzen
Browser: Version 86.0.4240.75 (Official Build) (64-bit)
Steps to reproduce
1. Go to JIRA backlog using Chrome 64 bit
2. Click on any story
3. Scroll down the details of the story (on right-hand side)
4. Should be laggy / jumpy when scrolling up or down.
Correct. JQL returns a list of issues, not their data.
Actually, in the background, it's a bit more complex than that, and if you're coding, it is possible to execute JQL that returns subsets of data instead of just swathes of issues, but it has no huge advantages other than saving memory (good if you have large Jira installations and very wide ranging searches), and it's a bit more complex to use than just "Search, get a list, iterate through issues"
I'm not sure it would be of much use to you either - there's no field for "total time issue is open", your code is going to need to read the history of each issue from the filter and work it out from there.
Thank you for your fast answer.
Ok so you confirm the first point thank you.
I know there is no field for "total time issue is open" but that is why this field mut be created into a custom scripted field . Like that:
... but for the "Open" status.
And that is after having created this field that I don't know how retrieve this field for all issues of a project, and then make an average, or a chart for example like that:
http://www.hostingpics.net/viewer.php?id=575913timetoresolveissues.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that's what I was getting at - there's no field for time-spent, so your scripted field won't be able to take advantage of field selection at a JQL level - it needs to get the issues and do some cacluations on them.
I'd have suggested the script runner for your field, but you got there before me.
How you "retreive a field" depends heavily on what you are running and where. You'll need to write something to get a graph like that. Have you tried the time-to-resolve gadget though?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK, sorry if I didn't understood something.
Yes, I see what you mean, we can't make calculation with JQL request because field values can't be requested only.
The gadget "Time resolution" give the inormation but during a period. I'm searching for a kind of snapshot, today and since the beginning, and make range by "number of days Open", exactly like my link, this chart is simply done with Excel. It is the same inconvenient with the gadget "Average time in status", the abscisse is always the time. And I think it will take too much of time to develop our own gadget
I think I will follow this track:
- create the custom scripted field or use the "Time in status" field already existing
- make a script (PHP for example) to grab values of this field with a MySQL request (meanwhile I learned that our JIRA was based on MySQL) and export them into a CSV file.
- then easily make a bar graph
(And we need to make other statistics so I think it will be necessary to master the DB anyway, it will be powerfull to use it directly rather than using JIRA)
Thank you for your answer and your help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use SQL for JIRA. It transforms any JQL into a SQL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.