Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
3 days | Transform output format to a global state | Lorenz Kästle | 2 | -4/+15 | |
This commit removes the format parameter from the mp_check object and creates a module global variable instead. This prevents thread safe usage of different mp_check objects which should likely not present a big problem for now. The reason for this change is effectively the very same, the format was lost if an exit was triggered by a signal handler (timeout in this example). | |||||
2025-02-20 | Rename icingaweb2 format to multi-line | Lorenz Kästle | 2 | -6/+6 | |
2025-02-20 | Remove output formats one-line and summary-only | Lorenz Kästle | 2 | -45/+0 | |
2025-02-19 | Remove errornously commited file | Lorenz Kästle | 1 | -0/+0 | |
2025-02-19 | Implement JSON serialising of perfdata | Lorenz Kästle | 1 | -1/+102 | |
2025-02-19 | Use asprintf in lib directly instead of xasprintf | Lorenz Kästle | 2 | -34/+34 | |
2025-02-19 | Ignore generated stuff for vendored stuff in lib | Lorenz Kästle | 2 | -170/+0 | |
2025-02-19 | Maybe fix compilation errors | Lorenz Kästle | 1 | -1/+0 | |
2025-02-19 | Add new files to EXTRA_DIST | Lorenz Kästle | 1 | -1/+14 | |
2025-02-19 | Fix one-line formatting | Lorenz Kästle | 1 | -2/+11 | |
2025-02-19 | Exit with 0 in JSON-format if everything else works | Lorenz Kästle | 1 | -0/+4 | |
2025-02-18 | Implement new output functionality | Lorenz Kästle | 19 | -71/+5531 | |
2024-11-09 | Fix argument order of calloc on several occasions | Lorenz Kästle | 1 | -1/+1 | |
2024-10-31 | lib: clang-format for headers too | RincewindsHat | 1 | -1/+5 | |
2024-10-31 | lib: clang-format | RincewindsHat | 12 | -141/+203 | |
2024-10-17 | lib: Update copyright | Lorenz Kästle | 8 | -7/+26 | |
2024-10-17 | lib: clang-format | Lorenz Kästle | 24 | -1808/+1538 | |
2024-01-07 | Ini Parser: Avoid freeing symbols from text section by remembering where ↵ | RincewindsHat | 1 | -9/+23 | |
they are from | |||||
2023-10-19 | Fixes for -Wsign-compare | RincewindsHat | 3 | -4/+3 | |
2023-10-18 | Include maxfd.h in lib Makefile | RincewindsHat | 1 | -1/+1 | |
This fixes a regression which was introduced with 719e27ddc2f0b48bcd7fe5584b23e3ce83ddf291 It prevents the creation of working release tarballs with the current toolchain. This commit add the header file maxfd.h to list of needed files. | |||||
2023-10-16 | Fixes for compiler warning -Wparentheses | RincewindsHat | 2 | -4/+4 | |
2023-10-15 | Replace all old school booleans in lib witch C99 ones | RincewindsHat | 8 | -116/+104 | |
2023-10-15 | Whitespace fixes in lib | RincewindsHat | 16 | -106/+104 | |
2023-09-30 | Fix typo | Lorenz Kästle | 1 | -1/+1 | |
2023-09-30 | Document new np_add_regex more and add error handling | Lorenz Kästle | 1 | -4/+29 | |
2023-09-28 | Introduce np_find_regmatch() | Alexander A. Klimov | 2 | -0/+26 | |
2023-09-28 | Introduce np_add_regex() | Alexander A. Klimov | 2 | -0/+12 | |
2023-09-28 | Introduce regex_list | Alexander A. Klimov | 1 | -0/+6 | |
2023-09-23 | Remove check for RETSIGTYPE in autoconf stuff | RincewindsHat | 1 | -1/+1 | |
autoupdate tells me, that since C89 I can safely assume RETSIGTYPE is void. Therefore to simplify things I removed the corresponding configure.ac line and replaced all mentions of RETSIGTYPE with void. | |||||
2023-09-23 | Merge pull request #1924 from RincewindsHat/compiler_warnings_4_1 | Lorenz Kästle | 4 | -9/+43 | |
Centralise and refactor maxfd related functionality | |||||
2023-09-23 | open_max is a library function now, it should be mp_open_max | RincewindsHat | 3 | -6/+6 | |
2023-09-22 | Place _cmd_pids in object not header to avoid unsused variables | RincewindsHat | 2 | -9/+10 | |
2023-09-22 | fixup! Rework maxfd/open_max to avoid unused variables | RincewindsHat | 2 | -0/+35 | |
2023-09-22 | Rework maxfd/open_max to avoid unused variables | RincewindsHat | 2 | -9/+8 | |
2023-09-21 | Merge branch 'master' into compiler_warning_part_3 | Lorenz Kästle | 1 | -4/+0 | |
2023-07-23 | Use memory on stack instead of heap for temporary variables | RincewindsHat | 1 | -5/+1 | |
2023-06-28 | Merge branch 'master' into compiler_warning_part_3 | waja | 2 | -12/+13 | |
2023-06-28 | Merge branch 'master' into compiler_warning_part_5 | waja | 2 | -12/+13 | |
2023-05-10 | avoid mounting when searching for matching mount points | Stefan Taferner | 1 | -8/+9 | |
2023-04-18 | Fixes for -Wnonnull-compare | RincewindsHat | 1 | -4/+0 | |
2023-04-18 | Fix hash creation | RincewindsHat | 1 | -3/+15 | |
2023-04-18 | Use default OPENSSL sha functions if available | RincewindsHat | 2 | -9/+22 | |
2023-04-18 | Fixes for -Wunused | RincewindsHat | 1 | -4/+4 | |
* lib/utils_base.c * plugins/check_curl.c * plugins-root/check_dhcp.c Removed a line which theoretically can not do anything, but there was comment which indicated something else. Still trying this though. | |||||
2023-04-14 | Fix a lot of typos reported by codespell | Jan Wagner | 7 | -15/+15 | |
2023-02-19 | Merge remote-tracking branch 'origin/master' into ↵ | Kristian Schuster | 5 | -9/+15 | |
feature_check_disk_add_ignore_missing_option | |||||
2023-02-19 | utils_disk: add name_prev pointer to struct parameter_list | Kristian Schuster | 2 | -2/+18 | |
Also added handling of name_prev in np_add_parameter and np_delete_parameter. This make calling the np_delete_parameter function easier, because it requires the previous element as second argument. | |||||
2023-02-01 | Fix hashes in tests since we are using sha256 now | Lorenz Kästle | 1 | -3/+3 | |
2023-02-01 | Also link LIB_CRYPTO against tests | Lorenz Kästle | 1 | -1/+1 | |
2023-01-31 | Replace sha1 with sha256 in utils_base | RincewindsHat | 2 | -5/+5 | |
2022-12-13 | check_disk: Find accessible mount path if multiple are available (#1820) | christian-2 | 1 | -0/+6 | |
* fixes #1819 * mount entries also have to be accessible according to get_fs_usage() |