Hi, In the Version 3.6.3 there is any way to see all the Reviews with the time tracking?
I know that in Review Dashboard i can see all reviews but i want to see one column more with the "Time Tracking " information.
This is posible?
Thanks for all
Hi @Piotr Swiecicki thanks for the info, i will use API REST
Thanks
I am afraid there is no such report available in the UI.
But you can use REST API to retrieve requested information. For example this endpoint: https://docs.atlassian.com/fisheye-crucible/latest/wadl/crucible.html#rest-service:reviews-v1:filter:filter:details would return detailed information of all reviews matching given criteria. Along other details it would contain the time spent information, expressed in milliseconds. For example this report: https://fisheye1.atlassian.com/rest-service/reviews-v1/filter/details?author=lpater shows all reviews created by particular user. If you retrieve it you will find details like:
<reviewers> <reviewer> <avatarUrl>https://fisheye1.atlassian.com/avatar/pswiecicki?s=48</avatarUrl> <displayName>Piotr Święcicki</displayName> <userName>pswiecicki</userName> <completed>false</completed> <timeSpent>790112</timeSpent> </reviewer> </reviewers>
Please note fisheye1.atlassian.com server allows only logged users to access review data, so in order to have this example working for you, you may need to signup for account there.
Also, if you prefer JSON format rather than XML remember to include appropriate Accept header, e.g.
curl -s -u user:password -H 'Accept: application/json' 'https://fisheye1.atlassian.com/rest-service/reviews-v1/filter/details?author=lpater' | jq . | grep -7 Spent "type": "REVIEW", "allowReviewersToJoin": false, "metricsVersion": 3, "createDate": "2014-12-18T10:27:03.113+0000", "reviewers": { "reviewer": [ { "timeSpent": 790112, "completed": false, "avatarUrl": "https://fisheye1.atlassian.com/avatar/pswiecicki?s=48", "displayName": "Piotr Święcicki", "userName": "pswiecicki" } ] },
Hope that helps,
Piotr
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.