InspIRCd v4 is still early in development!
If you use this branch you may experience crashes, weird behaviour, and unannounced breaking changes.
You probably want to use InspIRCd v3 instead.
The "httpd_stats" Module (v4)
Description
This module provides XML-serialised statistics about the server, channels, and users over HTTP via the /stats path.
Configuration
To load this module use the following <module>
tag:
<module name="httpd_stats">
<httpstats>
The <httpstats>
tag defines settings about how the httpd_stats module should behave. This tag can only be defined once.
Name | Type | Default Value | Description |
---|---|---|---|
enableparams | Boolean | No | Whether parameterized queries are enabled. Disabled by default for performance reasons. |
Example Usage
<httpstats enableparams="no">
Special Notes
Leaking your server statistics over the internet is a privacy and security risk. You should avoid doing this by either configuring the httpd module to only listen for local connections or by using the httpd_acl module to restrict who can view your server configuration.