From 7dc3bed81e28b855f98ba2cfde4dd00e8586f6fb 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 23:55:46 +0200 Subject: [PATCH] check_pgsql: implement ok summary --- plugins/check_pgsql.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 8cbaaeeb..9e6b0f41 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c @@ -214,6 +214,8 @@ int main(int argc, char **argv) { mp_check overall = mp_check_init(); + mp_set_ok_summary(&overall, "Postgres check is OK"); + mp_subcheck sc_connection = mp_subcheck_init(); if (PQstatus(conn) == CONNECTION_BAD) {