1
0
mirror of https://github.com/prometheus/mysqld_exporter.git synced 2025-07-28 19:21:58 +03:00

Release 0.14.0 (#607)

BREAKING CHANGES:

Metric names in the info_schema.processlist collector have been changed. #603
Metric names in the info_schema.replica_host collector have been changed. #496

* [CHANGE] Rewrite processlist collector #603
* [FEATURE] Add collector for `replica_host_status` #496
* [ENHANCEMENT] Expose dates as timestamps grom GLOBAL STATUS #561
* [BUGFIX] Fix mysql_slave_hosts_info for mysql 5.5 and mariadb 10.5 #577
* [BUGFIX] Fix logging issues #562 #602

Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
Ben Kochie
2022-03-04 17:23:55 +01:00
committed by GitHub
parent 5070ecfed1
commit ca1b9af82a
6 changed files with 38 additions and 17 deletions

View File

@ -83,6 +83,6 @@ func TestGetMySQLVersion(t *testing.T) {
convey.So(err, convey.ShouldBeNil)
defer db.Close()
convey.So(getMySQLVersion(db, logger), convey.ShouldBeBetweenOrEqual, 5.6, 10.5)
convey.So(getMySQLVersion(db, logger), convey.ShouldBeBetweenOrEqual, 5.6, 11.0)
})
}