Adding composers and customization files for ELK sample system and Metrics sample...
[osm/devops.git] / installers / docker / osm_elk / logstash.conf
1 input {
2         tcp {
3                 port => 5000
4         }
5         kafka {
6                 bootstrap_servers => 'kafka:9092'
7                 topics => ["alarm_response", "lcm_pm"]
8         }
9 }
10
11 ## Add your filters / logstash plugins configuration here
12
13 output {
14         elasticsearch {
15                 hosts => "elasticsearch:9200"
16         }
17 }