mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
more fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9921 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
742d519b67
commit
a5f65582fe
@ -202,6 +202,8 @@ DllExport void DoStats(InspIRCd* ServerInstance, char statschar, User* user, str
|
||||
results.push_back(sn+" 249 "+user->nick+" :MOTD(VECTOR) "+ConvToStr(ServerInstance->Config->MOTD.size())+", RULES(VECTOR) "+ConvToStr(ServerInstance->Config->RULES.size()));
|
||||
|
||||
float kbitpersec_in, kbitpersec_out, kbitpersec_total;
|
||||
char kbitpersec_in_s[30], kbitpersec_out_s[30], kbitpersec_total_s[30];
|
||||
|
||||
ServerInstance->SE->GetStats(kbitpersec_in, kbitpersec_out, kbitpersec_total);
|
||||
|
||||
snprintf(kbitspersec_total_s, 30, "%03.5f%%", kbitspersec_total);
|
||||
|
@ -63,6 +63,7 @@ void IPCThread::Run()
|
||||
std::stringstream stat;
|
||||
DWORD Written = 0;
|
||||
float kbitpersec_in, kbitpersec_out, kbitpersec_total;
|
||||
char kbitpersec_in_s[30], kbitpersec_out_s[30], kbitpersec_total_s[30];
|
||||
|
||||
PROCESS_MEMORY_COUNTERS MemCounters;
|
||||
|
||||
@ -80,9 +81,9 @@ void IPCThread::Run()
|
||||
stat << "pid " << GetProcessId(GetCurrentProcess()) << std::endl;
|
||||
stat << "request " << oldrequest << std::endl;
|
||||
stat << "result " << this->GetResult() << std::endl;
|
||||
stat << "kbitspersectotal " << kbitpersec_total << std::endl;
|
||||
stat << "kbitspersecout " << kbitpersec_out << std::endl;
|
||||
stat << "kbitspersecin " << kbitpersec_in << std::endl;
|
||||
stat << "kbitspersectotal " << kbitpersec_total_s << std::endl;
|
||||
stat << "kbitspersecout " << kbitpersec_out_s << std::endl;
|
||||
stat << "kbitspersecin " << kbitpersec_in_s << std::endl;
|
||||
if (HaveMemoryStats)
|
||||
{
|
||||
stat << "workingset " << MemCounters.WorkingSetSize << std::endl;
|
||||
|
Loading…
x
Reference in New Issue
Block a user