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

« back to all changes in this revision

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