コード例 #1
0
ファイル: http_listen_input.go プロジェクト: millken/kaman
func init() {
	plugins.RegisterInput("HttpListenInput", func() interface{} {
		return new(HttpListenInput)
	})
}
コード例 #2
0
ファイル: tcp_input.go プロジェクト: millken/kaman
func init() {
	plugins.RegisterInput("TcpInput", func() interface{} {
		return new(TcpInput)
	})
}
コード例 #3
0
ファイル: kafka_input.go プロジェクト: millken/kaman
func init() {
	plugins.RegisterInput("KafkaInput", func() interface{} {
		return new(KafkaInput)
	})
}