~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to docs/plugins/protocol_dictionary/index.rst

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. _protocol_dictionary_plugin:
 
2
 
 
3
Protocol Dictionary
 
4
===================
 
5
 
 
6
The :program:`protocol_dictionary` plugin provides the
 
7
DATA_DICTIONARY.PROTOCOL_COUNTERS table.
 
8
 
 
9
.. _protocol_dictionary_loading:
 
10
 
 
11
Loading
 
12
-------
 
13
 
 
14
This plugin is loaded by default.
 
15
To stop the plugin from loading by default, start :program:`drizzled`
 
16
with::
 
17
 
 
18
   --plugin-remove=protocol_dictionary
 
19
 
 
20
.. seealso:: :ref:`drizzled_plugin_options` for more information about adding and removing plugins.
 
21
 
 
22
.. _protocol_dictionary_examples:
 
23
 
 
24
Examples
 
25
--------
 
26
 
 
27
.. code-block:: mysql
 
28
 
 
29
   drizzle> SELECT * FROM DATA_DICTIONARY.PROTOCOL_COUNTERS;
 
30
   +----------------------------+--------------------+-------+
 
31
   | PROTOCOL                   | COUNTER            | VALUE |
 
32
   +----------------------------+--------------------+-------+
 
33
   | drizzle_protocol           | connection_count   |     2 | 
 
34
   | drizzle_protocol           | connected          |     1 | 
 
35
   | drizzle_protocol           | failed_connections |     0 | 
 
36
   | mysql_protocol             | connection_count   |     0 | 
 
37
   | mysql_protocol             | connected          |     0 | 
 
38
   | mysql_protocol             | failed_connections |     0 | 
 
39
   | mysql_unix_socket_protocol | connection_count   |     0 | 
 
40
   | mysql_unix_socket_protocol | connected          |     0 | 
 
41
   | mysql_unix_socket_protocol | failed_connections |     0 | 
 
42
   +----------------------------+--------------------+-------+
 
43
 
 
44
.. _protocol_dictionary_authors:
 
45
 
 
46
Authors
 
47
-------
 
48
 
 
49
Andrew Hutchings
 
50
 
 
51
.. _protocol_dictionary_version:
 
52
 
 
53
Version
 
54
-------
 
55
 
 
56
This documentation applies to **protocol_dictionary 1.0**.
 
57
 
 
58
To see which version of the plugin a Drizzle server is running, execute:
 
59
 
 
60
.. code-block:: mysql
 
61
 
 
62
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='protocol_dictionary'
 
63
 
 
64
Changelog
 
65
---------
 
66
 
 
67
v1.0
 
68
^^^^
 
69
* First release.