forked from loafle/openapi-generator-original
* Added pkmst-microservice toolkit * formatted * replaces tab with blank spaces * adding documentation folder * adding documentation folder * Update readme.mustache Added feature set offered by pkmst * updated readme * Update io.swagger.codegen.CodegenConfig Arranged pkmstServerCodeGen and SymfonyServerCodegen in aphabatical order * Update readme.mustache * renamed according to convention and added typeinfoannotation * removed tabs * updated codegen which extends abstractjavacodegen * Added the script files and rectified the errors * folder name changed and commons -lang3 version upgraded * updated readme.mustache * updated logging filter * Added petstore to samples and updated the pom for the same * Added java-pkmst sample to pom.xml.circleci * updated readme.mustache
35 lines
614 B
Plaintext
35 lines
614 B
Plaintext
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"]
|
|
}
|
|
} |