Connect to Analytics data by using the Power BI OData feed

Azure DevOps Services | Azure DevOps Server 2022 - Azure DevOps Server 2019

Learn how to access Analytics data through the Power BI Desktop OData feed.

Important

The method demonstrated in this article works for small organizations, because it always pulls in all the data into Power BI. Most of the filtering that's specified in the Power Query Editor is done client-side. For information about other approaches, see Power BI integration Overview.

Prerequisites

  • To view Analytics data and query the service, you need to be a member of a project with Basic access or greater. By default, all project members are granted permissions to query Analytics and define Analytics views.
  • To learn about other prerequisites regarding service and feature enablement and general data tracking activities, see Permissions and prerequisites to access Analytics.

Access the Analytics OData feed

Important

Make sure that you enabled or installed the Analytics extension.

  1. Configure the permissions required to access Analytics.

  2. Open Power BI Desktop.

  3. On the Power BI Desktop welcome page or home ribbon, select Get data.

    Screenshot of Power BI Desktop splash screen, Get data button.

  4. Select Other > OData Feed > Connect.

    Screenshot showing the OData Feed button.

  5. In a supported browser, enter the URL in the following format https://analytics.dev.azure.com/{OrganizationName}/_odata/{version}/.

    For example, if {OrganizationName} is fabrikam and {version} is v1.0, the URL is https://analytics.dev.azure.com/fabrikam/_odata/v1.0/.

    Screenshot of Enter OData Feed URL.

    Note

    Alternatively, you can enter the URL with the ProjectName specified, as shown in the following example:
    https://analytics.dev.azure.com/{OrganizationName}/{ProjectName}/_odata/{version}/ Using this format trims the results by the specified project across all entities related to that project.

  6. At the prompt, authenticate against the service.

  7. Select the check boxes next to the entities whose data you want to retrieve.

    Important

    Do not select entities whose name includes Snapshot. Such entities contain the state of every work item on each day since the work item was created. For repositories of any size, selecting these entities causes tens to hundreds of millions of work items to fail to load. Snapshot tables are intended only for aggregation queries.

    Screenshot of the Entities list on the Navigator page.

  8. Select Transform Data. Don't select Load.

    Important

    For each entity that you've selected, Power Query creates a query. You must manually update each query to prevent throttling errors. Power Query attempts to resolve null values as errors by generating an additional query for every null value it encounters. This action can result in thousands of queries, which can quickly exceed your usage threshold, beyond which your user account gets throttled.

    To prevent this issue:

    • Instruct Power BI to reference OData v4.
    • Instruct the Analytics service to omit any values that are null, which improves query performance.
  9. For each entity that you selected in the preceding steps, do the following steps:

    a. In the Queries list, select an entity whose query you want to. In this example, Areas is selected.

    Screenshot of the Power BI OData Feed Queries list.

    b. In the ribbon, select Advanced Editor.

    Screenshot of the Power BI OData Feed Advanced Editor button.

    c. In the Query pane, scroll horizontally to view the [Implementation="2.0"] parameter.

    Screenshot of the Advanced Editor Query pane.

    d. Replace [Implementation="2.0"] with the following string: [Implementation="2.0",OmitValues = ODataOmitValues.Nulls,ODataVersion = 4]

    Screenshot showing the replaced string.

  10. Select Close & Apply.