Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2025-09-08 | check_snmp: refactoring + fixes | Lorenz Kästle | 13 | -1071/+1647 | |
This commit moves the state retention logic to check_snmp as it is only used there and I do not want it to be used at all, so it doesn't get a place in the lib. Otherwise this adapts tests and fixes the rate computing in the refactored version of check_snmp. Also fixes some bugs detected with the tests | |||||
2025-09-08 | snmp: fix complaint of snmpd about paths | Lorenz Kästle | 1 | -1/+1 | |
2025-09-01 | lib/utils_base.c: small refactoring | Lorenz Kästle | 2 | -103/+94 | |
2025-09-01 | lib/utils_base.c: clang-format | Lorenz Kästle | 1 | -13/+18 | |
2025-09-01 | check_snmp: improve string quoting in result | Lorenz Kästle | 1 | -1/+16 | |
2025-08-30 | check_snmp: Small improvements + fix dereference bug | Lorenz Kästle | 1 | -3/+4 | |
2025-08-30 | check_snmp: Fix number processing (offset + multiplier) | Lorenz Kästle | 3 | -13/+62 | |
2025-08-30 | check_snmp: implement output format setting | Lorenz Kästle | 2 | -15/+46 | |
2025-08-29 | check_snmp: Make linter happy | Lorenz Kästle | 1 | -22/+28 | |
2025-08-29 | check_snmp: Remove options description for input delimiter | Lorenz Kästle | 1 | -6/+0 | |
2025-08-28 | Build check_snmp unconditionally | Lorenz Kästle | 1 | -2/+3 | |
2025-08-28 | check_snmp: fix DES availability detection(?) | Lorenz Kästle | 2 | -3/+13 | |
2025-08-28 | check_snmp: formatting | Lorenz Kästle | 1 | -2/+2 | |
2025-08-28 | check_snmp: Test for availability of DES privacy protocol | Lorenz Kästle | 1 | -3/+18 | |
2025-08-28 | Remove testing for SNMPGETNEXT from autotools stuff | Lorenz Kästle | 1 | -11/+0 | |
2025-08-27 | check_snmp: use snmp v2c if community is given | Lorenz Kästle | 1 | -0/+8 | |
2025-08-27 | Fix Specfile requires | Lorenz Kästle | 1 | -1/+3 | |
2025-08-27 | Add libsnmp-dev dependency to codeql gh action | Lorenz Kästle | 1 | -3/+14 | |
2025-08-27 | Fix one more typo | Lorenz Kästle | 1 | -1/+1 | |
2025-08-27 | Add netsnmp lib to specfile | Lorenz Kästle | 1 | -0/+1 | |
2025-08-27 | Add libsnmp-dev to github action dependencies | Lorenz Kästle | 1 | -0/+1 | |
2025-08-27 | check_snmp: fix typos | Lorenz Kästle | 1 | -6/+6 | |
2025-08-27 | check_snmp: declare internal functions static | Lorenz Kästle | 1 | -2/+2 | |
2025-08-27 | check_snmp: remove leftover multiply function | Lorenz Kästle | 1 | -48/+0 | |
2025-08-27 | check_snmp: fix/adapt tests | Lorenz Kästle | 1 | -62/+41 | |
2025-08-27 | check_snmp: hopefully fix helpers | Lorenz Kästle | 2 | -32/+41 | |
2025-08-27 | check_snmp: Improve error handling | Lorenz Kästle | 1 | -6/+15 | |
2025-08-27 | check_snmp: rebuild threshold parsing | Lorenz Kästle | 5 | -65/+125 | |
2025-08-27 | Fix range comparison and aesthetic improvements | Lorenz Kästle | 1 | -5/+5 | |
2025-08-25 | rebuild check_snmp | Lorenz Kästle | 3 | -926/+838 | |
2025-08-12 | Merge pull request #2142 from ↵ | waja | 4 | -6/+6 | |
monitoring-plugins/dependabot-github_actions-actions-checkout-5 | |||||
2025-08-12 | build(deps): bump actions/checkout from 4 to 5 | dependabot[bot] | 4 | -6/+6 | |
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> | |||||
2025-08-11 | Merge pull request #2107 from RincewindsHat/refactor/check_users | Lorenz Kästle | 7 | -123/+343 | |
Refactor/check users | |||||
2025-08-11 | Merge branch 'master' into refactor/check_users | Lorenz Kästle | 68 | -5842/+6408 | |
2025-08-11 | check_users: Use sd_get_uids instead of sd_get_session | Lorenz Kästle | 1 | -1/+1 | |
Previously check_users in combination with systemd used sd_get_sessions (3) to aquire the number of users, probably with the idea that every users opens a session. Turns out, that a user can have multiple sessions and we only really want to know how many users there are. This commit changes to sd_get_uids (3) to achieve that target. | |||||
2025-08-04 | Merge pull request #2139 from waja/ci_fix_rawhide | waja | 1 | -0/+3 | |
2025-08-01 | (Re)construct PLATFORM_ID as it's droped since Fedora 43 | Jan Wagner | 1 | -0/+3 | |
See https://fedoraproject.org/wiki/Changes/Drop_PLATFORM_ID?#Drop_PLATFORM_ID | |||||
2025-08-01 | Merge pull request #2138 from RincewindsHat/improvements/check_ssh | Lorenz Kästle | 1 | -34/+47 | |
Improvements/check ssh | |||||
2025-08-01 | clang-format | Lorenz Kästle | 1 | -29/+43 | |
2025-08-01 | check_ssh: Put variable in the correct scope | Lorenz Kästle | 1 | -2/+1 | |
2025-08-01 | check_ssh: Fix format expression | Lorenz Kästle | 1 | -1/+1 | |
2025-08-01 | check_ssh: fix data type to allow for error checking | Lorenz Kästle | 1 | -2/+2 | |
2025-08-01 | Quick save | Lorenz Kästle | 2 | -25/+29 | |
2025-08-01 | General smal improvements to the lib logic | Lorenz Kästle | 2 | -9/+11 | |
2025-08-01 | Merge pull request #2133 from rlaager/fix-check_ssh-buffer-overflow | Lorenz Kästle | 1 | -4/+6 | |
Fix check ssh buffer overflow | |||||
2025-07-24 | Merge pull request #2137 from waja/ci_dispatch_ssh | waja | 2 | -2/+26 | |
Adding tmate optional to manual dispatch | |||||
2025-07-24 | Adding tmate optional to manual dispatch | Jan Wagner | 2 | -2/+26 | |
2025-07-23 | Merge pull request #2136 from waja/ci_dispatch | waja | 3 | -0/+3 | |
2025-07-23 | CI: Adding workflow_dispatch | Jan Wagner | 3 | -0/+3 | |
2025-07-14 | check_curl: various small improvements | Lorenz Kästle | 2 | -72/+74 | |