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

Show total number of participants #154

Open
Tracked by #152
bajtos opened this issue Aug 26, 2024 · 1 comment
Open
Tracked by #152

Show total number of participants #154

bajtos opened this issue Aug 26, 2024 · 1 comment

Comments

@bajtos
Copy link
Contributor

bajtos commented Aug 26, 2024

https://space-meridian.slack.com/archives/C07E0B56RKN/p1724177583985949

It would also be cool on the station website and dash to have the total number of FIL addresses to have ever submitted a measurement i.e. total user count

This should be very easy to implement:

  • We already have daily_participants table, the data is exposed via “daily active participants” and “monthly active participants” endpoints.
  • We can add another endpoint to expose the number of distinct participants over the entire history.
SELECT COUNT(DISTINCT participant_id) FROM daily_participants;

Count: 43,533
Query duration: 415ms

@bajtos bajtos mentioned this issue Aug 26, 2024
22 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@bajtos and others