Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Crucible progress time tracking

jechire
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 5, 2015

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

 

2 answers

0 votes
jechire
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 15, 2015

Hi @Piotr Swiecicki thanks for the info, i will use API REST

Thanks

0 votes
Piotr Swiecicki
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 9, 2015

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 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events