icinga2/plugins/check_memory.cpp

217 lines
6.3 KiB
C++
Raw Normal View History

Replace all existing copyright headers with `SPDX` headers I've used the following command to replace the original copyright header lines in a C-style comment block: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ``` For files that use shell-style comments (#) like CMakeLists.txt, I've used this command: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ``` And for SQL files: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ```
2026-01-27 09:06:40 -05:00
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-2.0-or-later
2018-02-01 02:45:09 -05:00
#include "plugins/thresholds.hpp"
#include <boost/program_options.hpp>
#include <iostream>
2018-02-01 02:45:09 -05:00
#include <shlwapi.h>
#include <winbase.h>
#define VERSION 1.0
namespace po = boost::program_options;
2018-02-01 02:45:09 -05:00
struct printInfoStruct
{
2018-02-01 02:45:09 -05:00
threshold warn;
threshold crit;
double tRam;
double aRam;
double percentFree;
Bunit unit = BunitMB;
bool showUsed;
};
static bool l_Debug;
static int parseArguments(int ac, WCHAR ** av, po::variables_map& vm, printInfoStruct& printInfo)
{
2015-03-23 08:07:02 -04:00
WCHAR namePath[MAX_PATH];
GetModuleFileName(NULL, namePath, MAX_PATH);
2015-03-23 08:07:02 -04:00
WCHAR *progName = PathFindFileName(namePath);
po::options_description desc;
desc.add_options()
2015-03-23 08:07:02 -04:00
("help,h", "Print help message and exit")
("version,V", "Print version and exit")
("debug,d", "Verbose/Debug output")
2015-03-23 08:07:02 -04: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)")
("show-used,U", "Show used memory instead of the free memory")
;
2018-02-01 02:45:09 -05:00
po::wcommand_line_parser parser(ac, av);
try {
po::store(
parser
.options(desc)
.style(
2018-02-01 02:45:09 -05:00
po::command_line_style::unix_style |
po::command_line_style::allow_long_disguise)
.run(),
vm);
vm.notify();
2018-02-01 02:45:09 -05:00
} catch (const std::exception& e) {
2015-03-23 08:07:02 -04:00
std::cout << e.what() << '\n' << desc << '\n';
return 3;
}
if (vm.count("help")) {
2015-03-23 08:07:02 -04:00
std::wcout << progName << " Help\n\tVersion: " << VERSION << '\n';
wprintf(
L"%s is a simple program to check a machines physical memory.\n"
L"You can use the following options to define its behaviour:\n\n", progName);
2015-03-23 08:07:02 -04:00
std::cout << desc;
wprintf(
L"\nIt will then output a string looking something like this:\n\n"
L"\tMEMORY WARNING - 50%% free | memory=2024MB;3000;500;0;4096\n\n"
L"\"MEMORY\" being the type of the check, \"WARNING\" the returned status\n"
L"and \"50%%\" 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"
L"if applicable, the maximal value. Performance data will only be displayed when\n"
L"you set at least one threshold\n\n"
L"%s' exit codes denote the following:\n"
L" 0\tOK,\n\tNo Thresholds were broken or the programs check part was not executed\n"
L" 1\tWARNING,\n\tThe warning, but not the critical threshold was broken\n"
L" 2\tCRITICAL,\n\tThe critical threshold was broken\n"
L" 3\tUNKNOWN, \n\tThe program experienced an internal or input error\n\n"
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 08:07:02 -04:00
std::cout << '\n';
return 0;
}
if (vm.count("version"))
2015-03-23 08:07:02 -04:00
std::wcout << L"Version: " << VERSION << '\n';
if (vm.count("warning")) {
try {
2015-03-23 08:07:02 -04:00
printInfo.warn = threshold(vm["warning"].as<std::wstring>());
2018-02-01 02:45:09 -05:00
} catch (const std::invalid_argument& e) {
2015-03-23 08:07:02 -04:00
std::cout << e.what() << '\n';
return 3;
}
printInfo.warn.legal = !printInfo.warn.legal;
}
if (vm.count("critical")) {
try {
2015-03-23 08:07:02 -04:00
printInfo.crit = threshold(vm["critical"].as<std::wstring>());
2018-02-01 02:45:09 -05:00
} catch (const std::invalid_argument& e) {
2015-03-23 08:07:02 -04:00
std::cout << e.what() << '\n';
return 3;
}
printInfo.crit.legal = !printInfo.crit.legal;
}
2018-02-01 02:45:09 -05:00
l_Debug = vm.count("debug") > 0;
if (vm.count("unit")) {
try {
2015-03-23 08:07:02 -04:00
printInfo.unit = parseBUnit(vm["unit"].as<std::wstring>());
2018-02-01 02:45:09 -05:00
} catch (const std::invalid_argument& e) {
2015-03-23 08:07:02 -04:00
std::cout << e.what() << '\n';
return 3;
}
}
if (vm.count("show-used")) {
printInfo.showUsed = true;
printInfo.warn.legal = true;
printInfo.crit.legal = true;
}
return -1;
}
2018-02-01 02:45:09 -05:00
static int printOutput(printInfoStruct& printInfo)
{
2018-02-01 02:45:09 -05:00
if (l_Debug)
2015-03-23 08:07:02 -04:00
std::wcout << L"Constructing output string" << '\n';
state state = OK;
2018-02-01 02:45:09 -05:00
std::wcout << L"MEMORY ";
double currentValue;
if (!printInfo.showUsed)
currentValue = printInfo.aRam;
else
currentValue = printInfo.tRam - printInfo.aRam;
if (printInfo.warn.rend(currentValue, printInfo.tRam))
2018-02-01 02:45:09 -05:00
state = WARNING;
if (printInfo.crit.rend(currentValue, printInfo.tRam))
2018-02-01 02:45:09 -05:00
state = CRITICAL;
std::wcout << stateToString(state);
2018-02-01 02:45:09 -05:00
if (!printInfo.showUsed)
std::wcout << " - " << printInfo.percentFree << L"% free";
else
std::wcout << " - " << 100 - printInfo.percentFree << L"% used";
std::wcout << "| 'memory'=" << currentValue << BunitStr(printInfo.unit) << L";"
2018-02-01 02:45:09 -05:00
<< printInfo.warn.pString(printInfo.tRam) << L";" << printInfo.crit.pString(printInfo.tRam)
<< L";0;" << printInfo.tRam << '\n';
return state;
}
2018-02-01 02:45:09 -05:00
static int check_memory(printInfoStruct& printInfo)
{
2018-02-01 02:45:09 -05:00
if (l_Debug)
2015-03-23 08:07:02 -04:00
std::wcout << L"Accessing memory statistics via MemoryStatus" << '\n';
2018-02-01 02:45:09 -05:00
MEMORYSTATUSEX memBuf;
memBuf.dwLength = sizeof(memBuf);
GlobalMemoryStatusEx(&memBuf);
printInfo.tRam = round((memBuf.ullTotalPhys / pow(1024.0, printInfo.unit) * pow(10.0, printInfo.unit))) / pow(10.0, printInfo.unit);
printInfo.aRam = round((memBuf.ullAvailPhys / pow(1024.0, printInfo.unit) * pow(10.0, printInfo.unit))) / pow(10.0, printInfo.unit);
2018-02-01 02:45:09 -05:00
printInfo.percentFree = 100.0 * memBuf.ullAvailPhys / memBuf.ullTotalPhys;
2018-02-01 02:45:09 -05:00
if (l_Debug)
std::wcout << L"Found memBuf.dwTotalPhys: " << memBuf.ullTotalPhys << '\n'
<< L"Found memBuf.dwAvailPhys: " << memBuf.ullAvailPhys << '\n';
2018-02-01 02:45:09 -05:00
return -1;
}
2018-02-01 02:45:09 -05:00
int wmain(int argc, WCHAR **argv)
{
printInfoStruct printInfo = {};
po::variables_map vm;
2018-02-01 02:45:09 -05:00
int ret = parseArguments(argc, argv, vm, printInfo);
if (ret != -1)
return ret;
2018-02-01 02:45:09 -05:00
ret = check_memory(printInfo);
if (ret != -1)
return ret;
return printOutput(printInfo);
2015-09-18 07:04:09 -04:00
}