41
41
#define ESCAPE_CHAR '\\'
42
42
#define SEPARATOR_CHAR ','
44
namespace drizzle_plugin
47
44
static bool sysvar_logging_query_enable= false;
45
static char* sysvar_logging_query_filename= NULL;
46
static char* sysvar_logging_query_pcre= NULL;
48
47
/* TODO fix these to not be unsigned long once we have sensible sys_var system */
49
static uint32_constraint sysvar_logging_query_threshold_slow;
50
static uint32_constraint sysvar_logging_query_threshold_big_resultset;
51
static uint32_constraint sysvar_logging_query_threshold_big_examined;
48
static unsigned long sysvar_logging_query_threshold_slow= 0;
49
static unsigned long sysvar_logging_query_threshold_big_resultset= 0;
50
static unsigned long sysvar_logging_query_threshold_big_examined= 0;
53
52
/* quote a string to be safe to include in a CSV line
54
53
that means backslash quoting all commas, doublequotes, backslashes,
157
Logging_query(const std::string &filename,
158
const std::string &query_pcre) :
159
drizzled::plugin::Logging("Logging_query"),
161
_query_pcre(query_pcre),
162
fd(-1), re(NULL), pe(NULL),
163
formatter("%1%,%2%,%3%,\"%4%\",\"%5%\",\"%6%\",%7%,%8%,"
164
"%9%,%10%,%11%,%12%,%13%,%14%,\"%15%\"\n")
155
: drizzled::plugin::Logging("Logging_query"),
156
fd(-1), re(NULL), pe(NULL),
157
formatter("%1%,%2%,%3%,\"%4%\",\"%5%\",\"%6%\",%7%,%8%,"
158
"%9%,%10%,%11%,%12%,%13%,%14%,\"%15%\"\n")
167
161
/* if there is no destination filename, dont bother doing anything */
168
if (_filename.empty())
162
if (sysvar_logging_query_filename == NULL)
171
fd= open(_filename.c_str(),
165
fd= open(sysvar_logging_query_filename,
172
166
O_WRONLY | O_APPEND | O_CREAT,
173
167
S_IRUSR|S_IWUSR);
177
sql_perror( _("fail open()"), _filename);
170
char errmsg[STRERROR_MAX];
171
strerror_r(errno, errmsg, sizeof(errmsg));
172
errmsg_printf(ERRMSG_LVL_ERROR, _("fail open() fn=%s er=%s\n"),
173
sysvar_logging_query_filename,
181
if (not _query_pcre.empty())
178
if (sysvar_logging_query_pcre != NULL)
183
180
const char *this_pcre_error;
184
181
int this_pcre_erroffset;
185
re= pcre_compile(_query_pcre.c_str(), 0, &this_pcre_error,
182
re= pcre_compile(sysvar_logging_query_pcre, 0, &this_pcre_error,
186
183
&this_pcre_erroffset, NULL);
187
184
pe= pcre_study(re, 0, &this_pcre_error);
188
185
/* TODO emit error messages if there is a problem */
226
223
// return if not enabled or query was too fast or resultset was too small
227
224
if (sysvar_logging_query_enable == false)
229
if (session->sent_row_count < sysvar_logging_query_threshold_big_resultset.get())
231
if (session->examined_row_count < sysvar_logging_query_threshold_big_examined.get())
235
TODO, the session object should have a "utime command completed"
236
inside itself, so be more accurate, and so this doesnt have to
237
keep calling current_utime, which can be slow.
239
uint64_t t_mark= session->getCurrentTimestamp(false);
241
if (session->getElapsedTime() < (sysvar_logging_query_threshold_slow.get()))
226
if (session->sent_row_count < sysvar_logging_query_threshold_big_resultset)
228
if (session->examined_row_count < sysvar_logging_query_threshold_big_examined)
231
/* TODO, the session object should have a "utime command completed"
232
inside itself, so be more accurate, and so this doesnt have to
233
keep calling current_utime, which can be slow */
235
boost::posix_time::ptime mytime(boost::posix_time::microsec_clock::local_time());
236
boost::posix_time::ptime epoch(boost::gregorian::date(1970,1,1));
237
uint64_t t_mark= (mytime-epoch).total_microseconds();
239
if ((t_mark - session->start_utime) < (sysvar_logging_query_threshold_slow))
244
242
Session::QueryString query_string(session->getQueryString());
260
258
quotify(*query_string, qs);
262
260
// to avoid trying to printf %s something that is potentially NULL
263
util::string::const_shared_ptr schema(session->schema());
264
const char *dbs= (schema and not schema->empty()) ? schema->c_str() : "";
261
const char *dbs= session->db.empty() ? "" : session->db.c_str();
266
263
formatter % t_mark
267
264
% session->thread_id
268
265
% session->getQueryId()
271
% getCommandName(session->command)
268
% command_name[session->command].str
272
269
% (t_mark - session->getConnectMicroseconds())
273
% session->getElapsedTime()
270
% (t_mark - session->start_utime)
274
271
% (t_mark - session->utime_after_lock)
275
272
% session->sent_row_count
276
273
% session->examined_row_count
289
static Logging_query *handler= NULL;
292
291
static int logging_query_plugin_init(drizzled::module::Context &context)
295
294
const module::option_map &vm= context.getOptions();
297
if (vm.count("filename") > 0)
299
context.add(new Logging_query(vm["filename"].as<string>(),
300
vm["pcre"].as<string>()));
301
context.registerVariable(new sys_var_bool_ptr("enable", &sysvar_logging_query_enable));
302
context.registerVariable(new sys_var_const_string_val("filename", vm["filename"].as<string>()));
303
context.registerVariable(new sys_var_const_string_val("pcre", vm["pcre"].as<string>()));
304
context.registerVariable(new sys_var_constrained_value<uint32_t>("threshold_slow", sysvar_logging_query_threshold_slow));
305
context.registerVariable(new sys_var_constrained_value<uint32_t>("threshold_big_resultset", sysvar_logging_query_threshold_big_resultset));
306
context.registerVariable(new sys_var_constrained_value<uint32_t>("threshold_big_examined", sysvar_logging_query_threshold_big_examined));
295
if (vm.count("threshold-slow"))
297
if (sysvar_logging_query_threshold_slow > UINT32_MAX)
299
errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for threshold-slow"));
304
if (vm.count("threshold-big-resultset"))
306
if (sysvar_logging_query_threshold_big_resultset > UINT32_MAX)
308
errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for threshold-big-resultset"));
313
if (vm.count("threshold-big-examined"))
315
if (sysvar_logging_query_threshold_big_examined > UINT32_MAX)
317
errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for threshold-big-examined"));
321
handler= new Logging_query();
322
context.add(handler);
314
329
context("enable",
315
330
po::value<bool>(&sysvar_logging_query_enable)->default_value(false)->zero_tokens(),
316
_("Enable logging to CSV file"));
319
_("File to log to"));
321
po::value<string>()->default_value(""),
322
_("PCRE to match the query against"));
331
N_("Enable logging to CSV file"));
323
332
context("threshold-slow",
324
po::value<uint32_constraint>(&sysvar_logging_query_threshold_slow)->default_value(0),
325
_("Threshold for logging slow queries, in microseconds"));
333
po::value<unsigned long>(&sysvar_logging_query_threshold_slow)->default_value(0),
334
N_("Threshold for logging slow queries, in microseconds"));
326
335
context("threshold-big-resultset",
327
po::value<uint32_constraint>(&sysvar_logging_query_threshold_big_resultset)->default_value(0),
328
_("Threshold for logging big queries, for rows returned"));
336
po::value<unsigned long>(&sysvar_logging_query_threshold_big_resultset)->default_value(0),
337
N_("Threshold for logging big queries, for rows returned"));
329
338
context("threshold-big-examined",
330
po::value<uint32_constraint>(&sysvar_logging_query_threshold_big_examined)->default_value(0),
331
_("Threshold for logging big queries, for rows examined"));
339
po::value<unsigned long>(&sysvar_logging_query_threshold_big_examined)->default_value(0),
340
N_("Threshold for logging big queries, for rows examined"));
334
} /* namespace drizzle_plugin */
343
static DRIZZLE_SYSVAR_BOOL(
345
sysvar_logging_query_enable,
347
N_("Enable logging to CSV file"),
348
NULL, /* check func */
349
NULL, /* update func */
350
false /* default */);
352
static DRIZZLE_SYSVAR_STR(
354
sysvar_logging_query_filename,
356
N_("File to log to"),
357
NULL, /* check func */
358
NULL, /* update func*/
361
static DRIZZLE_SYSVAR_STR(
363
sysvar_logging_query_pcre,
365
N_("PCRE to match the query against"),
366
NULL, /* check func */
367
NULL, /* update func*/
370
static DRIZZLE_SYSVAR_ULONG(
372
sysvar_logging_query_threshold_slow,
374
N_("Threshold for logging slow queries, in microseconds"),
375
NULL, /* check func */
376
NULL, /* update func */
379
UINT32_MAX, /* max */
382
static DRIZZLE_SYSVAR_ULONG(
383
threshold_big_resultset,
384
sysvar_logging_query_threshold_big_resultset,
386
N_("Threshold for logging big queries, for rows returned"),
387
NULL, /* check func */
388
NULL, /* update func */
391
UINT32_MAX, /* max */
394
static DRIZZLE_SYSVAR_ULONG(
395
threshold_big_examined,
396
sysvar_logging_query_threshold_big_examined,
398
N_("Threshold for logging big queries, for rows examined"),
399
NULL, /* check func */
400
NULL, /* update func */
403
UINT32_MAX, /* max */
406
static drizzle_sys_var* logging_query_system_variables[]= {
407
DRIZZLE_SYSVAR(enable),
408
DRIZZLE_SYSVAR(filename),
409
DRIZZLE_SYSVAR(pcre),
410
DRIZZLE_SYSVAR(threshold_slow),
411
DRIZZLE_SYSVAR(threshold_big_resultset),
412
DRIZZLE_SYSVAR(threshold_big_examined),
336
416
DRIZZLE_DECLARE_PLUGIN
341
421
"Mark Atwood <mark@fallenpegasus.com>",
342
422
N_("Log queries to a CSV file"),
343
423
PLUGIN_LICENSE_GPL,
344
drizzle_plugin::logging_query_plugin_init,
346
drizzle_plugin::init_options
424
logging_query_plugin_init,
425
logging_query_system_variables,
348
428
DRIZZLE_DECLARE_PLUGIN_END;