コード例 #1
0
ファイル: health.go プロジェクト: chinna1986/vitess
func init() {
	servenv.OnRun(func() {
		if *allowedReplicationLag > 0 {
			health.Register("replication_reporter", mysqlctl.MySQLReplicationLag(agent.Mysqld, *allowedReplicationLag))
		}
	})
}
コード例 #2
0
ファイル: health.go プロジェクト: littleyang/vitess
func registerHealthReporter(mysqld *mysqlctl.Mysqld) {
	if *enableReplicationLagCheck {
		health.DefaultAggregator.Register("replication_reporter", mysqlctl.MySQLReplicationLag(mysqld))
	}
}