2014-11-06 16:36:42 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-11-06 16:36:42 +01:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
2014-11-06 15:17:08 +01:00
|
|
|
#include <Shlwapi.h>
|
|
|
|
#include <iostream>
|
2015-02-02 11:11:43 +01:00
|
|
|
#include <WinBase.h>
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
#include "check_swap.h"
|
2014-11-06 15:17:08 +01:00
|
|
|
|
|
|
|
#define VERSION 1.0
|
|
|
|
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
2015-01-12 15:53:25 +01:00
|
|
|
static BOOL debug = FALSE;
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
INT wmain(INT argc, WCHAR **argv)
|
2014-11-06 16:36:42 +01:00
|
|
|
{
|
2014-11-06 15:17:08 +01:00
|
|
|
printInfoStruct printInfo = { };
|
|
|
|
po::variables_map vm;
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
INT ret = parseArguments(argc, argv, vm, printInfo);
|
2014-11-06 15:17:08 +01:00
|
|
|
if (ret != -1)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = check_swap(printInfo);
|
|
|
|
if (ret != -1)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return printOutput(printInfo);
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
INT parseArguments(INT ac, WCHAR **av, po::variables_map& vm, printInfoStruct& printInfo)
|
2014-11-06 16:36:42 +01:00
|
|
|
{
|
2015-03-23 13:07:02 +01:00
|
|
|
WCHAR namePath[MAX_PATH];
|
2014-11-06 15:17:08 +01:00
|
|
|
GetModuleFileName(NULL, namePath, MAX_PATH);
|
2015-03-23 13:07:02 +01:00
|
|
|
WCHAR *progName = PathFindFileName(namePath);
|
2014-11-06 15:17:08 +01:00
|
|
|
|
|
|
|
po::options_description desc;
|
|
|
|
|
|
|
|
desc.add_options()
|
2015-03-23 13:07:02 +01:00
|
|
|
("help,h", "Print help message and exit")
|
|
|
|
("version,V", "Print version and exit")
|
2015-01-12 15:53:25 +01:00
|
|
|
("debug,d", "Verbose/Debug output")
|
2015-03-23 13:07:02 +01:00
|
|
|
("warning,w", po::wvalue<std::wstring>(), "Warning threshold")
|
|
|
|
("critical,c", po::wvalue<std::wstring>(), "Critical threshold")
|
|
|
|
("unit,u", po::wvalue<std::wstring>(), "The unit to use for display (default MB)")
|
2014-11-06 15:17:08 +01:00
|
|
|
;
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
po::basic_command_line_parser<WCHAR> parser(ac, av);
|
2014-11-06 15:17:08 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
po::store(
|
|
|
|
parser
|
|
|
|
.options(desc)
|
|
|
|
.style(
|
|
|
|
po::command_line_style::unix_style |
|
|
|
|
po::command_line_style::allow_long_disguise)
|
|
|
|
.run(),
|
|
|
|
vm);
|
|
|
|
vm.notify();
|
2014-11-06 16:36:42 +01:00
|
|
|
} catch (std::exception& e) {
|
2015-03-23 13:07:02 +01:00
|
|
|
std::cout << e.what() << '\n' << desc << '\n';
|
2014-11-06 15:17:08 +01:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("help")) {
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wcout << progName << " Help\n\tVersion: " << VERSION << '\n';
|
2014-11-06 15:17:08 +01:00
|
|
|
wprintf(
|
|
|
|
L"%s is a simple program to check a machines swap in percent.\n"
|
|
|
|
L"You can use the following options to define its behaviour:\n\n", progName);
|
2015-03-23 13:07:02 +01:00
|
|
|
std::cout << desc;
|
2014-11-06 15:17:08 +01:00
|
|
|
wprintf(
|
|
|
|
L"\nIt will then output a string looking something like this:\n\n"
|
2015-02-02 11:11:43 +01:00
|
|
|
L"\tSWAP WARNING - 20%% free | swap=2000B;3000;500;0;10000\n\n"
|
2014-11-06 15:17:08 +01:00
|
|
|
L"\"SWAP\" being the type of the check, \"WARNING\" the returned status\n"
|
2015-02-03 10:22:09 +01:00
|
|
|
L"and \"20%%\" is the returned value.\n"
|
2014-11-06 15:17:08 +01:00
|
|
|
L"The performance data is found behind the \"|\", in order:\n"
|
|
|
|
L"returned value, warning threshold, critical threshold, minimal value and,\n"
|
2014-11-06 16:36:42 +01:00
|
|
|
L"if applicable, the maximal value. Performance data will only be displayed when\n"
|
|
|
|
L"you set at least one threshold\n\n"
|
2014-11-06 15:17:08 +01:00
|
|
|
L"%s' exit codes denote the following:\n"
|
2014-11-06 16:36:42 +01:00
|
|
|
L" 0\tOK,\n\tNo Thresholds were broken or the programs check part was not executed\n"
|
2014-11-06 15:17:08 +01:00
|
|
|
L" 1\tWARNING,\n\tThe warning, but not the critical threshold was broken\n"
|
|
|
|
L" 2\tCRITICAL,\n\tThe critical threshold was broken\n"
|
2014-11-06 16:36:42 +01:00
|
|
|
L" 3\tUNKNOWN, \n\tThe program experienced an internal or input error\n\n"
|
2014-11-06 15:17:08 +01:00
|
|
|
L"Threshold syntax:\n\n"
|
|
|
|
L"-w THRESHOLD\n"
|
|
|
|
L"warn if threshold is broken, which means VALUE > THRESHOLD\n"
|
|
|
|
L"(unless stated differently)\n\n"
|
|
|
|
L"-w !THRESHOLD\n"
|
|
|
|
L"inverts threshold check, VALUE < THRESHOLD (analogous to above)\n\n"
|
|
|
|
L"-w [THR1-THR2]\n"
|
|
|
|
L"warn is VALUE is inside the range spanned by THR1 and THR2\n\n"
|
|
|
|
L"-w ![THR1-THR2]\n"
|
|
|
|
L"warn if VALUE is outside the range spanned by THR1 and THR2\n\n"
|
|
|
|
L"-w THRESHOLD%%\n"
|
|
|
|
L"if the plugin accepts percentage based thresholds those will be used.\n"
|
|
|
|
L"Does nothing if the plugin does not accept percentages, or only uses\n"
|
|
|
|
L"percentage thresholds. Ranges can be used with \"%%\", but both range values need\n"
|
|
|
|
L"to end with a percentage sign.\n\n"
|
|
|
|
L"All of these options work with the critical threshold \"-c\" too.\n"
|
|
|
|
, progName);
|
2015-03-23 13:07:02 +01:00
|
|
|
std::cout << '\n';
|
2014-11-06 15:17:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("version"))
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wcout << L"Version: " << VERSION << '\n';
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2014-11-10 14:39:12 +01:00
|
|
|
if (vm.count("warning")) {
|
|
|
|
try {
|
2015-03-23 13:07:02 +01:00
|
|
|
printInfo.warn = threshold(vm["warning"].as<std::wstring>());
|
2014-11-10 14:39:12 +01:00
|
|
|
} catch (std::invalid_argument& e) {
|
2015-03-23 13:07:02 +01:00
|
|
|
std::cout << e.what() << '\n';
|
2014-11-10 14:39:12 +01:00
|
|
|
return 3;
|
|
|
|
}
|
2015-02-02 15:11:11 +01:00
|
|
|
printInfo.warn.legal = !printInfo.warn.legal;
|
2014-11-10 14:39:12 +01:00
|
|
|
}
|
2015-01-12 15:53:25 +01:00
|
|
|
|
2014-11-10 14:39:12 +01:00
|
|
|
if (vm.count("critical")) {
|
|
|
|
try {
|
2015-03-23 13:07:02 +01:00
|
|
|
printInfo.crit = threshold(vm["critical"].as<std::wstring>());
|
2014-11-10 14:39:12 +01:00
|
|
|
} catch (std::invalid_argument& e) {
|
2015-03-23 13:07:02 +01:00
|
|
|
std::cout << e.what() << '\n';
|
2014-11-10 14:39:12 +01:00
|
|
|
return 3;
|
|
|
|
}
|
2015-02-02 15:11:11 +01:00
|
|
|
printInfo.crit.legal = !printInfo.crit.legal;
|
2014-11-10 14:39:12 +01:00
|
|
|
}
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2015-01-12 15:53:25 +01:00
|
|
|
if (vm.count("debug"))
|
|
|
|
debug = TRUE;
|
|
|
|
|
2015-02-03 10:22:09 +01:00
|
|
|
if (vm.count("unit")) {
|
|
|
|
try {
|
2015-03-23 13:07:02 +01:00
|
|
|
printInfo.unit = parseBUnit(vm["unit"].as<std::wstring>());
|
2015-02-03 10:22:09 +01:00
|
|
|
} catch (std::invalid_argument& e) {
|
2015-03-23 13:07:02 +01:00
|
|
|
std::cout << e.what() << '\n';
|
2015-02-03 10:22:09 +01:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-06 15:17:08 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
INT printOutput(printInfoStruct& printInfo)
|
2014-11-06 16:36:42 +01:00
|
|
|
{
|
2015-01-12 15:53:25 +01:00
|
|
|
if (debug)
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wcout << L"Constructing output string" << '\n';
|
2015-01-12 15:53:25 +01:00
|
|
|
|
2014-11-06 15:17:08 +01:00
|
|
|
state state = OK;
|
|
|
|
|
2015-02-02 15:11:11 +01:00
|
|
|
if (printInfo.warn.rend(printInfo.aSwap, printInfo.tSwap))
|
2014-11-06 15:17:08 +01:00
|
|
|
state = WARNING;
|
|
|
|
|
2015-02-02 15:11:11 +01:00
|
|
|
if (printInfo.crit.rend(printInfo.aSwap, printInfo.tSwap))
|
2014-11-06 15:17:08 +01:00
|
|
|
state = CRITICAL;
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case OK:
|
2015-10-31 14:47:36 +01:00
|
|
|
std::wcout << L"SWAP OK - " << printInfo.percentFree << L"% free | swap=" << printInfo.aSwap << BunitStr(printInfo.unit) << L";"
|
2015-02-02 11:11:43 +01:00
|
|
|
<< printInfo.warn.pString(printInfo.tSwap) << L";" << printInfo.crit.pString(printInfo.tSwap)
|
2015-03-23 13:07:02 +01:00
|
|
|
<< L";0;" << printInfo.tSwap << '\n';
|
2014-11-06 15:17:08 +01:00
|
|
|
break;
|
|
|
|
case WARNING:
|
2015-10-31 14:47:36 +01:00
|
|
|
std::wcout << L"SWAP WARNING - " << printInfo.percentFree << L"% free | swap=" << printInfo.aSwap << BunitStr(printInfo.unit) << L";"
|
2015-02-02 11:11:43 +01:00
|
|
|
<< printInfo.warn.pString(printInfo.tSwap) << L";" << printInfo.crit.pString(printInfo.tSwap)
|
2015-03-23 13:07:02 +01:00
|
|
|
<< L";0;" << printInfo.tSwap << '\n';
|
2014-11-06 15:17:08 +01:00
|
|
|
break;
|
|
|
|
case CRITICAL:
|
2015-10-31 14:47:36 +01:00
|
|
|
std::wcout << L"SWAP CRITICAL - " << printInfo.percentFree << L"% free | swap=" << printInfo.aSwap << BunitStr(printInfo.unit) << L";"
|
2015-02-02 11:11:43 +01:00
|
|
|
<< printInfo.warn.pString(printInfo.tSwap) << L";" << printInfo.crit.pString(printInfo.tSwap)
|
2015-03-23 13:07:02 +01:00
|
|
|
<< L";0;" << printInfo.tSwap << '\n';
|
2014-11-06 15:17:08 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
INT check_swap(printInfoStruct& printInfo)
|
2014-11-06 16:36:42 +01:00
|
|
|
{
|
2015-02-17 15:54:23 +01:00
|
|
|
MEMORYSTATUSEX MemBuf;
|
|
|
|
MemBuf.dwLength = sizeof(MemBuf);
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2015-02-17 15:54:23 +01:00
|
|
|
if (!GlobalMemoryStatusEx(&MemBuf)) {
|
|
|
|
die();
|
|
|
|
return 3;
|
|
|
|
}
|
2015-01-12 15:53:25 +01:00
|
|
|
|
2015-02-17 15:54:23 +01:00
|
|
|
printInfo.tSwap = round(MemBuf.ullTotalPageFile / pow(1024.0, printInfo.unit));
|
|
|
|
printInfo.aSwap = round(MemBuf.ullAvailPageFile / pow(1024.0, printInfo.unit));
|
2015-10-31 14:47:36 +01:00
|
|
|
printInfo.percentFree = 100.0 * MemBuf.ullAvailPageFile / MemBuf.ullTotalPageFile;
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2015-02-02 11:11:43 +01:00
|
|
|
return -1;
|
2015-09-18 13:04:09 +02:00
|
|
|
}
|