~ignacio-nin/percona-server/release-5.5.24-26.0-bug1003776

« back to all changes in this revision

Viewing changes to doc/source/diagnostics/user_stats.rst

  • Committer: Stewart Smith
  • Date: 2012-05-22 01:17:21 UTC
  • mfrom: (248.1.2 i21770)
  • Revision ID: stewart@flamingspork.com-20120522011721-v4sik8i20chb3frz
merge docs updates, including ssl connection statistics

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
  * :rn:`5.5.10-20.1`:
16
16
     Renamed variable :variable:`userstat_running` to :variable:`userstat`.
 
17
  * :rn:`5.5.24-26.0`:
 
18
     TOTAL_CONNECTIONS_SSL column has been added to CLIENT_STATISTICS, THREAD_STATISTICS and USER_STATISTICS tables 
17
19
 
18
20
Other Information
19
21
=================
64
66
  :column LOST_CONNECTIONS: The number of this client's connections that were terminated uncleanly.
65
67
  :column ACCESS_DENIED: The number of times this client's connections issued commands that were denied.
66
68
  :column EMPTY_QUERIES: The number of times this client's connections sent empty queries to the server.
 
69
  :column TOTAL_CONNECTIONS_SSL: The number of times this client's connections connected using SSL to the server.
 
70
 
67
71
 
68
72
This table holds statistics about client connections. The Percona version of the feature restricts this table's visibility to users who have the ``SUPER`` or ``PROCESS`` privilege.
69
73
 
92
96
        LOST_CONNECTIONS: 0
93
97
           ACCESS_DENIED: 0
94
98
           EMPTY_QUERIES: 0
 
99
   TOTAL_CONNECTIONS_SSL: 0
95
100
 
96
101
 
97
102
.. table:: INFORMATION_SCHEMA.INDEX_STATISTICS
161
166
  :column LOST_CONNECTIONS: int(21)
162
167
  :column ACCESS_DENIED: int(21)
163
168
  :column EMPTY_QUERIES: int(21)
 
169
  :column TOTAL_CONNECTIONS_SSL: int(21)
164
170
 
165
171
.. table:: INFORMATION_SCHEMA.USER_STATISTICS
166
172
 
185
191
  :column LOST_CONNECTIONS: The number of this user's connections that were terminated uncleanly.
186
192
  :column ACCESS_DENIED: The number of times this user's connections issued commands that were denied.
187
193
  :column EMPTY_QUERIES: The number of times this user's connections sent empty queries to the server.
 
194
  :column TOTAL_CONNECTIONS_SSL: The number of times this user's connections connected using SSL to the server.
188
195
 
189
196
This table contains information about user activity. The |Percona| version of the patch restricts this table's visibility to users who have the ``SUPER`` or ``PROCESS`` privilege.
190
197
 
215
222
        LOST_CONNECTIONS: 0
216
223
           ACCESS_DENIED: 0
217
224
           EMPTY_QUERIES: 0
 
225
   TOTAL_CONNECTIONS_SSL: 0
 
226
 
218
227
 
219
228
Commands Provided
220
229
=================