コード例 #1
0
ファイル: tcp_test.go プロジェクト: jarpy/beats
func init() {
	new := func(_ bool, _ publish.Transactions, _ *ucfg.Config) (protos.Plugin, error) {
		return &TestProtocol{}, nil
	}

	protos.Register("httpTest", new)
	protos.Register("mysqlTest", new)
	protos.Register("redisTest", new)

	httpProtocol = protos.Lookup("httpTest")
	redisProtocol = protos.Lookup("redisTest")
	mysqlProtocol = protos.Lookup("mysqlTest")
}
コード例 #2
0
ファイル: cassandra.go プロジェクト: andrewkroh/beats
func init() {
	protos.Register("cassandra", New)
}
コード例 #3
0
ファイル: amqp.go プロジェクト: radoondas/apachebeat
func init() {
	protos.Register("amqp", New)
}
コード例 #4
0
ファイル: dns.go プロジェクト: ChongFeng/beats
func init() {
	protos.Register("dns", New)
}
コード例 #5
0
ファイル: thrift.go プロジェクト: ruflin/beats
func init() {
	protos.Register("thrift", New)
}
コード例 #6
0
ファイル: memcache.go プロジェクト: YaSuenag/hsbeat
func init() {
	protos.Register("memcache", New)
}
コード例 #7
0
ファイル: pgsql.go プロジェクト: ChongFeng/beats
func init() {
	protos.Register("pgsql", New)
}
コード例 #8
0
ファイル: mongodb.go プロジェクト: jarpy/beats
func init() {
	protos.Register("mongodb", New)
}
コード例 #9
0
ファイル: http.go プロジェクト: urso/beats
func init() {
	protos.Register("http", New)
}
コード例 #10
0
ファイル: redis.go プロジェクト: andrewkroh/beats
func init() {
	protos.Register("redis", New)
}
コード例 #11
0
func init() {
	protos.Register("{{ cookiecutter.module }}", New)
}