lookbackapi

Find out plan estimate of user stories moved to next iteration in rally

*爱你&永不变心* 提交于 2020-01-17 03:43:05
问题 Does anyone know how to use Rally Web service APIs to calculate the total amount of accepted work delivered by the last day of the iteration and the total amount of accepted work delivered since the last day of the iteration. Thanks 回答1: You can find that information using the Lookback API. Every time an artifact changes in Rally it takes a snapshot of that data. If you query that API for artifacts that have had their Schedule state changed during those time periods you will be able to gather

Can I use Java to access the Lookback data?

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-07 04:37:07
问题 Is there a way to access historical data from Java? I am currently using the rally-rest-api (1.0.6) to pull task information out. But I would like to expand my query to include historical data. Is the Lookback API limited to Javascript? 回答1: While Lookback API (LBAPI) isn't restricted to Javascript, Rally's AppSDK2 Javascript toolkit is currently the Rally API into which Rally-built hooks have been built for accessing LBAPI data. This is accomodated via the Snapshotstore. Although AppSDK2

Using Rally WsapiDataStore at a certain date

半城伤御伤魂 提交于 2019-12-24 21:30:26
问题 I want to create a chart of how many tasks are in a given Schedule State during the length of the sprint. Is it possible to call WsapiDataStore on each day? 回答1: What you are looking for is a lookback Snapshot Store , using the Lookback API - this allows you to specify a date or a point in time that you want to query by. A typical use looks like this: Ext.create('Rally.data.lookback.SnapshotStore', { pageSize : 10000, fetch : ['fetch'], filters : [{ property : '__At', value : 'current' },{

Lookback API _ProjectHierarchy not scoping down

拈花ヽ惹草 提交于 2019-12-12 02:24:33
问题 Hi I am fetching the current userstories for a particular iteration using the following code Ext.define('CustomApp', { extend: 'Rally.app.App', componentCls: 'app', launch:function(){ me = this; combo = window.parent.Ext4.ComponentQuery.query('rallyiterationcombobox')[0]; var iterationObjectID = combo.getRecord().data.ObjectID; var query1= { _ProjectHierarchy: me.getContext().getProject().ObjectID, Iteration : iterationObjectID , _TypeHierarchy:"HierarchicalRequirement"}; var fields = [

using Lookback API how to find tasks that did not have a change in ToDo?

老子叫甜甜 提交于 2019-12-11 21:28:49
问题 I am writing an app that shows a grid of tasks, filtered by iteration, where ToDo has not been modified within certain time frame. Per documentation Iterations on Tasks are not available in LookbackAPI, but there is a second question: how to find tasks that did not have a change in ToDo within a time period specified? Thank you. 回答1: You may apply this filter "_PreviousValues.ToDo":{$exists: false} to get snapshots where ToDo was not modified. This query looks for Tasks in a specific project,

Rally Lookback API filter on Ready and Recycled

谁说胖子不能爱 提交于 2019-12-11 06:16:32
问题 I am trying to use the lookback api to get stories that have the Ready flag set to true. I appear to be able to output the ready flag but not filter on it. I do not appear to be able to filter or output the recycled flag. Curious if these fields are not available to the lookback api as filters. 回答1: Nick is right about the Recycled artifacts. I'm wondering though if you are quoting the Ready values and treating them like a String. This field is actually a Boolean and can be queried like this:

Rally Lookback API for C#

谁都会走 提交于 2019-12-10 20:58:46
问题 I’m having a hard time finding any information on how to retrieve snapshot data using the Rally REST API. I noticed there is a Lookback toolkit for Java, but I am coding in C#. In particular, I would like to retrieve Schedule State changes over time for Stories (aka Requirements). Any related example would also be very helpful. Thank you, -Phil 回答1: There is currently no built-in support for Lookback API in .NET REST tookit and in Java REST toolkit. See also this post As an imperfect

Lookback API: Return visible work items only

不问归期 提交于 2019-12-02 08:07:25
问题 We are having several issues using the LBAPI to scope down from the portfolio items in our workspace. Since many teams contribute to a single project, and a user trying to pull metrics on these projects might not always have view access to all the contributing teams, we are faced with one of two options: Return the 403 error from the Rally servers to the user, giving them no useful information with regards to the requested metrics. Pass an array of "visible" teams to the LBAPI which will only

Lookback API: Return visible work items only

喜你入骨 提交于 2019-12-02 07:17:07
We are having several issues using the LBAPI to scope down from the portfolio items in our workspace. Since many teams contribute to a single project, and a user trying to pull metrics on these projects might not always have view access to all the contributing teams, we are faced with one of two options: Return the 403 error from the Rally servers to the user, giving them no useful information with regards to the requested metrics. Pass an array of "visible" teams to the LBAPI which will only return work items from teams which I have view access to. So, the logical process would be to query

Lookback API: Deleted items

别来无恙 提交于 2019-12-02 06:33:00
问题 I'd like to use the lookback API to view the history of a deleted object, which I think should be simple if I know the formatted id. I just need to query: { FormattedID: 'DEXXXX' } But does the Lookback API record anything special for when an object is deleted (like can I tell exactly when it was deleted or by whom)? Can it help point me to the correct place in the Recycle bin so that I could try to undelete it? 回答1: Interesting. I just ran a REST query on the Recycle Bin with fetch=true and