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