diff --git a/src/html_index_domains.py b/src/html_index_domains.py index 309fcd9..a6748c0 100755 --- a/src/html_index_domains.py +++ b/src/html_index_domains.py @@ -107,13 +107,13 @@ def gen_lookup(html_dir, doms_dict, names_dict, title): mylib.json_write(mylib.path_add(html_dir, 'doms.json'), doms_dict) -def gen_stats(c_apps, c_domains, title): +def gen_results(c_apps, c_domains, title): [c_recordings, c_logs] = index_meta.get_total_counts() print(' {} apps'.format(c_apps)) print(' {} domains'.format(c_domains)) print(' {} recordings'.format(c_recordings)) print(' {} logs'.format(c_logs)) - HTML.write(mylib.path_out('stats'), ''' + HTML.write(mylib.path_out('results'), '''
The AppCheck database currently contains {:,} apps with a total of {:,} unique domains.
Collected through {:,} recordings with {:,} individual requests.
@@ -124,7 +124,7 @@ def gen_stats(c_apps, c_domains, title):