2022-12-02 14:38:22 +01:00
|
|
|
<h3 style="text-align: center;">{{ num_active_sites }} active sites</h3>
|
2013-09-26 20:46:35 +02:00
|
|
|
|
2020-10-09 01:42:10 +02:00
|
|
|
<p style="text-align: center;">{{ utctime }}</p>
|
2017-12-01 06:28:56 +01:00
|
|
|
|
2023-10-04 20:59:03 +02:00
|
|
|
<h4>Installation information:</h4>
|
|
|
|
<ul>
|
|
|
|
<li><a href="/stats/installation">Server total /stats style graphs</a></li>
|
|
|
|
<li><a href="/activity/remote">Remote servers</a></li>
|
2023-10-05 19:51:58 +02:00
|
|
|
<li><a href="/activity/integrations">Integrations by client</a></li>
|
2023-10-04 20:59:03 +02:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h4>Counts chart key:</h4>
|
2017-11-27 20:52:25 +01:00
|
|
|
<ul>
|
2019-02-13 23:52:13 +01:00
|
|
|
<li><strong>active (site)</strong> - has ≥5 DAUs</li>
|
2017-12-01 22:59:04 +01:00
|
|
|
<li>sites are listed if ≥1 users active in last 2 weeks</li>
|
2017-11-27 20:52:25 +01:00
|
|
|
<li><strong>user</strong> - registered user, not deactivated, not a bot</li>
|
|
|
|
<li><strong>active (user)</strong> - sent a message, or advanced the pointer (reading messages doesn't count unless advances the pointer)</li>
|
2018-11-16 17:08:09 +01:00
|
|
|
<li><strong>ARR</strong> (Annual recurring revenue) - the number of users they are paying for * annual price/user.</li>
|
2021-06-16 09:06:27 +02:00
|
|
|
<li><strong>Rate</strong> - % of full price the customer pays, or will pay, if on a paid plan.</li>
|
2022-12-01 16:48:46 +01:00
|
|
|
<li><strong>Links</strong>
|
|
|
|
<ul>
|
|
|
|
<li><strong><i class="fa fa-home"></i></strong> - realm's Zulip</li>
|
|
|
|
<li><strong><i class="fa fa-pie-chart"></i></strong> - realm's stats page</li>
|
|
|
|
<li><strong>realm</strong> - realm's support page</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2020-10-23 02:43:28 +02:00
|
|
|
<li><strong>DAU</strong> (daily active users) - users active in last 24hr</li>
|
|
|
|
<li><strong>WAU</strong> (weekly active users) - users active in last 7 * 24hr</li>
|
2017-11-27 20:52:25 +01:00
|
|
|
<li><strong>Human message</strong> - message sent by non-bot user, and not with known-bot client</li>
|
|
|
|
</ul>
|
|
|
|
|
2013-09-26 21:29:29 +02:00
|
|
|
<table class="table summary-table sortable table-striped table-bordered">
|
2013-09-26 16:46:30 +02:00
|
|
|
|
|
|
|
<thead class="activity_head">
|
2017-06-05 22:47:51 +02:00
|
|
|
<tr>
|
|
|
|
<th>Realm</th>
|
2017-12-01 06:09:20 +01:00
|
|
|
<th>Created (green if ≤12wk)</th>
|
2021-06-09 17:49:54 +02:00
|
|
|
{% if billing_enabled %}
|
2020-10-23 02:43:28 +02:00
|
|
|
<th>Plan type</th>
|
2021-07-02 20:34:00 +02:00
|
|
|
<th>Org type</th>
|
2018-11-16 17:08:09 +01:00
|
|
|
<th>ARR</th>
|
2021-06-16 09:05:07 +02:00
|
|
|
<th>Rate (%)</th>
|
2021-06-09 17:49:54 +02:00
|
|
|
{% endif %}
|
2022-12-01 16:48:46 +01:00
|
|
|
<th>Links</th>
|
2017-11-27 20:52:25 +01:00
|
|
|
<th>DAU</th>
|
2017-11-27 21:03:15 +01:00
|
|
|
<th>WAU</th>
|
2017-06-05 22:47:51 +02:00
|
|
|
<th>Total users</th>
|
|
|
|
<th>Bots</th>
|
|
|
|
<th></th>
|
2017-12-01 06:04:15 +01:00
|
|
|
<th colspan=8>Human messages sent, last 8 UTC days (today-so-far first)</th>
|
2017-06-05 22:47:51 +02:00
|
|
|
</tr>
|
2013-09-26 16:46:30 +02:00
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
2017-06-05 22:47:51 +02:00
|
|
|
{% for row in rows %}
|
2013-09-26 16:46:30 +02:00
|
|
|
<tr>
|
|
|
|
|
|
|
|
<td>
|
2017-01-08 19:42:32 +01:00
|
|
|
{{ row.string_id }}
|
2013-09-26 16:46:30 +02:00
|
|
|
</td>
|
|
|
|
|
2017-11-29 07:50:25 +01:00
|
|
|
<td {% if row.is_new %}
|
2018-04-05 08:38:46 +02:00
|
|
|
class="good" {% else %}
|
|
|
|
class="neutral" {% endif %} >
|
2017-11-29 07:50:25 +01:00
|
|
|
{{ row.date_created_day }}
|
2017-11-29 07:31:17 +01:00
|
|
|
</td>
|
|
|
|
|
2021-06-09 17:49:54 +02:00
|
|
|
{% if billing_enabled %}
|
2018-08-15 19:59:09 +02:00
|
|
|
<td>
|
|
|
|
{{ row.plan_type_string }}
|
|
|
|
</td>
|
2021-07-02 20:34:00 +02:00
|
|
|
{% endif %}
|
2018-08-15 19:59:09 +02:00
|
|
|
|
2021-07-02 20:34:00 +02:00
|
|
|
<td>
|
|
|
|
{{ row.org_type_string }}
|
|
|
|
</td>
|
|
|
|
|
|
|
|
{% if billing_enabled %}
|
2018-11-16 17:08:09 +01:00
|
|
|
<td class="number">
|
2021-06-09 18:06:53 +02:00
|
|
|
{% if row.arr %}
|
|
|
|
{{ row.arr }}
|
2018-11-16 17:08:09 +01:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
|
2021-06-09 13:46:12 +02:00
|
|
|
<td class="number">
|
|
|
|
{% if row.effective_rate != "" %}
|
|
|
|
{{ row.effective_rate }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
2021-06-09 17:49:54 +02:00
|
|
|
{% endif %}
|
2021-06-09 13:46:12 +02:00
|
|
|
|
2018-04-16 12:36:02 +02:00
|
|
|
<td>
|
2022-12-01 16:48:46 +01:00
|
|
|
{{ row.realm_url }}
|
2018-04-16 12:36:02 +02:00
|
|
|
{{ row.stats_link }}
|
2022-12-01 16:48:46 +01:00
|
|
|
{{ row.support_link }}
|
2018-02-11 08:59:50 +01:00
|
|
|
</td>
|
|
|
|
|
2013-09-26 16:46:30 +02:00
|
|
|
<td class="number">
|
2017-11-27 21:03:15 +01:00
|
|
|
{{ row.dau_count }}
|
2013-09-26 16:46:30 +02:00
|
|
|
</td>
|
|
|
|
|
2013-11-14 19:50:32 +01:00
|
|
|
<td class="number">
|
2017-11-27 21:03:15 +01:00
|
|
|
{{ row.wau_count }}
|
2013-11-14 19:50:32 +01:00
|
|
|
</td>
|
|
|
|
|
2013-09-26 21:39:46 +02:00
|
|
|
<td class="number">
|
|
|
|
{{ row.user_profile_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-10-11 21:32:30 +02:00
|
|
|
<td class="number">
|
|
|
|
{{ row.bot_count }}
|
|
|
|
</td>
|
|
|
|
|
2013-12-18 22:50:47 +01:00
|
|
|
<td> </td>
|
|
|
|
|
2013-12-18 22:26:32 +01:00
|
|
|
{% if row.history %}
|
2017-06-05 22:47:51 +02:00
|
|
|
{{ row.history|safe }}
|
2013-12-18 22:26:32 +01:00
|
|
|
{% else %}
|
2017-06-05 22:47:51 +02:00
|
|
|
<td colspan=8></td>
|
2013-12-18 22:26:32 +01:00
|
|
|
{% endif %}
|
2013-09-26 16:46:30 +02:00
|
|
|
</tr>
|
2017-06-05 22:47:51 +02:00
|
|
|
{% endfor %}
|
2013-09-26 16:46:30 +02:00
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|