2017-02-22 21:49:29 +01:00
|
|
|
# Analytics
|
|
|
|
|
|
|
|
Zulip has a cool analytics system for tracking various useful statistics
|
|
|
|
that currently power the `/stats` page, and over time will power other
|
2024-05-20 17:38:40 +02:00
|
|
|
features, like showing usage statistics for the various channels. It is
|
2017-02-22 21:49:29 +01:00
|
|
|
designed around the following goals:
|
|
|
|
|
|
|
|
- Minimal impact on scalability and service complexity.
|
|
|
|
- Well-tested so that we can count on the results being correct.
|
2024-07-04 12:33:43 +02:00
|
|
|
- Efficient to query so that we can display data in-app (e.g., on the channels
|
2017-02-22 21:49:29 +01:00
|
|
|
page) with minimum impact on the overall performance of those pages.
|
|
|
|
- Storage size smaller than the size of the main Message/UserMessage
|
2020-10-26 22:27:53 +01:00
|
|
|
database tables, so that we can store the data in the main PostgreSQL
|
2017-02-22 21:49:29 +01:00
|
|
|
database rather than using a specialized database platform.
|
|
|
|
|
|
|
|
There are a few important things you need to understand in order to
|
|
|
|
effectively modify the system.
|
|
|
|
|
|
|
|
## Analytics backend overview
|
|
|
|
|
|
|
|
There are three main components:
|
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
- models: The `UserCount`, `StreamCount`, `RealmCount`, and `InstallationCount`
|
|
|
|
tables (`analytics/models.py`) collect and store time series data.
|
|
|
|
- stat definitions: The `CountStat` objects in the `COUNT_STATS` dictionary
|
|
|
|
(`analytics/lib/counts.py`) define the set of stats Zulip collects.
|
|
|
|
- accounting: The `FillState` table (`analytics/models.py`) keeps track of what
|
|
|
|
has been collected for which `CountStat`.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
The next several sections will dive into the details of these components.
|
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
## The `*Count` database tables
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
The Zulip analytics system is built around collecting time series data in a
|
|
|
|
set of database tables. Each of these tables has the following fields:
|
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
- property: A human readable string uniquely identifying a `CountStat`
|
2024-06-03 18:29:44 +02:00
|
|
|
object. Example: `"active_users_audit:is_bot:hour"` or
|
|
|
|
`"messages_sent:client:day"`.
|
2023-10-15 02:16:02 +02:00
|
|
|
- subgroup: Almost all `CountStat` objects are further sliced by subgroup. For
|
2024-06-03 18:29:44 +02:00
|
|
|
`"active_users_audit:is_bot:day"`, this column will be `False` for measurements of
|
2023-10-15 02:16:02 +02:00
|
|
|
humans, and `True` for measurements of bots. For `"messages_sent:client:day"`,
|
2017-02-22 21:49:29 +01:00
|
|
|
this column is the client_id of the client under consideration.
|
|
|
|
- end_time: A datetime indicating the end of a time interval. It will be on
|
|
|
|
an hour (or UTC day) boundary for stats collected at hourly (or daily)
|
2023-10-15 02:16:02 +02:00
|
|
|
frequency. The time interval is determined by the `CountStat`.
|
|
|
|
- various "id" fields: Foreign keys into `Realm`, `UserProfile`, `Stream`, or
|
2024-07-04 12:33:43 +02:00
|
|
|
nothing. E.g., the `RealmCount` table has a foreign key into `Realm`.
|
2024-06-03 18:29:44 +02:00
|
|
|
- value: The integer counts. For `"active_users_audit:is_bot:hour"` in the
|
2023-10-15 02:16:02 +02:00
|
|
|
`RealmCount` table, this is the number of active humans or bots (depending
|
|
|
|
on subgroup) in a particular realm at a particular `end_time`. For
|
|
|
|
`"messages_sent:client:day"` in the `UserCount` table, this is the number of
|
2017-02-22 21:49:29 +01:00
|
|
|
messages sent by a particular user, from a particular client, on the day
|
2023-10-15 02:16:02 +02:00
|
|
|
ending at `end_time`.
|
|
|
|
|
|
|
|
There are four tables: `UserCount`, `StreamCount`, `RealmCount`, and
|
|
|
|
`InstallationCount`. Every `CountStat` is initially collected into `UserCount`,
|
|
|
|
`StreamCount`, or `RealmCount`. Every stat in `UserCount` and `StreamCount` is
|
|
|
|
aggregated into `RealmCount`, and then all stats are aggregated from
|
|
|
|
`RealmCount` into `InstallationCount`. So for example,
|
|
|
|
`"messages_sent:client:day"` has rows in `UserCount` corresponding to
|
|
|
|
`(user, end_time, client)` triples. These are summed to rows in `RealmCount`
|
|
|
|
corresponding to triples of `(realm, end_time, client)`. And then these are
|
|
|
|
summed to rows in `InstallationCount` with totals for pairs of `(end_time, client)`.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
Note: In most cases, we do not store rows with value 0. See
|
2020-10-23 02:43:28 +02:00
|
|
|
[Performance strategy](#performance-strategy) below.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
## CountStats
|
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
`CountStat` objects declare what analytics data should be generated and stored. The
|
|
|
|
`CountStat` class definition and instances live in `analytics/lib/counts.py`.
|
2017-04-15 08:12:11 +02:00
|
|
|
These declarations specify at a high level which tables should be populated
|
|
|
|
by the system and with what data.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
## The FillState table
|
|
|
|
|
|
|
|
The default Zulip production configuration runs a cron job once an hour that
|
2023-10-15 02:16:02 +02:00
|
|
|
updates the `*Count` tables for each of the `CountStat` objects in the `COUNT_STATS`
|
|
|
|
dictionary. The `FillState` table simply keeps track of the last `end_time` that
|
2017-02-22 21:49:29 +01:00
|
|
|
we successfully updated each stat. It also enables the analytics system to
|
|
|
|
recover from errors (by retrying) and to monitor that the cron job is
|
|
|
|
running and running to completion.
|
|
|
|
|
|
|
|
## Performance strategy
|
|
|
|
|
|
|
|
An important consideration with any analytics system is performance, since
|
|
|
|
it's easy to end up processing a huge amount of data inefficiently and
|
|
|
|
needing a system like Hadoop to manage it. For the built-in analytics in
|
|
|
|
Zulip, we've designed something lightweight and fast that can be available
|
|
|
|
on any Zulip server without any extra dependencies through the carefully
|
2020-10-26 22:27:53 +01:00
|
|
|
designed set of tables in PostgreSQL.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
This requires some care to avoid making the analytics tables larger than the
|
|
|
|
rest of the Zulip database or adding a ton of computational load, but with
|
|
|
|
careful design, we can make the analytics system very low cost to operate.
|
2023-10-15 02:16:02 +02:00
|
|
|
Also, note that a Zulip application database has 2 huge tables: `Message` and
|
|
|
|
`UserMessage`, and everything else is small and thus not performance or
|
2017-02-22 21:49:29 +01:00
|
|
|
space-sensitive, so it's important to optimize how many expensive queries we
|
|
|
|
do against those 2 tables.
|
|
|
|
|
|
|
|
There are a few important principles that we use to make the system
|
|
|
|
efficient:
|
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
- Not repeating work to keep things up to date (via `FillState`)
|
|
|
|
- Storing data in the `*Count` tables to avoid our endpoints hitting the core
|
|
|
|
`Message`/`UserMessage` tables is key, because some queries could take minutes
|
2017-02-22 21:49:29 +01:00
|
|
|
to calculate. This allows any expensive operations to run offline, and
|
|
|
|
then the endpoints to server data to users can be fast.
|
|
|
|
- Doing expensive operations inside the database, rather than fetching data
|
|
|
|
to Python and then sending it back to the database (which can be far
|
2021-08-20 21:53:28 +02:00
|
|
|
slower if there's a lot of data involved). The Django ORM currently
|
2023-10-15 02:16:02 +02:00
|
|
|
doesn't support the `"insert into .. select"` type SQL query that's needed
|
2017-02-22 21:49:29 +01:00
|
|
|
for this, which is why we use raw database queries (which we usually avoid
|
|
|
|
in Zulip) rather than the ORM.
|
|
|
|
- Aggregating where possible to avoid unnecessary queries against the
|
2024-07-04 12:33:43 +02:00
|
|
|
`Message` and `UserMessage` tables. E.g., rather than querying the `Message`
|
2017-02-22 21:49:29 +01:00
|
|
|
table both to generate sent message counts for each realm and again for
|
|
|
|
each user, we just query for each user, and then add up the numbers for
|
|
|
|
the users to get the totals for the realm.
|
|
|
|
- Not storing rows when the value is 0. An hourly user stat would otherwise
|
2021-08-20 22:24:55 +02:00
|
|
|
collect 24 \* 365 \* roughly .5MB per db row = 4GB of data per user per
|
2017-02-22 21:49:29 +01:00
|
|
|
year, most of whose values are 0. A related note is to be cautious about
|
2017-03-16 05:08:36 +01:00
|
|
|
adding queries that are typically non-0 instead of being typically 0.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
2020-08-11 01:47:54 +02:00
|
|
|
## Backend testing
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
There are a few types of automated tests that are important for this sort of
|
|
|
|
system:
|
|
|
|
|
|
|
|
- Most important: Tests for the code path that actually populates data into
|
2021-08-20 21:53:28 +02:00
|
|
|
the analytics tables. These are most important, because it can be very
|
2017-02-22 21:49:29 +01:00
|
|
|
expensive to fix bugs in the logic that generates these tables (one
|
|
|
|
basically needs to regenerate all of history for those tables), and these
|
2021-08-20 21:53:28 +02:00
|
|
|
bugs are hard to discover. It's worth taking the time to think about
|
2017-02-22 21:49:29 +01:00
|
|
|
interesting corner cases and add them to the test suite.
|
|
|
|
- Tests for the backend views code logic for extracting data from the
|
|
|
|
database and serving it to clients.
|
|
|
|
|
2021-09-08 00:23:24 +02:00
|
|
|
For manual backend testing, it sometimes can be valuable to use
|
|
|
|
`./manage.py dbshell` to inspect the tables manually to check that
|
|
|
|
things look right; but usually anything you feel the need to check
|
|
|
|
manually, you should add some sort of assertion for to the backend
|
|
|
|
analytics tests, to make sure it stays that way as we refactor.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
## LoggingCountStats
|
|
|
|
|
|
|
|
The system discussed above is designed primarily around the technical
|
|
|
|
problem of showing useful analytics about things where the raw data is
|
2024-07-04 12:33:43 +02:00
|
|
|
already stored in the database (e.g., `Message`, `UserMessage`). This is great
|
2017-02-22 21:49:29 +01:00
|
|
|
because we can always backfill that data to the beginning of time, but of
|
|
|
|
course sometimes one wants to do analytics on things that aren't worth
|
2024-07-04 12:33:43 +02:00
|
|
|
storing every data point for (e.g., activity data, request performance
|
2017-02-22 21:49:29 +01:00
|
|
|
statistics, etc.). There is currently a reference implementation of a
|
2023-10-15 02:16:02 +02:00
|
|
|
`LoggingCountStat` that shows how to handle such a situation.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
## Analytics UI development and testing
|
|
|
|
|
2020-08-11 01:47:54 +02:00
|
|
|
### Setup and testing
|
2017-02-22 21:49:29 +01:00
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
The main testing approach for the `/stats` page UI is manual testing.
|
2018-07-09 09:14:00 +02:00
|
|
|
For most UI testing, you can visit `/stats/realm/analytics` while
|
|
|
|
logged in as Iago (this is the server administrator view of stats for
|
2021-08-20 21:53:28 +02:00
|
|
|
a given realm). The only piece that you can't test here is the "Me"
|
|
|
|
buttons, which won't have any data. For those, you can instead log in
|
2018-07-09 09:14:00 +02:00
|
|
|
as the `shylock@analytics.ds` in the `analytics` realm and visit
|
2021-08-20 21:53:28 +02:00
|
|
|
`/stats` there (which is only a bit more work). Note that the
|
2024-05-20 17:38:40 +02:00
|
|
|
`analytics` realm is a shell with no channels, so you'll only want to
|
2018-07-09 09:14:00 +02:00
|
|
|
use it for testing the graphs.
|
|
|
|
|
|
|
|
If you're adding a new stat/table, you'll want to edit
|
|
|
|
`analytics/management/commands/populate_analytics_db.py` and add code
|
|
|
|
to generate fake data of the form needed for your new stat/table;
|
|
|
|
you'll then run `./manage.py populate_analytics_db` before looking at
|
|
|
|
the updated graphs.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
### Adding or editing /stats graphs
|
|
|
|
|
|
|
|
The relevant files are:
|
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
- `analytics/views/stats.py`: All chart data requests from the /stats page call
|
2023-03-02 22:38:08 +01:00
|
|
|
get_chart_data in this file.
|
2023-10-15 02:18:44 +02:00
|
|
|
- `web/src/stats/stats.ts`: The JavaScript and Plotly code.
|
2023-10-15 02:16:02 +02:00
|
|
|
- `templates/analytics/stats.html`
|
|
|
|
- `web/styles/stats.css` and `web/styles/portico.css`: We are in the
|
2017-02-22 21:49:29 +01:00
|
|
|
process of re-styling this page to use in-app css instead of portico css,
|
|
|
|
but there is currently still a lot of portico influence.
|
2023-10-15 02:16:02 +02:00
|
|
|
- `analytics/urls.py`: Has the URL routes; it's unlikely you will have to
|
2017-02-22 21:49:29 +01:00
|
|
|
modify this, including for adding a new graph.
|
|
|
|
|
|
|
|
Most of the code is self-explanatory, and for adding say a new graph, the
|
|
|
|
answer to most questions is to copy what the other graphs do. It is easy
|
|
|
|
when writing this sort of code to have a lot of semi-repeated code blocks
|
2023-10-15 02:18:44 +02:00
|
|
|
(especially in `stats.ts`); it's good to do what you can to reduce this.
|
2017-02-22 21:49:29 +01:00
|
|
|
|
|
|
|
Tips and tricks:
|
|
|
|
|
2023-10-15 02:18:44 +02:00
|
|
|
- Use `$.get` to fetch data from the backend. You can grep through `stats.ts`
|
2017-03-19 13:07:57 +01:00
|
|
|
to find examples of this.
|
2017-02-22 21:49:29 +01:00
|
|
|
- The Plotly documentation is at
|
2017-03-19 13:07:57 +01:00
|
|
|
<https://plot.ly/javascript/> (check out the full reference, event
|
|
|
|
reference, and function reference). The documentation pages seem to work
|
|
|
|
better in Chrome than in Firefox, though this hasn't been extensively
|
|
|
|
verified.
|
2017-02-22 21:49:29 +01:00
|
|
|
- Unless a graph has a ton of data, it is typically better to just redraw it
|
2024-07-04 12:33:43 +02:00
|
|
|
when something changes (e.g., in the various aggregation click handlers)
|
2017-02-22 21:49:29 +01:00
|
|
|
rather than to use retrace or relayout or do other complicated
|
2023-10-15 02:16:02 +02:00
|
|
|
things. Performance on the `/stats` page is nice but not critical, and we've
|
2017-02-22 21:49:29 +01:00
|
|
|
run into a lot of small bugs when trying to use Plotly's retrace/relayout.
|
|
|
|
- There is a way to access raw d3 functionality through Plotly, though it
|
|
|
|
isn't documented well.
|
2023-10-15 02:16:02 +02:00
|
|
|
- `'paper'` as a Plotly option refers to the bounding box of the graph (or
|
2017-02-22 21:49:29 +01:00
|
|
|
something related to that).
|
2024-07-04 12:33:43 +02:00
|
|
|
- You can't right click and inspect the elements of a Plotly graph (e.g., the
|
2017-02-22 21:49:29 +01:00
|
|
|
bars in a bar graph) in your browser, since there is an interaction layer
|
|
|
|
on top of it. But if you hunt around the document tree you should be able
|
|
|
|
to find it.
|
2017-04-06 12:59:18 +02:00
|
|
|
|
|
|
|
### /activity page
|
|
|
|
|
2023-10-15 02:16:02 +02:00
|
|
|
- There's a somewhat less developed `/activity` page, for server
|
2021-08-20 21:53:28 +02:00
|
|
|
administrators, showing data on all the realms on a server. To
|
2017-04-06 12:59:18 +02:00
|
|
|
access it, you need to have the `is_staff` bit set on your
|
2023-10-15 02:16:02 +02:00
|
|
|
`UserProfile` object. You can set it using `manage.py shell` and
|
|
|
|
editing the `UserProfile` object directly. A great future project is
|
2017-04-06 12:59:18 +02:00
|
|
|
to clean up that page's data sources, and make this a documented
|
|
|
|
interface.
|