~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_gearman/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
Gearman Logging
 
2
===============
 
3
 
 
4
The :program:`logging_gearman` plugin logs queries to a Gearman server.
 
5
 
 
6
.. _logging_gearman_loading:
 
7
 
 
8
Loading
 
9
-------
 
10
 
 
11
To load this plugin, start :program:`drizzled` with::
 
12
 
 
13
   --plugin-add=logging_gearman
 
14
 
 
15
Loading the plugin may not enable or configure it.  See the plugin's
 
16
:ref:`logging_gearman_configuration` and :ref:`logging_gearman_variables`.
 
17
 
 
18
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
19
 
 
20
.. _logging_gearman_configuration:
 
21
 
 
22
Configuration
 
23
-------------
 
24
 
 
25
These command line options configure the plugin when :program:`drizzled`
 
26
is started.  See :doc:`/configuration` for more information about specifying
 
27
command line options.
 
28
 
 
29
.. program:: drizzled
 
30
 
 
31
.. option:: --logging-gearman.function ARG
 
32
 
 
33
   :Default: drizzlelog
 
34
   :Variable: :ref:`logging_gearman_function <logging_gearman_function>`
 
35
 
 
36
   Gearman function to send logging to.
 
37
 
 
38
.. option:: --logging-gearman.host ARG
 
39
 
 
40
   :Default: localhost
 
41
   :Variable: :ref:`logging_gearman_host <logging_gearman_host>`
 
42
 
 
43
   Hostname for logging to a Gearman server.
 
44
 
 
45
.. _logging_gearman_variables:
 
46
 
 
47
Variables
 
48
---------
 
49
 
 
50
These variables show the running configuration of the plugin.
 
51
See `variables` for more information about querying and setting variables.
 
52
 
 
53
.. _logging_gearman_function:
 
54
 
 
55
* ``logging_gearman_function``
 
56
 
 
57
   :Scope: Global
 
58
   :Dynamic: No
 
59
   :Option: :option:`--logging-gearman.function`
 
60
 
 
61
   Gearman Function to send logging to
 
62
 
 
63
.. _logging_gearman_host:
 
64
 
 
65
* ``logging_gearman_host``
 
66
 
 
67
   :Scope: Global
 
68
   :Dynamic: No
 
69
   :Option: :option:`--logging-gearman.host`
 
70
 
 
71
   Hostname for logging to a Gearman server
 
72
 
 
73
.. _logging_gearman_examples:
 
74
 
 
75
Examples
 
76
--------
 
77
 
 
78
Sorry, there are no examples for this plugin.
 
79
 
 
80
.. _logging_gearman_authors:
 
81
 
 
82
Authors
 
83
-------
 
84
 
 
85
Mark Atwood
 
86
 
 
87
.. _logging_gearman_version:
 
88
 
 
89
Version
 
90
-------
 
91
 
 
92
This documentation applies to **logging_gearman 0.1**.
 
93
 
 
94
To see which version of the plugin a Drizzle server is running, execute:
 
95
 
 
96
.. code-block:: mysql
 
97
 
 
98
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='logging_gearman'
 
99
 
 
100
Changelog
 
101
---------
 
102
 
 
103
v0.1
 
104
^^^^
 
105
* First release.