Skip to content

Commit

Permalink
analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
barncastle committed Mar 28, 2018
1 parent bc8d957 commit c8062d8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions analytics/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
### db-by-checksum.json
DBs grouped by <filename, MD5 checksum> then sorted by <expansion, build>.
```csharp
public class ChecksumGroup
{
public string Name;
public Dictionary<string, string[]> Builds; // <checksum, builds>
}
```

### db-row-match
(In progress) Comparison of matching rows (at byte level) between two builds. DBs grouped by filename, sorted by <expansion, build>. <Legion only.
```csharp
public class DBDMatchGroup
{
public string BuildPrev;
public string BuildCur;
public int RecordCountPrev;
public int RecordCountCur;
public int MatchCount;
public float MatchCountPercent;
}
```
Binary file added analytics/db-by-checkum.json.gz
Binary file not shown.
Binary file added analytics/db-row-match.zip
Binary file not shown.

0 comments on commit c8062d8

Please sign in to comment.