Exemple #1
0
func init() {
	monitor.RegisterWatcher("influxdb.server", func() monitor.Watcher {
		return &WatchInfluxServer{
			Tick: time.Minute,
		}
	})
}
Exemple #2
0
func init() {
	monitor.RegisterWatcher("kafka.replica", func() monitor.Watcher {
		return &WatchReplicas{
			Tick: time.Minute,
		}
	})
}
Exemple #3
0
func init() {
	monitor.RegisterWatcher("redis.info", func() monitor.Watcher {
		return &WatchRedisInfo{
			Tick: time.Minute,
		}
	})
}
Exemple #4
0
func init() {
	monitor.RegisterWatcher("actord.actord", func() monitor.Watcher {
		return &WatchActord{
			Tick: time.Minute,
		}
	})
}
Exemple #5
0
func init() {
	monitor.RegisterWatcher("kafka.broker", func() monitor.Watcher {
		return &WatchBrokers{
			Tick: time.Minute,
		}
	})
}
Exemple #6
0
func init() {
	monitor.RegisterWatcher("zk.zk", func() monitor.Watcher {
		return &WatchZk{
			Tick: time.Minute,
		}
	})
}
Exemple #7
0
func init() {
	monitor.RegisterWatcher("redis.slowlog", func() monitor.Watcher {
		return &WatchSlowlog{
			Tick: time.Minute,
		}
	})
}
Exemple #8
0
func init() {
	monitor.RegisterWatcher("kateway.pubsub", func() monitor.Watcher {
		return &WatchPubsub{
			Tick: time.Minute,
		}
	})
}
Exemple #9
0
func init() {
	monitor.RegisterWatcher("kateway.topics", func() monitor.Watcher {
		return &WatchTopics{
			Tick: time.Minute,
		}
	})
}
Exemple #10
0
func init() {
	monitor.RegisterWatcher("kateway.sublag", func() monitor.Watcher {
		return &WatchSubLag{
			Tick: time.Minute,
		}
	})
}
Exemple #11
0
func init() {
	monitor.RegisterWatcher("anomaly.qps", func() monitor.Watcher {
		return &WatchQps{
			Tick: time.Minute,
		}
	})
}
Exemple #12
0
func init() {
	monitor.RegisterWatcher("kafka.controller", func() monitor.Watcher {
		return &WatchControllers{
			Tick: time.Minute,
		}
	})
}
Exemple #13
0
func init() {
	monitor.RegisterWatcher("kateway.engine", func() monitor.Watcher {
		return &WatchKateway{
			Tick: time.Minute,
		}
	})
}
Exemple #14
0
func init() {
	monitor.RegisterWatcher("external.exec", func() monitor.Watcher {
		return &WatchExec{}
	})
}
Exemple #15
0
func init() {
	monitor.RegisterWatcher("zone.load", func() monitor.Watcher {
		return &WatchLoadAvg{}
	})
}
Exemple #16
0
func init() {
	monitor.RegisterWatcher("kateway.apperr", func() monitor.Watcher {
		return &WatchAppError{}
	})
}