You are viewing a previous version of KrakenD Community Edition (v1.4), go to the
latest version
Document updated on Sep 15, 2019
Logstash
If you want to log using the Logstash standard via stdout, you have to add the krakend-logstash
integration in the
root level of your krakend.json
, inside the extra_config
section. The gologging
needs to be enabled too.
For instance:
"extra_config": {
"github_com/devopsfaith/krakend-logstash": {
"enabled": true
}
"github_com/devopsfaith/krakend-gologging": {
"level": "INFO",
"prefix": "[KRAKEND]",
"syslog": false,
"stdout": true,
"format": "logstash"
}
}