Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- input {
- udp {
- port => 25826 # 25826 matches port specified in collectd.conf
- buffer_size => 1452 # 1452 is the default buffer size for Collectd
- codec => collectd { } # specific Collectd codec to invoke
- type => "collectd"
- }
- }
- output {
- if [type] == "collectd" {
- elasticsearch {
- hosts => ["10.0.0.184:9200"]
- index => "testing-collectd-%{+YYYY.MM.dd}"
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment