We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mysql -u root -p < ./sys_10.sql on mariadb >= 10.4 fails with:
ERROR 1054 (42S22) at line 78 in file: './views/p_s/metrics_56.sql': Unknown column 'STATUS' in 'field list'
Due to: prometheus/mysqld_exporter#494
Solution is to change line 78 in file: './views/p_s/metrics_56.sql' from: IF(STATUS,'enabled' to IF(ENABLED,'1'
IF(STATUS,'enabled'
IF(ENABLED,'1'
The text was updated successfully, but these errors were encountered:
Duplicate with #547
Solution: Pull requet to GitHub project FromDual/mariadb-sys FromDual/mariadb-sys#2
Sys schema included in next MariaDB version
Sorry, something went wrong.
No branches or pull requests
mysql -u root -p < ./sys_10.sql
on mariadb >= 10.4 fails with:
ERROR 1054 (42S22) at line 78 in file: './views/p_s/metrics_56.sql': Unknown column 'STATUS' in 'field list'
Due to:
prometheus/mysqld_exporter#494
Solution is to change line 78 in file: './views/p_s/metrics_56.sql' from:
IF(STATUS,'enabled'
to
IF(ENABLED,'1'
The text was updated successfully, but these errors were encountered: