| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Python plugin support is experimental and implementation may change in the future
Currently every plugin must be written in python3. All third party libraries should be installed system-wide or in python_modules directory. Also plugins support changing their data collection frequency by setting update_every variable in their configuration file.
The following python.d plugins are supported:
The plugin will monitor one or more mysql servers
Requirements:
It will produce following charts (if data is available):
You can provide, per server, the following:
Here is an example for 3 servers updating data every 10 seconds
update_every = 10
config=[
{
'name' : 'local',
'my.cnf' : '/etc/mysql/my.cnf'
},{
'name' : 'local_2',
'user' : 'root',
'password' : 'blablablabla',
'socket' : '/var/run/mysqld/mysqld.sock'
},{
'name' : 'remote',
'user' : 'admin',
'password' : 'bla',
'host' : 'example.org',
'port' : '9000'
}]If no configuration is given, the plugin will attempt to connect to mysql server via unix socket at /var/run/mysqld/mysqld.sock without password and username root
| Back | FazBrowse Home | New Git URL |