All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java-pkmst.logstash.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
input {
  file {
    path => ""
    start_position => "beginning"

  }
}


filter {
       # pattern matching logback pattern
       grok {

       }


}



}

output {
  # Print each event to stdout, useful for debugging. Should be commented out in production.
  # Enabling 'rubydebug' codec on the stdout output will make logstash
  # pretty-print the entire event as something similar to a JSON representation.
  stdout {
    codec => rubydebug
  }

  # Sending properly parsed log events to elasticsearch
  elasticsearch {
    hosts => ["localhost:9200"]
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy