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
|
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Copyright (C) 2008 Sun Microsystems, Inc.
* Copyright (C) 2010 Joseph Daly
*
* 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; version 2 of the License.
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef DRIZZLED_STATISTICS_VARIABLES_H
#define DRIZZLED_STATISTICS_VARIABLES_H
namespace drizzled
{
extern struct global_counters current_global_counters;
/*
* These statistics are global and are not per session
* they are not reset once initialized.
*/
typedef struct global_counters
{
uint64_t max_used_connections;
uint64_t connections;
uint64_t locks_immediate;
uint64_t locks_waited;
} global_counters;
/*
* These statistics are per session and are reset at the end
* of each session, after being copied into a global
* system_status_var
*/
typedef struct system_status_var
{
uint64_t aborted_connects;
uint64_t aborted_threads;
uint64_t access_denied;
uint64_t bytes_received;
uint64_t bytes_sent;
uint64_t com_other;
uint64_t created_tmp_disk_tables;
uint64_t created_tmp_tables;
uint64_t ha_commit_count;
uint64_t ha_delete_count;
uint64_t ha_read_first_count;
uint64_t ha_read_last_count;
uint64_t ha_read_key_count;
uint64_t ha_read_next_count;
uint64_t ha_read_prev_count;
uint64_t ha_read_rnd_count;
uint64_t ha_read_rnd_next_count;
uint64_t ha_rollback_count;
uint64_t ha_update_count;
uint64_t ha_write_count;
uint64_t ha_prepare_count;
uint64_t ha_savepoint_count;
uint64_t ha_savepoint_rollback_count;
uint64_t select_full_join_count;
uint64_t select_full_range_join_count;
uint64_t select_range_count;
uint64_t select_range_check_count;
uint64_t select_scan_count;
uint64_t long_query_count;
uint64_t filesort_merge_passes;
uint64_t filesort_range_count;
uint64_t filesort_rows;
uint64_t filesort_scan_count;
uint64_t connection_time;
uint64_t execution_time_nsec;
uint64_t updated_row_count;
uint64_t deleted_row_count;
uint64_t inserted_row_count;
/*
Number of statements sent from the client
*/
uint64_t questions;
/*
IMPORTANT!
SEE last_system_status_var DEFINITION BELOW.
Below 'last_system_status_var' are all variables which doesn't make any
sense to add to the /global/ status variable counter.
*/
double last_query_cost;
} system_status_var;
#define last_system_status_var questions
} /* namespace drizzled */
#endif /* DRIZZLED_STATISTICS_VARIABLES_H */
|