From 21c0eefc78d1dfd2636b12e456fadfc9d350ab7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= <12514511+RincewindsHat@users.noreply.github.com> Date: Thu, 4 Jun 2026 22:37:38 +0200 Subject: [PATCH] check_dbi: implement ok summary --- plugins/check_dbi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/check_dbi.c b/plugins/check_dbi.c index dd466d00..6547cecc 100644 --- a/plugins/check_dbi.c +++ b/plugins/check_dbi.c @@ -220,6 +220,8 @@ int main(int argc, char **argv) { mp_check overall = mp_check_init(); + mp_set_ok_summary(&overall, "DBI check was succesful"); + mp_subcheck sc_connection_time = mp_subcheck_init(); sc_connection_time = mp_set_subcheck_default_state(sc_connection_time, STATE_OK); xasprintf(&sc_connection_time.output, "Connection time: %f", conn_time);