forked from axoflow/axosyslog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4362 from MrAnno/healthcheck
syslog-ng health metrics and `syslog-ng-ctl healthcheck`
- Loading branch information
Showing
36 changed files
with
879 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
set(HEALTHCHECK_HEADERS | ||
healthcheck/healthcheck.h | ||
healthcheck/healthcheck-control.h | ||
healthcheck/healthcheck-stats.h | ||
healthcheck/stopwatch.h | ||
PARENT_SCOPE) | ||
|
||
set(HEALTHCHECK_SOURCES | ||
healthcheck/healthcheck.c | ||
healthcheck/healthcheck-control.c | ||
healthcheck/healthcheck-stats.c | ||
PARENT_SCOPE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
healthcheckincludedir = ${pkgincludedir}/healthcheck | ||
|
||
EXTRA_DIST += \ | ||
lib/healthcheck/CMakeLists.txt | ||
|
||
healthcheckinclude_HEADERS = \ | ||
lib/healthcheck/healthcheck.h \ | ||
lib/healthcheck/healthcheck-control.h \ | ||
lib/healthcheck/healthcheck-stats.h \ | ||
lib/healthcheck/stopwatch.h | ||
|
||
healthcheck_sources = \ | ||
lib/healthcheck/healthcheck.c \ | ||
lib/healthcheck/healthcheck-control.c \ | ||
lib/healthcheck/healthcheck-stats.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* Copyright (c) 2023 László Várady <[email protected]> | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
* As an additional exemption you are allowed to compile & link against the | ||
* OpenSSL libraries as published by the OpenSSL project. See the file | ||
* COPYING for details. | ||
* | ||
*/ | ||
|
||
#include "healthcheck-control.h" | ||
#include "healthcheck.h" | ||
|
||
#include "control/control.h" | ||
#include "control/control-connection.h" | ||
#include "control/control-commands.h" | ||
#include "stats/stats-prometheus.h" | ||
|
||
static void | ||
_send_healthcheck_reply(HealthCheckResult result, gpointer c) | ||
{ | ||
ControlConnection *cc = (ControlConnection *) c; | ||
gchar double_buf[G_ASCII_DTOSTR_BUF_SIZE]; | ||
|
||
gdouble io_worker_latency = result.io_worker_latency / 1e9; | ||
gdouble mainloop_io_worker_roundtrip_latency = result.mainloop_io_worker_roundtrip_latency / 1e9; | ||
|
||
GString *reply = g_string_new("OK "); | ||
g_string_append_printf(reply, PROMETHEUS_METRIC_PREFIX | ||
"io_worker_latency_seconds %s\n", | ||
g_ascii_dtostr(double_buf, G_N_ELEMENTS(double_buf), io_worker_latency)); | ||
g_string_append_printf(reply, PROMETHEUS_METRIC_PREFIX | ||
"mainloop_io_worker_roundtrip_latency_seconds %s\n", | ||
g_ascii_dtostr(double_buf, G_N_ELEMENTS(double_buf), mainloop_io_worker_roundtrip_latency)); | ||
|
||
|
||
control_connection_send_reply(cc, reply); | ||
control_connection_unref(cc); | ||
} | ||
|
||
static void | ||
control_connection_healthcheck(ControlConnection *cc, GString *command, gpointer user_data, gboolean *cancelled) | ||
{ | ||
HealthCheck *hc = healthcheck_new(); | ||
|
||
if (!healthcheck_run(hc, _send_healthcheck_reply, control_connection_ref(cc))) | ||
{ | ||
GString *reply = g_string_new("FAIL Another healthcheck command is already running"); | ||
control_connection_send_reply(cc, reply); | ||
control_connection_unref(cc); | ||
} | ||
|
||
healthcheck_unref(hc); | ||
} | ||
|
||
void | ||
healthcheck_register_control_commands(void) | ||
{ | ||
control_register_command("HEALTHCHECK", control_connection_healthcheck, NULL, FALSE); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (c) 2023 László Várady <[email protected]> | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
* As an additional exemption you are allowed to compile & link against the | ||
* OpenSSL libraries as published by the OpenSSL project. See the file | ||
* COPYING for details. | ||
* | ||
*/ | ||
|
||
#ifndef HEALTHCHECK_CONTROL_H | ||
#define HEALTHCHECK_CONTROL_H | ||
|
||
#include "syslog-ng.h" | ||
|
||
void healthcheck_register_control_commands(void); | ||
|
||
#endif |
Oops, something went wrong.