~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to plugin/performance_dictionary/docs/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
.. _performance_dictionary_plugin:
 
2
 
 
3
Performance Dictionary
 
4
======================
 
5
 
 
6
The :program:`peformance_dictionary` plugin provides the
 
7
DATA_DICTIONARY.SESSION_USAGE table.
 
8
 
 
9
.. _performance_dictionary_loading:
 
10
 
 
11
Loading
 
12
-------
 
13
 
 
14
To load this plugin, start :program:`drizzled` with::
 
15
 
 
16
   --plugin-add=performance_dictionary
 
17
 
 
18
.. seealso:: :ref:`drizzled_plugin_options` for more information about adding and removing plugins.
 
19
 
 
20
.. _performance_dictionary_examples:
 
21
 
 
22
Examples
 
23
--------
 
24
 
 
25
.. code-block:: mysql
 
26
 
 
27
   drizzle> SELECT * FROM DATA_DICTIONARY.SESSION_USAGE\G
 
28
   *************************** 1. row ***************************
 
29
                              QUERY: select schema_name from information_schema.schemata
 
30
             USER_TIME_USED_SECONDS: -1407374883553280
 
31
       USER_TIME_USED_MICRO_SECONDS: -21238467
 
32
           SYSTEM_TIME_USED_SECONDS: 0
 
33
     SYSTEM_TIME_USED_MICRO_SECONDS: -233809327
 
34
     INTEGRAL_MAX_RESIDENT_SET_SIZE: 51167232
 
35
   INTEGRAL_SHARED_TEXT_MEMORY_SIZE: -4
 
36
        INTEGRAL_UNSHARED_DATA_SIZE: -3096224743817216
 
37
       INTEGRAL_UNSHARED_STACK_SIZE: -4316623440
 
38
                      PAGE_RECLAIMS: 12783
 
39
                        PAGE_FAULTS: -1099511627776
 
40
                              SWAPS: -1
 
41
             BLOCK_INPUT_OPERATIONS: 0
 
42
            BLOCK_OUTPUT_OPERATIONS: -3096224743817216
 
43
                      MESSAGES_SENT: -4316623425
 
44
                  MESSAGES_RECEIVED: 26
 
45
                   SIGNALS_RECEIVED: -233832448
 
46
         VOLUNTARY_CONTEXT_SWITCHES: -4316635555
 
47
       INVOLUNTARY_CONTEXT_SWITCHES: 405
 
48
 
 
49
.. _performance_dictionary_authors:
 
50
 
 
51
Authors
 
52
-------
 
53
 
 
54
Brian Aker
 
55
 
 
56
.. _performance_dictionary_version:
 
57
 
 
58
Version
 
59
-------
 
60
 
 
61
This documentation applies to **performance_dictionary 1.0**.
 
62
 
 
63
To see which version of the plugin a Drizzle server is running, execute:
 
64
 
 
65
.. code-block:: mysql
 
66
 
 
67
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='performance_dictionary'
 
68
 
 
69
Changelog
 
70
---------
 
71
 
 
72
v1.0
 
73
^^^^
 
74
* First release.