FEATURE: Add estimated number of global and EU visitors to the about page (#28382)

This commit implements 2 new metrics/stats in the /about page for the _estimated_ numbers of unique visitors from the EU and the rest of the world. This new feature is currently off by default, but it can be enabled by turning on the hidden `display_eu_visitor_stats` site settings via the rails console.

There are a number of assumptions that we're making here in order to estimate the number of unique visitors, specifically:

1. we're assuming that the average of page views per anonymous visitor is similar to the average number of page views that a logged-in visitor makes, and
2. we're assuming that the ratio of logged in visitors from the EU is similar to the ratio of anonymous visitors from the EU

Discourse keeps track of the number of both logged-in and anonymous page views, and also the number of unique logged-in visitors and where they're from. So with those numbers and the assumptions above, we can estimate the number of unique anonymous visitors from the EU and the rest of the world.

Internal topic: t/128480.
This commit is contained in:
Osama Sayegh
2024-08-21 00:03:42 +03:00
committed by GitHub
parent 9802d4040f
commit 10ae7ef44a
14 changed files with 436 additions and 2 deletions

View File

@ -23,6 +23,13 @@ module PageObjects
)
end
def visitors
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.visitors"),
translation_key: nil,
)
end
def active_users
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.active-users"),
@ -51,6 +58,14 @@ module PageObjects
translation_key:,
)
end
def has_activity_item?(name)
container.has_css?(".about__activities-item.#{name}")
end
def has_no_activity_item?(name)
container.has_no_css?(".about__activities-item.#{name}")
end
end
end
end

View File

@ -16,6 +16,10 @@ module PageObjects
)
end
def has_text?(text)
container.find(".about__activities-item-count").has_text?(text)
end
def has_1_day_period?
period_element.has_text?(I18n.t("js.about.activities.periods.today"))
end