~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/logging.cc

  • Committer: Monty Taylor
  • Date: 2010-12-03 19:56:07 UTC
  • mto: (1975.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1976.
  • Revision ID: mordred@inaugust.com-20101203195607-yw50aynlw04dt5k6
All protocol stuff except for the buffer_length. WTF?

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *  Copyright (C) 2010 Mark Atwood
6
6
 *
7
7
 *  This program is free software; you can redistribute it and/or modify
51
51
{
52
52
  if (_facility < 0)
53
53
  {
54
 
    drizzled::errmsg_printf(drizzled::error::WARN,
 
54
    drizzled::errmsg_printf(ERRMSG_LVL_WARN,
55
55
                            _("syslog facility \"%s\" not known, using \"local0\""),
56
56
                            facility.c_str());
57
57
    _facility= WrapSyslog::getFacilityByName("local0");
59
59
 
60
60
  if (_priority < 0)
61
61
  {
62
 
    drizzled::errmsg_printf(drizzled::error::WARN,
 
62
    drizzled::errmsg_printf(ERRMSG_LVL_WARN,
63
63
                            _("syslog priority \"%s\" not known, using \"info\""),
64
64
                            priority.c_str());
65
65
    _priority= WrapSyslog::getPriorityByName("info");
77
77
  if (session->examined_row_count < _threshold_big_examined)
78
78
    return false;
79
79
  
80
 
  /*
81
 
    TODO, the session object should have a "utime command completed"
82
 
    inside itself, so be more accurate, and so this doesnt have to
83
 
    keep calling current_utime, which can be slow.
84
 
  */
85
 
  uint64_t t_mark= session->getCurrentTimestamp(false);
 
80
  /* TODO, the session object should have a "utime command completed"
 
81
     inside itself, so be more accurate, and so this doesnt have to
 
82
     keep calling current_utime, which can be slow */
 
83
  
 
84
  boost::posix_time::ptime mytime(boost::posix_time::microsec_clock::local_time());
 
85
  boost::posix_time::ptime epoch(boost::gregorian::date(1970,1,1));
 
86
  uint64_t t_mark= (mytime-epoch).total_microseconds();
86
87
 
87
88
  // return if query was not too slow
88
 
  if (session->getElapsedTime() < _threshold_slow)
 
89
  if ((t_mark - session->start_utime) < _threshold_slow)
89
90
    return false;
90
91
  
91
92
  drizzled::Session::QueryString query_string(session->getQueryString());
92
 
  drizzled::util::string::const_shared_ptr schema(session->schema());
93
93
 
94
94
  WrapSyslog::singleton()
95
95
    .log(_facility, _priority,
102
102
         " tmp_table=%ld total_warn_count=%ld\n",
103
103
         (unsigned long) session->thread_id,
104
104
         (unsigned long) session->getQueryId(),
105
 
         (int) schema->size(),
106
 
         schema->empty() ? "" : schema->c_str(),
 
105
         (int) session->getSchema().length(),
 
106
         session->getSchema().empty() ? "" : session->getSchema().c_str(),
107
107
         (int) query_string->length(), 
108
108
         query_string->empty() ? "" : query_string->c_str(),
109
 
         (int) drizzled::getCommandName(session->command).size(),
110
 
         drizzled::getCommandName(session->command).c_str(),
 
109
         (int) drizzled::command_name[session->command].length,
 
110
         drizzled::command_name[session->command].str,
111
111
         (unsigned long long) (t_mark - session->getConnectMicroseconds()),
112
 
         (unsigned long long) (session->getElapsedTime()),
 
112
         (unsigned long long) (t_mark - session->start_utime),
113
113
         (unsigned long long) (t_mark - session->utime_after_lock),
114
114
         (unsigned long) session->sent_row_count,
115
115
         (unsigned long) session->examined_row_count,