-
Notifications
You must be signed in to change notification settings - Fork 0
/
zbx_mod_mysql.c
313 lines (254 loc) · 9.52 KB
/
zbx_mod_mysql.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Copyright (C) 2018 Tomasz Kłoczko <[email protected]>
*/
#include <stdarg.h>
#include <time.h>
#include <common.h>
#include <log.h>
#include <module.h>
#include <mysql.h>
/* the variable keeps timeout setting for item processing */
static int item_timeout = 0;
static int zbx_mod_mysql_db_discovery (AGENT_REQUEST * request,
AGENT_RESULT * result);
static int zbx_mod_mysql_global_status (AGENT_REQUEST * request,
AGENT_RESULT * result);
static int zbx_mod_mysql_global_variable (AGENT_REQUEST * request,
AGENT_RESULT * result);
static int zbx_mod_mysql_performance_schema (AGENT_REQUEST * request,
AGENT_RESULT * result);
static ZBX_METRIC keys[] =
/* KEY, FLAG, FUNCTION, TEST PARAMETERS */
{
{"mysql.db.discovery", 0, zbx_mod_mysql_db_discovery, NULL},
{"mysql.global_status", CF_HAVEPARAMS, zbx_mod_mysql_global_status, ""},
{"mysql.global_variable", CF_HAVEPARAMS,
zbx_mod_mysql_global_variable, ""},
{"mysql.performance_schema", CF_HAVEPARAMS,
zbx_mod_mysql_performance_schema, ""},
{NULL}
};
/* zbx_mod_mysql is written to interract onl;y with one database */
typedef struct {
MYSQL *connection;
char *server;
char *account;
char *password;
unsigned short port;
} ZBX_MOD_MYSQL_INFO;
ZBX_MOD_MYSQL_INFO zbx_mod_mysql_info = {
NULL,
"localhost",
"monitoring",
"monitoring",
3306
};
/* Other internal routines */
int zbx_mod_myslq_connect_db ();
void zbx_mod_mysql_close_db ();
/******************************************************************************
Zabbix items backend routines
******************************************************************************\
/******************************************************************************
Function: zbx_mod_mysql_db_discovery
Purpose:
Return value: SYSINFO_RET_FAIL - function failed, item will be marked
as not supported by zabbix
SYSINFO_RET_OK - success
*******************************************************************************/
static int zbx_mod_mysql_db_discovery (AGENT_REQUEST * request,
AGENT_RESULT * result)
{
return SYSINFO_RET_OK;
}
/******************************************************************************
Function: zbx_mod_mysql_global_status
Purpose:
Return value: SYSINFO_RET_FAIL - function failed, item will be marked
as not supported by zabbix
SYSINFO_RET_OK - success
*******************************************************************************/
static int zbx_mod_mysql_global_status (AGENT_REQUEST * request,
AGENT_RESULT * result)
{
char *param;
if (1 != request->nparam) {
/* set optional error message */
SET_MSG_RESULT (result,
strdup ("Invalid number of parameters"));
return SYSINFO_RET_FAIL;
}
param = get_rparam (request, 0);
SET_STR_RESULT (result, strdup (param));
return SYSINFO_RET_OK;
}
/******************************************************************************
Function: zbx_mod_mysql_global_variable
Purpose:
Return value: SYSINFO_RET_FAIL - function failed, item will be marked
as not supported by zabbix
SYSINFO_RET_OK - success
*******************************************************************************/
static int zbx_mod_mysql_global_variable (AGENT_REQUEST * request,
AGENT_RESULT * result)
{
char *param;
if (1 != request->nparam) {
/* set optional error message */
SET_MSG_RESULT (result,
strdup ("Invalid number of parameters"));
return SYSINFO_RET_FAIL;
}
param = get_rparam (request, 0);
SET_STR_RESULT (result, strdup (param));
return SYSINFO_RET_OK;
}
/******************************************************************************
Function: zbx_mod_mysql_performance_schema
Purpose:
Return value: SYSINFO_RET_FAIL - function failed, item will be marked
as not supported by zabbix
SYSINFO_RET_OK - success
*******************************************************************************/
static int zbx_mod_mysql_performance_schema (AGENT_REQUEST * request,
AGENT_RESULT * result)
{
char *param;
if (1 != request->nparam) {
/* set optional error message */
SET_MSG_RESULT (result,
strdup ("Invalid number of parameters"));
return SYSINFO_RET_FAIL;
}
param = get_rparam (request, 0);
SET_STR_RESULT (result, strdup (param));
return SYSINFO_RET_OK;
}
/******************************************************************************
Other internal routines
******************************************************************************\
/******************************************************************************
Function: zbx_mod_myslq_connect_db
Purpose: Check whether the connection is permanently open and if not try
to open it. If it fails return with error
Return value: SYSINFO_RET_FAIL - function failed, item will be marked
as not supported by zabbix
SYSINFO_RET_OK - success
*******************************************************************************/
int zbx_mod_myslq_connect_db ()
{
if (zbx_mod_mysql_info.connection == NULL) {
zbx_mod_mysql_info.connection = mysql_init (NULL);
if (mysql_real_connect (zbx_mod_mysql_info.connection,
zbx_mod_mysql_info.server,
zbx_mod_mysql_info.account,
zbx_mod_mysql_info.password,
NULL, zbx_mod_mysql_info.port, NULL, 0)
) {
zabbix_log (LOG_LEVEL_DEBUG,
"[zbx_mod_mysql]: zbx_mod_mysql_init_db(): "
"A persistent connection established");
return SYSINFO_RET_OK;
} else {
zabbix_log (LOG_LEVEL_ERR,
"[zbx_mod_mysql]: mysql_real_connect() error: %s",
mysql_error
(zbx_mod_mysql_info.connection));
zbx_mod_mysql_close_db ();
return SYSINFO_RET_FAIL;
}
} else {
return SYSINFO_RET_OK;
}
}
/******************************************************************************
Function: zbx_mod_mysql_close_db
Purpose: Disconnect database and set zbx_mod_mysql_info.connection
to NULL
Return value: Nothing
*******************************************************************************/
void zbx_mod_mysql_close_db ()
{
if (zbx_mod_mysql_info.connection) {
/* disconnect database */
mysql_close (zbx_mod_mysql_info.connection);
zbx_mod_mysql_info.connection = NULL;
}
}
/******************************************************************************
Zabbix loadable module standard ABI routines
******************************************************************************\
/******************************************************************************
Function: zbx_module_api_version
Purpose: returns version number of the module interface
Return value: ZBX_MODULE_API_VERSION - version of module.h module is
compiled with, in order to load module successfully Zabbix
MUST be compiled with the same version of this header file
*******************************************************************************/
int zbx_module_api_version (void)
{
return ZBX_MODULE_API_VERSION;
}
/******************************************************************************
Function: zbx_module_item_timeout
Purpose: set timeout value for processing of items
Parameters: timeout - timeout in seconds, 0 - no timeout set
*******************************************************************************/
void zbx_module_item_timeout (int timeout)
{
item_timeout = timeout;
}
/******************************************************************************
Function: zbx_module_item_list
Purpose: returns list of item keys supported by the module
Return value: list of item keys
*******************************************************************************/
ZBX_METRIC *zbx_module_item_list (void)
{
return keys;
}
/******************************************************************************
Function: zbx_module_init
Purpose: The function is called on agent startup.
It opens persistent database conectivity and reports to the agent
logs MySQl client library and server version.
Return value: ZBX_MODULE_OK - success
ZBX_MODULE_FAIL - module initialization failed
Comment: the module won't be loaded in case of ZBX_MODULE_FAIL
*******************************************************************************/
int zbx_module_init (void)
{
if (zbx_mod_myslq_connect_db () == SYSINFO_RET_OK) {
zabbix_log (LOG_LEVEL_INFORMATION,
"[zbx_mod_mysql]: client library version : %s",
mysql_get_client_info ());
zabbix_log (LOG_LEVEL_INFORMATION,
"[zbx_mod_mysql]: server version : %s",
mysql_get_server_info
(zbx_mod_mysql_info.connection));
}
return ZBX_MODULE_OK;
}
/******************************************************************************
Function: zbx_module_uninit
Purpose: the function is called on agent shutdown
It should be used to cleanup used resources if there are any
Return value: ZBX_MODULE_OK - success
ZBX_MODULE_FAIL - function failed
*******************************************************************************/
int zbx_module_uninit (void)
{
zbx_mod_mysql_close_db ();
return ZBX_MODULE_OK;
}