forked from MicrosoftDocs/azure-devops-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3740 from MicrosoftDocs/users/kaelli/powerbi-fres…
…hness-1 freshness update
- Loading branch information
Showing
54 changed files
with
507 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 changes: 85 additions & 53 deletions
138
docs/report/extend-analytics/data-model-analytics-service.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
--- | ||
ms.technology: devops-analytics | ||
ms.author: kaelli | ||
author: KathrynEE | ||
ms.topic: include | ||
ms.date: 09/21/2021 | ||
--- | ||
|
||
> [!IMPORTANT] | ||
> [Power BI integration](../overview.md) and access to the [OData feed](../../extend-analytics/quick-ref.md) of the Analytics Service are in Preview. The sample queries provided in this article are valid only against Azure DevOps Services and depend on [**v3.0-preview**](../../extend-analytics/odata-api-version.md). We encourage you to use these queries and provide us feedback. As we add features, we will post them on the [Microsoft DevOps blog](https://devblogs.microsoft.com/devops/?s=reporting). | ||
> [Power BI integration](../overview.md) and access to the [OData feed](../../extend-analytics/quick-ref.md) of the Analytics Service are in Preview. The sample queries provided in this article are valid only against Azure DevOps Services and depend on [**v3.0-preview**](../../extend-analytics/odata-api-version.md) or later version. We encourage you to use these queries and provide us feedback. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
ms.technology: devops-analytics | ||
ms.author: kaelli | ||
author: KathrynEE | ||
ms.topic: include | ||
ms.date: 09/21/2021 | ||
--- | ||
|
||
## Query filters | ||
|
||
To determine available query filters, query the metadata as described in [Explore the Analytics OData metadata](../../extend-analytics/analytics-metadata.md). You can filter your queries using any of the **NavigationPropertyBinding Path** values listed under an **EntitySet**. To learn more about the data type of each value, review the metadata provided for the corresponding **EntityType**. Each **EntitySet** corresponds to the singular value for an **EntityType**. | ||
|
||
For example, the **EntitySet Name="PipelineRunActivityResults"** corresponds to the **EntityType Name="PipelineRunActivityResult"**. The OData metadata for **EntitySet Name="PipelineRunActivityResults"** is as shown below for **v4.0-preview**. You can add filters based on any of the listed **NavigationPropertyBinding Path** values. | ||
|
||
> [!div class="tabbedCodeSnippets"] | ||
> ```XML | ||
> <EntitySet Name="PipelineRunActivityResults" EntityType="Microsoft.VisualStudio.Services.Analytics.Model.PipelineRunActivityResult"> | ||
> <NavigationPropertyBinding Path="Project" Target="Projects"/> | ||
> <NavigationPropertyBinding Path="Pipeline" Target="Pipelines"/> | ||
> <NavigationPropertyBinding Path="PipelineTask" Target="PipelineTasks"/> | ||
> <NavigationPropertyBinding Path="PipelineJob" Target="PipelineJobs"/> | ||
> <NavigationPropertyBinding Path="Branch" Target="Branches"/> | ||
> <NavigationPropertyBinding Path="PipelineRunQueuedOn" Target="Dates"/> | ||
> <NavigationPropertyBinding Path="PipelineRunStartedOn" Target="Dates"/> | ||
> <NavigationPropertyBinding Path="PipelineRunCompletedOn" Target="Dates"/> | ||
> <NavigationPropertyBinding Path="ActivityStartedOn" Target="Dates"/> | ||
> <NavigationPropertyBinding Path="ActivityCompletedOn" Target="Dates"/> | ||
> </EntitySet> | ||
> ``` | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
ms.technology: devops-analytics | ||
ms.author: kaelli | ||
author: KathrynEE | ||
ms.topic: include | ||
ms.date: 09/21/2021 | ||
--- | ||
|
||
## Query filters | ||
|
||
To determine available query filters, query the metadata as described in [Explore the Analytics OData metadata](../../extend-analytics/analytics-metadata.md). You can filter your queries using any of the **NavigationPropertyBinding Path** values listed under an **EntitySet**. To learn more about the data type of each value, review the metadata provided for the corresponding **EntityType**. Each **EntitySet** corresponds to the singular value for an **EntityType**. | ||
|
||
|
||
For example, the **EntitySet Name="TestPoints"** corresponds to the **EntityType Name="TestPoint"**. The OData metadata for the **EntitySet Name="TestPoints"** is as shown below for **v4.0-preview**. You can add filters based on any of the listed **NavigationPropertyBinding Path** values. | ||
|
||
> [!div class="tabbedCodeSnippets"] | ||
> ```XML | ||
> <EntitySet Name="TestPoints" EntityType="Microsoft.VisualStudio.Services.Analytics.Model.TestPoint"> | ||
> <NavigationPropertyBinding Path="ChangedOn" Target="Dates"/> | ||
> <NavigationPropertyBinding Path="Project" Target="Projects"/> | ||
> <NavigationPropertyBinding Path="TestSuite" Target="TestSuites"/> | ||
> <NavigationPropertyBinding Path="TestConfiguration" Target="TestConfigurations"/> | ||
> <NavigationPropertyBinding Path="TestCase" Target="WorkItems"/> | ||
> <NavigationPropertyBinding Path="Tester" Target="Users"/> | ||
> <NavigationPropertyBinding Path="AssignedTo" Target="Users"/> | ||
> <Annotation Term="Org.OData.Display.V1.DisplayName" String="Test Points"/> | ||
> </EntitySet> | ||
> ``` | ||
Oops, something went wrong.