User Statistics

The logging_stats plugin provides user statistics as DATA_DICTIONARY tables.

Loading

This plugin is loaded by default, but it may need to be configured. See the plugin’s Configuration and Variables.

To stop the plugin from loading by default, start drizzled with:

--plugin-remove=logging_stats

See also

Plugin Options for more information about adding and removing plugins.

Configuration

These command line options configure the plugin when drizzled is started. See Command Line Options for more information about specifying command line options.

--logging-stats.bucket-count ARG
Default:10
Variable:logging_stats_bucket_count

Max number of range locks to use for Scoreboard.

--logging-stats.disable
Default:
Variable:

Disable logging statistics collection.

--logging-stats.max-user-count ARG
Default:500
Variable:logging_stats_max_user_count

Max number of users to log.

--logging-stats.scoreboard-size ARG
Default:2000
Variable:logging_stats_scoreboard_size

Max number of concurrent sessions to log.

Variables

These variables show the running configuration of the plugin. See variables for more information about querying and setting variables.

  • logging_stats_enable

    Scope:Global
    Dynamic:No
    Option:

    If logging stats is enabled or not.

Examples

Sorry, there are no examples for this plugin.

Authors

Joseph Daly

Version

This documentation applies to logging_stats 0.1.

To see which version of the plugin a Drizzle server is running, execute:

SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='logging_stats'

Changelog

v0.1

  • First release.

Table Of Contents

Previous topic

Query Logging

Next topic

Math Functions

This Page