Hi!
I have MySQL Ver 8.0.13 for Linux and i have installed and configured Metricbeat-6.6.0 with enabled module "mysql" (enabled metricsets "- status").
But, when i run metricbeat - in debug log i see next part of message:
"error": {
"message": "this user requires mysql native password authentication."
},
For this user, in mysql, enabled "mysql_native_password" auth plugin.
I'm change auth plugin to "caching_sha2_password", and in metricbeat debug log i see next part of message:
"error": {
"message": "this authentication plugin is not supported"
},
Okey, I'm change auth plugin to "sha256_password", and in metricbeat debug log i see next part of message:
"error": {
"message": "this authentication plugin is not supported"
},
...what im doing wrong?
I'm sure that all configuration files are correct, because all another metricbeat function's work's fine!
/etc/metricbeat/mysql.yml file content:
- module:
metricsets:
- status
period: 10s
hosts: ["username:password@tcp(127.0.0.1:3306)/"]
