Fix output of check_ping

This commit is contained in:
Jean Flach 2015-02-09 09:03:03 +01:00
parent 97fc5bb10b
commit 04dbab2eac
1 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ int printOutput(printInfoStruct& printInfo, response& response)
state state = OK; state state = OK;
double plp = ((double)response.dropped / printInfo.num) * 100.0; double plp = ((double)response.dropped / printInfo.num) * 100.0;
wstring test = removeZero(plp);
if (printInfo.warn.rend(response.avg) || printInfo.wpl.rend(plp)) if (printInfo.warn.rend(response.avg) || printInfo.wpl.rend(plp))
state = WARNING; state = WARNING;
@ -249,7 +249,7 @@ int printOutput(printInfoStruct& printInfo, response& response)
std::wstringstream perf; std::wstringstream perf;
perf << L"rta=" << response.avg << L"ms;" << printInfo.warn.pString() << L";" perf << L"rta=" << response.avg << L"ms;" << printInfo.warn.pString() << L";"
<< printInfo.crit.pString() << L";0;" << " pl=" << removeZero(plp) << "%;" << printInfo.crit.pString() << L";0;" << " pl=" << removeZero(plp) << "%;"
<< printInfo.warn.pString() << ";" << printInfo.crit.pString() << ";0;100"; << printInfo.wpl.pString() << ";" << printInfo.cpl.pString() << ";0;100";
if (response.dropped == printInfo.num) { if (response.dropped == printInfo.num) {
wcout << L"PING CRITICAL ALL CONNECTIONS DROPPED | " << perf.str() << endl; wcout << L"PING CRITICAL ALL CONNECTIONS DROPPED | " << perf.str() << endl;