What is "user visits" on the admin dashboard?

I am trying to understand how many people are logging into my discourse every day, and tracking that from day to day. Is that the “user visits” stat, or does that include multiple visits by the same user?

Is there a way to see who precisely has logged in on a given day?

3 curtidas

The closest I know of is by going to Users -> Active (currently not filterable by date)

Less that what I think you’re asking for, but depending on how many visitors you get and how often you check it might be of some help.

1 curtida

The /about page has the number of users who were seen in the last week+month.

4 curtidas

That’s awesome - thanks! I had actually turned that page off for reasons that I will post in a new topic.

Does “user visits” only include logged in users, or does it include anonymous users as well?

Nope only registered, logged in users are counted there.

If “user visit” is only logged in users, is there a metric that tracks visits from everyone?

Yes, that is called Google Analytics :wink:

2 curtidas

Or Mixpanel for analytics :).

Got it, “Total visits” metric is not in the /admin dashboard.

What does “User Visits” mean exactly?
If I go to the Discourse site, browse a bit, close the tab and come back an hour later in a new browser tab/window, while I am still the same person, same browser, will this count as 2 user visits or just 1?
What if I do the same, but my second visit is from a different device with the same user account?
What about users who are not logged in and only read? Do they count as user visits too?

BTW: The post below is not an answer, it lacks a precise definition of what the user visits are.

No. It means logged in users. You could be on 50 different devices and you are the same logged in user.

Not logged in users come through as anonymous users.

I think I am a little confused on how “User Visits” varies from “Logged In” pageviews.

My current understanding after reading a few different threads is:

User visits are unique logged in users that have been in the forum per the time period (today, yesterday, last 7 days, etc).
Logged In Pageviews are every pageview for those same logged in users.

So if a user was in the forum and viewed 10 different pages, their user visit would be 1 and logged in pageviews would be 10.

Please correct me if I am wrong.

2 curtidas

Sounds about right to me!

2 curtidas

@codinghorror I’m using the data explorer plugin to create a daily stats table. For user_visits, is it possible for a user to have more than one visit in a day? Or do all visits in a day get chunked into the same row? I’m seeing 1 daily visit as the max and I’m wondering if there’s an error in my query or if there’s actually a limit on this.

Thanks for everything you do :slight_smile:

1 curtida

A user can only have one entry per day in the user_visits table. The table has a unique index on user_id,visited_at. The posts_read field of the day’s visits will get updated as the user reads more posts.

4 curtidas

Where can I find the time Discourse starts counting it’s (our) day for user visits - or more accurately, where can I find the time the user visit routine runs. We have one user who has been trying to figure it out - to no avail in a couple of months. :slightly_smiling_face: He has apparently missed 2 days in the past quarter.

It’s usually 00:00 UTC which is server time.

2 curtidas

Olá,

Depois de ler este tópico, ainda estamos um pouco confusos sobre o que significa “visitas de usuários”? São usuários únicos para o período de tempo que você seleciona?

Por exemplo,

Aqui diz que tivemos 286 visitas de usuários em fevereiro, mas temos apenas 97 usuários em nosso fórum.

Você pode esclarecer, por favor?

Obrigado,
Cat

2 curtidas

Olá Cat,

Para responder à sua pergunta aqui:

O Relatório de Visitas de Usuário mostra o número total de Visitas de Usuário no fórum para o período selecionado (hoje, ontem, últimos 7 dias, mês, etc.).

Especificamente, uma Visita de Usuário é contada sempre que um usuário único logado visita o site, até uma vez por dia.

Por exemplo, se um usuário visitasse um site todos os dias dentro de uma semana, o Discourse contaria isso como 7 visitas de usuário. É por isso que é possível ter mais visitas de usuário em um mês do que o número total de usuários do seu site.

Se você estiver interessado, também pode ver o Código Ruby para este relatório aqui: discourse/app/models/concerns/reports/visits.rb

Espero que ajude! :slightly_smiling_face:

3 curtidas