Updated Home (markdown)

Aaron Raimist 2019-06-02 20:15:53 -05:00
parent 99b3d6f10b
commit 8aa3391d2d
1 changed files with 7 additions and 0 deletions

@ -99,3 +99,10 @@ The log format can vary slightly depending on your log configuration, but here i
* `"GET /_matrix/client/r0/sync HTTP/1.1"`: the http request line, including the path of the requested url.
* `"Mozilla/5.0 ..."`: the user-agent of the client.
* `[0 dbevts]`: the number of Matrix events which were fetched from the database to fulfil this request.
What are the biggest rooms on my server?
---
```
select room_id, count(*) as num_rows from state_groups_state group by room_id order by num_rows desc limit 10;
```