summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-30 19:20:59 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-30 19:20:59 +0000
commit2bc7de2e3fb586bf47feabe95eb56b4dc069b655 (patch)
treef89922e2056190237c015c24a677bc8b9fc16b82 /src
parente61cedcdb1563eb6f0159169c0d6f1cb5343c3ff (diff)
Add servers and server user counts, module versions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7630 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_httpd_stats.cpp39
1 files changed, 34 insertions, 5 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index 70b73e13d..d685d5c63 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -30,6 +30,8 @@ typedef SortedList::iterator SortedIter;
static StatsHash* sh = new StatsHash();
static SortedList* so = new SortedList();
+static StatsHash* Servers = new StatsHash();
+
class ModuleHttpStats : public Module
{
@@ -46,7 +48,6 @@ class ModuleHttpStats : public Module
ModuleHttpStats(InspIRCd* Me) : Module(Me)
{
-
ReadConfig();
this->changed = true;
}
@@ -74,6 +75,18 @@ class ModuleHttpStats : public Module
so->clear();
for (StatsIter a = sh->begin(); a != sh->end(); a++)
InsertOrder(a->first, a->second);
+ for (user_hash::iterator u = ServerInstance->clientlist->begin(); u != ServerInstance->clientlist->end(); u++)
+ {
+ StatsHash::iterator n = Servers->find(u->second->server);
+ if (n != Servers->end())
+ {
+ n->second++;
+ }
+ else
+ {
+ Servers->insert(std::make_pair<irc::string,int>(u->second->server,1));
+ }
+ }
this->changed = false;
}
@@ -96,13 +109,17 @@ class ModuleHttpStats : public Module
data << "<channelcount>" << ServerInstance->chanlist->size() << "</channelcount>";
data << "<opercount>" << ServerInstance->all_opers.size() << "</opercount>";
data << "<socketcount>" << (ServerInstance->SE->GetMaxFds() - ServerInstance->SE->GetRemainingFds()) << "</socketcount><socketmax>" << ServerInstance->SE->GetMaxFds() <<
- "</socketmax><socketengine>" << ServerInstance->SE->GetName() << "')</socketengine>";
+ "</socketmax><socketengine>" << ServerInstance->SE->GetName() << "</socketengine>";
data << "</general>";
data << "<modulelist>";
for (int i = 0; i <= ServerInstance->GetModuleCount(); i++)
{
if (!ServerInstance->Config->module_names[i].empty())
- data << "<module>" << ServerInstance->Config->module_names[i] << "</module>";
+ {
+ Version v = ServerInstance->modules[i]->GetVersion();
+ data << "<module><name>" << ServerInstance->Config->module_names[i] << "</name><version>" <<
+ v.Major << "." << v.Minor << "." << v.Revision << "." << v.Build << "</version></module>";
+ }
}
data << "</modulelist>";
@@ -113,8 +130,7 @@ class ModuleHttpStats : public Module
if (this->changed)
this->SortList();
- int n = 0;
- for (SortedIter a = so->begin(); ((a != so->end()) && (n < 25)); a++, n++)
+ for (SortedIter a = so->begin(); a != so->end(); a++)
{
chanrec* c = ServerInstance->FindChan(a->second.c_str());
if (c && !c->IsModeSet('s') && !c->IsModeSet('p'))
@@ -125,11 +141,24 @@ class ModuleHttpStats : public Module
data << "<channelhalfops>" << c->GetHalfoppedUsers()->size() << "</channelhalfops>";
data << "<channelvoices>" << c->GetVoicedUsers()->size() << "</channelvoices>";
data << "<channeltopic>" << c->topic << "</channeltopic>";
+ data << "<channelmodes>" << c->ChanModes(false) << "</channelmodes>";
data << "</channel>";
}
}
data << "</channellist>";
+
+ data << "<serverlist>";
+
+ for (StatsHash::iterator b = Servers->begin(); b != Servers->end(); b++)
+ {
+ data << "<server>";
+ data << "<servername>" << b->first << "</servername>";
+ data << "<usercount>" << b->second << "</usercount>";
+ data << "</server>";
+ }
+ data << "</serverlist>";
+
data << "</inspircdstats>";
/* Send the document back to m_httpd */