Tracking issue status changes
Hi,
I rely on cumulative flow diagrams to help manage my project. I currently have a separate db that tracks state changes in issues for the purposes of generating CFDs but it is a pain to maintain. Ideally I would be able to grab timestamps of issue status changes from YouTrack, however, I can't figure out how to do that. Does anybody know if there is a data dump (export to csv for example) or REST call that would give me access to an issue's history? Is there some other way to get at this information?
Thanks,
Neil.
Please sign in to leave a comment.
Hello, Neil!
1. Here is the request for REST API method to get history: http://youtrack.jetbrains.net/issue/JT-6791
You can vote for him.
2. You can grab timestamps of issue status changes using WFE,
create WF, like:
rule changeState
when issue.State.changed {
var now = now;
// use "now" (send email, update Custom field or something else)
}
--
Regards,
Kapusta Mikhail
QA Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
Great thanks! I did vote and will try the wf for an interim solution.