diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2026-06-08 08:23:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-08 08:23:44 +0200 |
| commit | 9bbc76483888c9e2ef2f4ed281c0ab8f2aab7bb6 (patch) | |
| tree | c9f72dda47e082e9e2ce74377035b48c77415064 /plugins/check_apt.c | |
| parent | 992a4555ac975285f959dd2d3228b1d71ab23123 (diff) | |
| download | monitoring-plugins-9bbc76483888c9e2ef2f4ed281c0ab8f2aab7bb6.tar.gz | |
Ok summary (#2270)
* lib: implement functionality to set ok summary
* check_load: implement setting ok summary
* OK summary for ntp_peer, ntp_time and users
* check_apt: implement ok summary
* check_curl: implement ok summary
* check_disk: implement ok summary
* check_dbi: implement ok summary
* check_ldap: auto formatting
* check_ldap: implement ok summary
* check_ssh: implement ok summary
* check_tcp: implement ok summary
* fixup! check_curl: implement ok summary
* fixup! check_dbi: implement ok summary
* fixup! check_ldap: implement ok summary
* fixup! check_ssh: implement ok summary
* fixup! check_tcp: implement ok summary
* check_apt: remove illegal free
* check_mrtg: fix link
* check_mrtg: implement ok summary
* check_mrtgtraf: fix link
* check_mrtgtraf: implement ok summary
* check_mysql: implement ok summary
* check_mysql_query: implement ok summary
* check_pgsql: implement ok summary
* check_radius: implement ok summary
* check_real: implement ok summary
* check_smtp: implement ok summary
* check_snmp: implement ok summary
* check_swap: implement ok summary
* check_ups: add OK summary
---------
Co-authored-by: Lorenz Kästle <lorenz.kaestle@netways.de>
Diffstat (limited to 'plugins/check_apt.c')
| -rw-r--r-- | plugins/check_apt.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/check_apt.c b/plugins/check_apt.c index 9ed5b6cf..345b8414 100644 --- a/plugins/check_apt.c +++ b/plugins/check_apt.c | |||
| @@ -204,6 +204,15 @@ int main(int argc, char **argv) { | |||
| 204 | mp_add_subcheck_to_check(&overall, sc_security_updates); | 204 | mp_add_subcheck_to_check(&overall, sc_security_updates); |
| 205 | mp_add_subcheck_to_check(&overall, sc_other_updates); | 205 | mp_add_subcheck_to_check(&overall, sc_other_updates); |
| 206 | 206 | ||
| 207 | char *ok_summary = NULL; | ||
| 208 | |||
| 209 | if (packages_available == 0) { | ||
| 210 | ok_summary = "No pending updates"; | ||
| 211 | } else { | ||
| 212 | xasprintf(&ok_summary, "%zu pending updates", packages_available); | ||
| 213 | } | ||
| 214 | mp_set_ok_summary(&overall, ok_summary); | ||
| 215 | |||
| 207 | mp_exit(overall); | 216 | mp_exit(overall); |
| 208 | } | 217 | } |
| 209 | 218 | ||
