4
The :program:`protocol_dictionary` plugin provides the
5
DATA_DICTIONARY.PROTOCOL_COUNTERS table.
7
.. _protocol_dictionary_loading:
12
This plugin is loaded by default.
13
To stop the plugin from loading by default, start :program:`drizzled`
16
--plugin-remove=protocol_dictionary
18
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
20
.. _protocol_dictionary_examples:
27
drizzle> SELECT * FROM DATA_DICTIONARY.PROTOCOL_COUNTERS;
28
+----------------------------+--------------------+-------+
29
| PROTOCOL | COUNTER | VALUE |
30
+----------------------------+--------------------+-------+
31
| drizzle_protocol | connection_count | 2 |
32
| drizzle_protocol | connected | 1 |
33
| drizzle_protocol | failed_connections | 0 |
34
| mysql_protocol | connection_count | 0 |
35
| mysql_protocol | connected | 0 |
36
| mysql_protocol | failed_connections | 0 |
37
| mysql_unix_socket_protocol | connection_count | 0 |
38
| mysql_unix_socket_protocol | connected | 0 |
39
| mysql_unix_socket_protocol | failed_connections | 0 |
40
+----------------------------+--------------------+-------+
42
.. _protocol_dictionary_authors:
49
.. _protocol_dictionary_version:
54
This documentation applies to **protocol_dictionary 1.0**.
56
To see which version of the plugin a Drizzle server is running, execute:
60
SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='protocol_dictionary'