Test Reporting data discrepancies
See original GitHub issueUsing this query, it appears that we’re not collecting any passing data for this particular test in ASPNETCore:
let start = 30d; // Timespan value
let end = 10d; // Timespan value
let repo = "dotnet/aspnetcore"; // Optional: set to empty string if you want results from all repositories
let testName="Microsoft.AspNetCore.Mvc.FunctionalTests.SimpleWithWebApplicationBuilderTests.DefaultEnvironment_Is_Development";
AzureDevOpsTestsSummary
| where ReportDate >= ago(start) and ReportDate <= ago(end) and iff(repo == "", Repository == Repository, Repository == repo) and TestName == testName
However, looking at this report on Azure DevOps, it appears that the test has passed, and should be showing up in the data we’re collecting: https://dev.azure.com/dnceng/public/_test/analytics?definitionId=278&contextType=build
We need to investigate why the passing test values are not being aggregated in our results.
Issue Analytics
- State:
- Created a year ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
How to identify data discrepancies & resolve them
Identifying discrepancies in data is simple. You compare two data sets for the same period of time and look for numbers that don't...
Read more >Identifying and solving data discrepancies | Support
Generally speaking, a data discrepancy is when 2 or more sets of comparable data don't match up. And, despite sounding kind of technical,...
Read more >Data discrepancies - Google Ads Help
Large data discrepancies can happen between Google Ads reporting, other platforms or your internal reporting. These discrepancies can be caused by a variety ......
Read more >Dealing with Different Types of Discrepancy in Data
Discrepancies in data can arise during data validation for a variety of reasons. Sometimes, data sets may contain errors that were introduced ...
Read more >Ad Reporting Discrepancies: What to Do When Your Data ...
Working with data discrepancies entails first understanding why data doesn't always match up and how to troubleshoot potential errors. Second, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks @missymessa 👀
I believe @dougbu’s guess is correct. We should start accumulating data at that point. We’ll need to make sure our service handles the scale correctly, but it won’t retroactively reach back in time much. There’s about a day where the data will stabilize because of aggregations and what not, so after a day, stuff should be complete going forward.