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