コード例 #1
0
func init() {
	i := func() interface{} {
		return new(HTTPSimpleInput)
	}
	pipeline.RegisterPlugin("HttpSimpleInput", i)
	pipeline.RegisterPlugin("HTTPSimpleInput", i)
}
コード例 #2
0
func init() {
	pipeline.RegisterPlugin("CloudwatchInput", func() interface{} {
		return new(CloudwatchInput)
	})
	pipeline.RegisterPlugin("CloudwatchOutput", func() interface{} {
		return new(CloudwatchOutput)
	})
}
コード例 #3
0
func init() {
	pipeline.RegisterPlugin("SandboxDecoder", func() interface{} {
		return new(SandboxDecoder)
	})
	pipeline.RegisterPlugin("SandboxFilter", func() interface{} {
		return new(SandboxFilter)
	})
	pipeline.RegisterPlugin("SandboxManagerFilter", func() interface{} {
		return new(SandboxManagerFilter)
	})
}
コード例 #4
0
ファイル: irc_output.go プロジェクト: Nitro/heka
func init() {
	pipeline.RegisterPlugin("IrcOutput", func() interface{} {
		output := new(IrcOutput)
		output.InitIrcCon = NewIrcConn
		return output
	})
}
コード例 #5
0
func init() {
	pipeline.RegisterPlugin("SyslogOutput", func() interface{} {
		return new(SyslogOutput)
	})
}
コード例 #6
0
ファイル: output.go プロジェクト: benjaminws/heka-zeromq
func init() {
	pipeline.RegisterPlugin("ZeroMQOutput", func() interface{} {
		return new(ZeroMQOutput)
	})
}
コード例 #7
0
func init() {
	pipeline.RegisterPlugin("FirehoseOutput", func() interface{} {
		return new(FirehoseOutput)
	})
}
コード例 #8
0
ファイル: http_output.go プロジェクト: salekseev/heka
func init() {
	pipeline.RegisterPlugin("HttpOutput", func() interface{} {
		return new(HttpOutput)
	})
}
コード例 #9
0
ファイル: redis_Input.go プロジェクト: jbli/jbli_svn
func init() {
	pipeline.RegisterPlugin("RedisMQInput", func() interface{} {
		return new(RedisMQInput)
	})
}
コード例 #10
0
func init() {
	pipeline.RegisterPlugin("KinesisOutput", func() interface{} { return new(KinesisOutput) })
}
コード例 #11
0
ファイル: payload_encoder.go プロジェクト: Nitro/heka
func init() {
	pipeline.RegisterPlugin("PayloadEncoder", func() interface{} {
		return new(PayloadEncoder)
	})
}
コード例 #12
0
ファイル: scamp_service.go プロジェクト: gudTECH/heka-scamp
func init() {
	pipeline.RegisterPlugin("ScampInput", func() interface{} {
		return new(SCAMPInputPlugin)
	})
}
コード例 #13
0
ファイル: file_polling_input.go プロジェクト: salekseev/heka
func init() {
	pipeline.RegisterPlugin("FilePollingInput", func() interface{} {
		return new(FilePollingInput)
	})
}
コード例 #14
0
func init() {
	pipeline.RegisterPlugin("CloudMonitoringOutput", func() interface{} {
		return new(CloudMonitoringOutput)
	})
}
コード例 #15
0
func init() {
	pipeline.RegisterPlugin("CollectdInput", func() interface{} {
		return new(CollectdInput)
	})
}
コード例 #16
0
func init() {
	pipeline.RegisterPlugin("DockerStatsDecoder", func() interface{} {
		return new(DockerStatsDecoder)
	})
}
コード例 #17
0
func init() {
	pipeline.RegisterPlugin("RiemannEncoder", func() interface{} {
		return new(RiemannEncoder)
	})
}
コード例 #18
0
ファイル: sandbox_encoder.go プロジェクト: orangemi/heka
func init() {
	pipeline.RegisterPlugin("SandboxEncoder", func() interface{} {
		return new(SandboxEncoder)
	})
}
コード例 #19
0
ファイル: readfile.go プロジェクト: wxdublin/heka-plugins
func init() {
	pipeline.RegisterPlugin("FileReadFilter", func() interface{} { return new(FileReadFilter) })
}
コード例 #20
0
func init() {
	pipeline.RegisterPlugin("DockerStatsInput", func() interface{} {
		return new(DockerStatsInput)
	})
}
コード例 #21
0
ファイル: sqs3_input.go プロジェクト: relud/heka_plugin_sqs3
func init() {
    pipeline.RegisterPlugin("Sqs3Input", func() interface{} {
        return new(Sqs3Input)
    })
}
コード例 #22
0
func init() {
	p.RegisterPlugin("LogstreamerInput", func() interface{} {
		return new(LogstreamerInput)
	})
}
コード例 #23
0
func init() {
	pipeline.RegisterPlugin("S3SplitFileInput", func() interface{} {
		return new(S3SplitFileInput)
	})
}
コード例 #24
0
func init() {
	pipeline.RegisterPlugin("StatsdOutput", func() interface{} {
		return pipeline.RunnerMaker(new(StatsdOutWriter))
	})
}
コード例 #25
0
ファイル: host_filter.go プロジェクト: JustinJudd/heka
func init() {
	pipeline.RegisterPlugin("HostFilter", func() interface{} {
		return new(HostFilter)
	})
}
コード例 #26
0
func init() {
	pipeline.RegisterPlugin("TwilioOutput", func() interface{} {
		return new(TwilioOutput)
	})
}
コード例 #27
0
func init() {
	pipeline.RegisterPlugin("OpenTsdbOutput", func() interface{} {
		return new(OpenTsdbOutput)
	})
}
コード例 #28
0
func init() {
	pipeline.RegisterPlugin("WebSocketsOutput", func() interface{} {
		return new(WebSocketsOutput)
	})
}
コード例 #29
0
func init() {
	pipeline.RegisterPlugin("JsonDecoder", func() interface{} {
		return new(JsonDecoder)
	})
}
コード例 #30
0
ファイル: uptime.go プロジェクト: kamilsmuga/UptimeFilter
func init() {
	pipeline.RegisterPlugin("UptimeFilter", func() interface{} {
		return new(UptimeFilter)
	})
}