summaryrefslogtreecommitdiffstats
path: root/plugins/check_mysql_query.d
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-03-11 15:02:51 +0100
committerGitHub <noreply@github.com>2025-03-11 15:02:51 +0100
commitf22756ba44fd258f486c88fa32dd0bcc954bf09d (patch)
tree0eb3482b29b9168e22390f44943b0dcdfb6918d4 /plugins/check_mysql_query.d
parent1ea66e0ae934d0c465d0f963c87667d080a63be9 (diff)
parent013b4d64899c22532f9578b4d64fa3b646e4a0c4 (diff)
downloadmonitoring-plugins-f22756ba44fd258f486c88fa32dd0bcc954bf09d.tar.gz
Merge pull request #2091 from RincewindsHat/refactor/check_mysql_query
Refactor/check mysql query
Diffstat (limited to 'plugins/check_mysql_query.d')
-rw-r--r--plugins/check_mysql_query.d/config.h36
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
7typedef 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
21check_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}