~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/performance_dictionary/docs/index.rst

  • Committer: Mark Atwood
  • Date: 2011-09-13 19:54:55 UTC
  • mfrom: (2397.1.3 plugin-docs)
  • Revision ID: me@mark.atwood.name-20110913195455-3bk3locm85m4jimp
mergeĀ lp:~daniel-nichter/drizzle/plugin-docs

Show diffs side-by-side

added added

removed removed

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