Logstash module
WORK IN PROGRESS
The module uses logstash to log messages to the console, microbase sends logs to logstash via winston-logstash.
Use
In the application, use the the configuration:
"logstash": {
"port": 28777,
"host": "logstash",
"node_name": "node_tax"
}Basic logstash configuration:
input {
tcp {
port => 28777
type=>"sample"
}
}Add your filters here
output {
elasticsearch {
hosts => "elasticsearch:9200"
}
}
`
