Skip to content

Commit

Permalink
replication_applier_status_by_worker requires mysql 8.0 (#683)
Browse files Browse the repository at this point in the history
The query in the replication_applier_status_by_worker check assumes the
replication_applier_status_by_worker table layout in mysql 8.0.

Co-authored-by: Alexander J. Maidak <alex.maidak@shopify.com>
  • Loading branch information
ajmaidak and Alexander J. Maidak authored Aug 29, 2024
1 parent 4914f25 commit fe4b6cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (ScrapePerfReplicationApplierStatsByWorker) Help() string {

// Version of MySQL from which scraper is available.
func (ScrapePerfReplicationApplierStatsByWorker) Version() float64 {
return 5.7
return 8.0
}

// Scrape collects data from database connection and sends it over channel as prometheus metric.
Expand Down

0 comments on commit fe4b6cd

Please sign in to comment.