icinga2/plugins/check_uptime.cpp

214 lines
6.5 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
#include "plugins/thresholds.hpp"
#include <boost/program_options.hpp>
#include <boost/chrono.hpp>
#include <iostream>
#include <windows.h>
#include <shlwapi.h>
2014-11-06 15:17:08 +01:00
#define VERSION 1.0
namespace po = boost::program_options;
2018-02-01 08:45:09 +01:00
struct printInfoStruct
2014-11-06 15:17:08 +01:00
{
2018-02-01 08:45:09 +01:00
threshold warn;
threshold crit;
long long time;
long long timeInSeconds;
2018-02-01 08:45:09 +01:00
Tunit unit;
};
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
static bool l_Debug;
2014-11-06 15:17:08 +01:00
2018-02-01 08:45:09 +01:00
static 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;
2017-12-13 12:54:14 +01:00
2014-11-06 15:17:08 +01:00
desc.add_options()
2015-03-23 13:07:02 +01:00
("help,h", "Print help message and exit")
("version,V", "Print version and exit")
("debug,d", "Verbose/Debug output")
2015-03-23 13:07:02 +01:00
("warning,w", po::wvalue<std::wstring>(), "Warning threshold (Uses -unit)")
("critical,c", po::wvalue<std::wstring>(), "Critical threshold (Uses -unit)")
("unit,u", po::wvalue<std::wstring>(), "Unit to use:\nh\t- hours\nm\t- minutes\ns\t- seconds (default)\nms\t- milliseconds")
2014-11-06 15:17:08 +01:00
;
2018-02-01 08:45:09 +01:00
po::wcommand_line_parser parser(ac, av);
2014-11-06 15:17:08 +01:00
try {
po::store(
parser
.options(desc)
.style(
2018-02-01 08:45:09 +01:00
po::command_line_style::unix_style |
po::command_line_style::allow_long_disguise)
2014-11-06 15:17:08 +01:00
.run(),
vm);
vm.notify();
2018-02-01 08:45:09 +01:00
} catch (const 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 uptime.\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-03-06 12:14:09 +01:00
L"\tUPTIME WARNING 712h | uptime=712h;700;1800;0\n\n"
2014-11-06 15:17:08 +01:00
L"\"UPTIME\" being the type of the check, \"WARNING\" the returned status\n"
L"and \"712h\" is the returned value.\n"
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"Note that the returned time ins always rounded down,\n"
L"4 hours and 44 minutes will show as 4h.\n\n"
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);
2018-02-01 08:45:09 +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::cout << VERSION << '\n';
2014-11-06 15:17:08 +01:00
return 0;
}
if (vm.count("warning")) {
try {
2015-03-23 13:07:02 +01:00
printInfo.warn = threshold(vm["warning"].as<std::wstring>());
2018-02-01 08:45:09 +01:00
} catch (const std::invalid_argument& e) {
2015-03-23 13:07:02 +01:00
std::cout << e.what() << '\n';
return 3;
}
}
if (vm.count("critical")) {
try {
2015-03-23 13:07:02 +01:00
printInfo.crit = threshold(vm["critical"].as<std::wstring>());
2018-02-01 08:45:09 +01:00
} catch (const std::invalid_argument& e) {
2015-03-23 13:07:02 +01:00
std::cout << e.what() << '\n';
return 3;
}
}
2014-11-06 15:17:08 +01:00
if (vm.count("unit")) {
2018-02-01 08:45:09 +01:00
try {
2015-03-23 13:07:02 +01:00
printInfo.unit = parseTUnit(vm["unit"].as<std::wstring>());
2018-02-01 08:45:09 +01:00
} catch (const std::invalid_argument&) {
2015-03-23 13:07:02 +01:00
std::wcout << L"Unknown unit type " << vm["unit"].as<std::wstring>() << '\n';
return 3;
}
2014-11-06 16:36:42 +01:00
} else
2014-11-06 15:17:08 +01:00
printInfo.unit = TunitS;
2018-02-01 08:45:09 +01:00
l_Debug = vm.count("debug") > 0;
2014-11-06 15:17:08 +01:00
return -1;
}
2018-02-01 08:45:09 +01:00
static int printOutput(printInfoStruct& printInfo)
2014-11-06 16:36:42 +01:00
{
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << L"Constructing output string" << '\n';
2014-11-06 15:17:08 +01:00
state state = OK;
2014-11-06 16:36:42 +01:00
2014-11-06 15:17:08 +01:00
if (printInfo.warn.rend(printInfo.time))
state = WARNING;
if (printInfo.crit.rend(printInfo.time))
state = CRITICAL;
switch (state) {
case OK:
std::wcout << L"UPTIME OK " << printInfo.time << TunitStr(printInfo.unit) << L" | 'uptime'=" << printInfo.timeInSeconds
<< "s" << L";" << printInfo.warn.toSeconds(printInfo.unit).pString() << L";"
<< printInfo.crit.toSeconds(printInfo.unit).pString() << L";0;" << '\n';
2014-11-06 15:17:08 +01:00
break;
case WARNING:
std::wcout << L"UPTIME WARNING " << printInfo.time << TunitStr(printInfo.unit) << L" | 'uptime'=" << printInfo.timeInSeconds
<< "s" << L";" << printInfo.warn.toSeconds(printInfo.unit).pString() << L";"
<< printInfo.crit.toSeconds(printInfo.unit).pString() << L";0;" << '\n';
2014-11-06 15:17:08 +01:00
break;
case CRITICAL:
std::wcout << L"UPTIME CRITICAL " << printInfo.time << TunitStr(printInfo.unit) << L" | 'uptime'=" << printInfo.timeInSeconds
<< "s" << L";" << printInfo.warn.toSeconds(printInfo.unit).pString() << L";"
<< printInfo.crit.toSeconds(printInfo.unit).pString() << L";0;" << '\n';
2014-11-06 15:17:08 +01:00
break;
}
return state;
}
2018-02-01 08:45:09 +01:00
static void getUptime(printInfoStruct& printInfo)
2014-11-06 16:36:42 +01:00
{
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << L"Getting uptime in milliseconds" << '\n';
2014-11-06 15:17:08 +01:00
boost::chrono::milliseconds uptime = boost::chrono::milliseconds(GetTickCount64());
2017-12-13 12:54:14 +01:00
2018-02-01 08:45:09 +01:00
if (l_Debug)
2015-03-23 13:07:02 +01:00
std::wcout << L"Converting requested unit (default: seconds)" << '\n';
2014-11-06 15:17:08 +01:00
switch (printInfo.unit) {
case TunitH:
2014-11-06 15:17:08 +01:00
printInfo.time = boost::chrono::duration_cast<boost::chrono::hours>(uptime).count();
break;
case TunitM:
printInfo.time = boost::chrono::duration_cast<boost::chrono::minutes>(uptime).count();
break;
case TunitS:
printInfo.time = boost::chrono::duration_cast<boost::chrono::seconds>(uptime).count();
break;
case TunitMS:
printInfo.time = uptime.count();
break;
}
// For the Performance Data we need the time in seconds
printInfo.timeInSeconds = boost::chrono::duration_cast<boost::chrono::seconds>(uptime).count();
2015-09-18 13:04:09 +02:00
}
2018-02-01 08:45:09 +01:00
int wmain(int argc, WCHAR **argv)
{
po::variables_map vm;
printInfoStruct printInfo;
int ret = parseArguments(argc, argv, vm, printInfo);
if (ret != -1)
return ret;
getUptime(printInfo);
return printOutput(printInfo);
}