2023-06-21 14:13:31 +02:00
== Statistics
2013-10-27 21:59:40 +01:00
Etherpad keeps track of the goings-on inside the edit machinery. If you'd like to have a look at this, just point your browser to `/stats`.
We currently measure:
- totalUsers (counter)
- connects (meter)
- disconnects (meter)
- pendingEdits (counter)
- edits (timer)
- failedChangesets (meter)
- httpRequests (timer)
- http500 (meter)
- memoryUsage (gauge)
2023-06-21 14:13:31 +02:00
Under the hood, we are happy to rely on https://github.com/felixge/node-measured[measured] for all our metrics needs.
2013-10-27 21:59:40 +01:00
2023-06-21 14:13:31 +02:00
To modify or simply access our stats in your plugin, simply `require('ep_etherpad-lite/stats')` which is a https://yaorg.github.io/node-measured/packages/measured-core/Collection.html[`measured.Collection`].