diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-11 13:44:55 +0100 |
|---|---|---|
| committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-11 13:58:56 +0100 |
| commit | 013b4d64899c22532f9578b4d64fa3b646e4a0c4 (patch) | |
| tree | 0eb3482b29b9168e22390f44943b0dcdfb6918d4 /plugins/check_mysql_query.d | |
| parent | e227016ac79a715301cac7eb41df7c752c882332 (diff) | |
| download | monitoring-plugins-013b4d64899c22532f9578b4d64fa3b646e4a0c4.tar.gz | |
Refactor check_mysql_query
Diffstat (limited to 'plugins/check_mysql_query.d')
| -rw-r--r-- | plugins/check_mysql_query.d/config.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/check_mysql_query.d/config.h b/plugins/check_mysql_query.d/config.h new file mode 100644 index 00000000..be019160 --- /dev/null +++ b/plugins/check_mysql_query.d/config.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "../../config.h" | ||
| 4 | #include "thresholds.h" | ||
| 5 | #include <mysql.h> | ||
| 6 | |||
| 7 | typedef struct { | ||
| 8 | char *db_host; | ||
| 9 | char *db_socket; | ||
| 10 | char *db; | ||
| 11 | char *db_user; | ||
| 12 | char *db_pass; | ||
| 13 | char *opt_file; | ||
| 14 | char *opt_group; | ||
| 15 | unsigned int db_port; | ||
| 16 | |||
| 17 | char *sql_query; | ||
| 18 | thresholds *my_thresholds; | ||
| 19 | } check_mysql_query_config; | ||
| 20 | |||
| 21 | check_mysql_query_config check_mysql_query_config_init() { | ||
| 22 | check_mysql_query_config tmp = { | ||
| 23 | .db_host = NULL, | ||
| 24 | .db_socket = NULL, | ||
| 25 | .db = NULL, | ||
| 26 | .db_user = NULL, | ||
| 27 | .db_pass = NULL, | ||
| 28 | .opt_file = NULL, | ||
| 29 | .opt_group = NULL, | ||
| 30 | .db_port = MYSQL_PORT, | ||
| 31 | |||
| 32 | .sql_query = NULL, | ||
| 33 | .my_thresholds = NULL, | ||
| 34 | }; | ||
| 35 | return tmp; | ||
| 36 | } | ||
