aboutsummaryrefslogtreecommitdiffstats
path: root/elk/logstash.conf
blob: 0440f5ddeb74e3937fb30d4855b3092759194fa2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
input {
	beats {
		port => 5044
	}

	# tcp {
	# 	port => 50000
	# }
}

## Add your filters / logstash plugins configuration here

output {
	elasticsearch {
		hosts => ["elasticsearch:9200"]
		ssl => false
		index => "logstash"
	}
}