diff --git a/src/README.md b/src/README.md
index ba3f7ff..9ea28b0 100644
--- a/src/README.md
+++ b/src/README.md
@@ -1,4 +1,4 @@
-
+
## Structure
@@ -39,17 +39,19 @@ If you are missing some icons run `main.py icons`. This should also download any
Given A → B, B depends on A
```
-digraph G {
+digraph Dependency {
"." -> html_root
"." -> bundle_download
bundle_download -> index_app_names
index_app_names -> html_bundle
index_app_names -> html_index_apps
index_app_names -> html_index_domains
+ index_meta -> html_index_domains
"." -> bundle_combine
+ bundle_combine -> index_meta
+ bundle_combine -> html_bundle
bundle_combine -> index_domains
index_domains -> html_index_domains
- bundle_combine -> html_bundle
"." -> tracker_download
}
```
diff --git a/src/html_index_domains.py b/src/html_index_domains.py
index 477c5e6..a29620c 100755
--- a/src/html_index_domains.py
+++ b/src/html_index_domains.py
@@ -3,6 +3,7 @@
import common_lib as mylib
import index_app_names
import index_domains
+import index_meta
def a_app(bundle_id):
@@ -115,19 +116,23 @@ def gen_html_lookup(html_dir, json, key, title):
def gen_html_stats(c_apps, c_domains):
+ [c_recordings, c_logs] = index_meta.get_total_counts()
title = 'Statistics'
mylib.mkdir(mylib.path_out('stats'))
with open(mylib.path_out('stats', 'index.html'), 'w') as fp:
fp.write(mylib.template_with_base('''
{}
- The AppCheck database currently contains {} apps with a total of {} unique domains.
+ The AppCheck database currently contains {:,} apps with a total of {:,} unique domains.
+
+
+ Collected through {:,} recordings with {:,} individual requests.