ec5d4ca
# netdata
ec5d4ca
2719314
Netdata is the fastest way to visualize metrics. It is a resource efficient, highly optimized system for collecting and visualizing any type of realtime time-series data, from CPU usage, disk activity, SQL queries, API calls, web site visitors, etc.
2719314
2719314
netdata tries to visualize the truth of now, in its greatest detail, so that you can get insights of what is happening now and what just happened, on your systems and applications.
2719314
2719314
## Plugins
2719314
2719314
### Activate mysql plugin
2719314
2719314
Be sure to have python library for mysql MySQLdb (faster) or PyMySQL (slower)
2719314
2719314
* Fedora
2719314
2719314
    ````
2719314
    sudo dnf install python3-mysql
2719314
    ````
2719314
    
2719314
* Epel
2719314
2719314
    ````
2719314
    yum install MySQL-python
2719314
    ````
2719314
2719314
Create netdata mysql user
2719314
2719314
````
2719314
CREATE USER 'netdata'@'localhost';
2719314
GRANT USAGE on *.* to 'netdata'@'localhost';
2719314
FLUSH PRIVILEGES;
2719314
````