コード例 #1
0
ファイル: varz.go プロジェクト: qinguoan/vulcan
func NewVarz(r *registry.RouteRegistry) Varz {
	x := &RealVarz{r: r}

	x.activeApps = stats.NewActiveApps()
	x.topApps = stats.NewTopApps()

	x.All = NewHttpMetric()
	x.Tags.Component = make(map[string]*HttpMetric)

	return x
}
コード例 #2
0
ファイル: proxy_test.go プロジェクト: qinguoan/vulcan
func (_ nullVarz) ActiveApps() *stats.ActiveApps                              { return stats.NewActiveApps() }