ELKstack - acehippo/slowmotion GitHub Wiki

ELK (ElasticSearch + LogStash + Kibana)

image

Kibana https://www.elastic.co/products/kibana

  • Flexible analytics and visualization platform
  • Real-time summary and charting of streaming data
  • Intuitive interface for a variety of users
  • Instant sharing and embedding of dashboards

logstash

image

input {
  file {
    codec => json
    path => "/home/slowmotion/elk/elastic-demo/data/*.log"
  }
}

filter{
  mutate {
    remove_field => [ "@version", "@timestamp", "host", "path" ]
  }
}

output{
  elasticsearch{
    hosts => ["10.251.54.155:9200"]
    index => "demo-kr-subway"
    document_type => "kr-subway"
  }
}