mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-19 02:27:55 -05:00
59 lines
1,008 B
C
59 lines
1,008 B
C
#pragma once
|
|
|
|
#include "../../config.h"
|
|
#include "output.h"
|
|
#include "thresholds.h"
|
|
#include <stddef.h>
|
|
#include <mysql.h>
|
|
|
|
typedef struct {
|
|
char *db_host;
|
|
unsigned int db_port;
|
|
char *db_user;
|
|
char *db_socket;
|
|
char *db_pass;
|
|
char *db;
|
|
char *ca_cert;
|
|
char *ca_dir;
|
|
char *cert;
|
|
char *key;
|
|
char *ciphers;
|
|
bool ssl;
|
|
char *opt_file;
|
|
char *opt_group;
|
|
|
|
bool check_replica;
|
|
bool ignore_auth;
|
|
|
|
mp_thresholds replica_thresholds;
|
|
|
|
bool output_format_is_set;
|
|
mp_output_format output_format;
|
|
} check_mysql_config;
|
|
|
|
check_mysql_config check_mysql_config_init() {
|
|
check_mysql_config tmp = {
|
|
.db_host = NULL,
|
|
.db_port = MYSQL_PORT,
|
|
.db = NULL,
|
|
.db_pass = NULL,
|
|
.db_socket = NULL,
|
|
.db_user = NULL,
|
|
.ca_cert = NULL,
|
|
.ca_dir = NULL,
|
|
.cert = NULL,
|
|
.key = NULL,
|
|
.ciphers = NULL,
|
|
.ssl = false,
|
|
.opt_file = NULL,
|
|
.opt_group = NULL,
|
|
|
|
.check_replica = false,
|
|
.ignore_auth = false,
|
|
|
|
.replica_thresholds = mp_thresholds_init(),
|
|
|
|
.output_format_is_set = false,
|
|
};
|
|
return tmp;
|
|
}
|