~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statistics_variables.h

  • Committer: Joe Daly
  • Date: 2010-06-25 03:22:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1656.
  • Revision ID: skinny.moey@gmail.com-20100625032255-bzj84xre67qldfpi
initial user stats impl

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 */
33
33
typedef struct global_counters
34
34
{
35
 
  uint64_t aborted_threads;
36
 
  uint64_t aborted_connects;
37
35
  uint64_t max_used_connections;
38
36
  uint64_t locks_immediate;
39
37
  uint64_t locks_waited;
46
44
 */
47
45
typedef struct system_status_var
48
46
{
 
47
  uint64_t aborted_connects;
 
48
  uint64_t aborted_threads;
 
49
  uint64_t access_denied;
49
50
  uint64_t bytes_received;
50
51
  uint64_t bytes_sent;
51
52
  uint64_t com_other;
86
87
  uint64_t filesort_range_count;
87
88
  uint64_t filesort_rows;
88
89
  uint64_t filesort_scan_count;
 
90
  uint64_t connection_time;
 
91
  uint64_t execution_time_nsec;
89
92
  /*
90
93
    Number of statements sent from the client
91
94
  */