Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Usage statistics of the dashboard per tld #542

Open
stitch opened this issue Nov 12, 2024 · 0 comments
Open

Usage statistics of the dashboard per tld #542

stitch opened this issue Nov 12, 2024 · 0 comments

Comments

@stitch
Copy link
Collaborator

stitch commented Nov 12, 2024

the most popular extensions on all non-deleted lists which are not created by a test account

select computed_suffix, count() from url inner join internet_nl_dashboard_urllist_x_tagged_url as x on x.url_id = url.id inner join internet_nl_dashboard_urllist as u on u.id = x.urllist_id inner join internet_nl_dashboard_account as a on u.account_id = a.id where a.id not in (1) and u.is_deleted=false group by computed_suffix order by count() desc limit 25;

 computed_suffix | count
-----------------+--------
 nl              | 250091
 dk              |  91319
 com             |  18916
 cz              |  12550
 eu              |  10515
 se              |   7366
 at              |   6390
 de              |   6130
 org             |   4353
 fi              |   4285
 org.uk          |   3066
 net             |   2971
 co.uk           |   2747
 pt              |   2681
 bg              |   2326
 be              |   2300
 ee              |   2057
 finance         |   1923
 fr              |   1566
 info            |   1485
 nu              |   1269
 ch              |   1144
 com.br          |   1108
 no              |    980
 it              |    798
(25 rows)

the most popular extensions per list and an idea of the list name (censored) where the domain is not .nl

This shows that users have a strong preference to order extensions per list.

select computed_suffix, u.name, a.name, count() from url inner join internet_nl_dashboard_urllist_x_tagged_url as x on x.url_id = url.id inner join internet_nl_dashboard_urllist as u on u.id = x.urllist_id inner join internet_nl_dashboard_account as a on u.account_id = a.id where a.id not in (1) and u.is_deleted=false and computed_suffix not in ('nl') group by computed_suffix, u.id, a.id order by count() desc limit 200;

 computed_suffix |                            name                             |        name        | count
-----------------+-------------------------------------------------------------+--------------------+-------
 abc              | abc                                                        | user 1             |  10000
 def              | def                                                        | user 2             |  9000
 ghi              | ghi                                                        | user 3             |  8000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant