mirror of https://github.com/Icinga/icinga2.git
Fix fmt-countertype in check_perfmon
All three options are now working as expected fixes #10487
This commit is contained in:
parent
38ac7b2070
commit
3e7b943e36
|
@ -131,13 +131,11 @@ BOOL ParseArguments(CONST INT ac, WCHAR **av, po::variables_map& vm, printInfoSt
|
|||
}
|
||||
|
||||
if (vm.count("fmt-countertype")) {
|
||||
if (vm["fmt-countertype"].as<std::wstring>().compare(L"double"))
|
||||
printInfo.dwRequestedType = PDH_FMT_DOUBLE;
|
||||
else if (vm["fmt-countertype"].as<std::wstring>().compare(L"int64"))
|
||||
if (!vm["fmt-countertype"].as<std::wstring>().compare(L"int64"))
|
||||
printInfo.dwRequestedType = PDH_FMT_LARGE;
|
||||
else if (vm["fmt-countertype"].as<std::wstring>().compare(L"long"))
|
||||
else if (!vm["fmt-countertype"].as<std::wstring>().compare(L"long"))
|
||||
printInfo.dwRequestedType = PDH_FMT_LONG;
|
||||
else {
|
||||
else if (vm["fmt-countertype"].as<std::wstring>().compare(L"double")) {
|
||||
std::wcout << "Unknown value type " << vm["fmt-countertype"].as<std::wstring>() << '\n';
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -341,10 +339,13 @@ BOOL QueryPerfData(printInfoStruct& pI)
|
|||
{
|
||||
case (PDH_FMT_LONG) :
|
||||
pI.dValue = pDisplayValues[0].FmtValue.longValue;
|
||||
break;
|
||||
case (PDH_FMT_LARGE) :
|
||||
pI.dValue = pDisplayValues[0].FmtValue.largeValue;
|
||||
break;
|
||||
default:
|
||||
pI.dValue = pDisplayValues[0].FmtValue.doubleValue;
|
||||
break;
|
||||
}
|
||||
|
||||
delete[]pDisplayValues;
|
||||
|
|
Loading…
Reference in New Issue