You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to add the logtrail plugin so I could follow kubernetes logs in the managed cluster but couldn't. kibana was too old.
I added the following to the Docker file:
bin/kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v0.1.23/logtrail-5.6.5-0.1.23.zip &&
sed -i 's/"message": "syslog_message"/"message": "log"/;s/"program": "program"/"program": "kubernetes.pod_name"/;s/"message_format": "{{{syslog_message}}}"/"message_format": "{{{log}}}"/' /opt/kibana/plugins/logtrail/logtrail.json && \
bumped the version to 5.6.5 everywhere and changed the last line to:
kibana 2>&1 | grep -m 1 "Server running at" # [1]
as the output message changed in the newer version and everything worked well.
The text was updated successfully, but these errors were encountered:
I tried to add the logtrail plugin so I could follow kubernetes logs in the managed cluster but couldn't. kibana was too old.
I added the following to the Docker file:
bin/kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v0.1.23/logtrail-5.6.5-0.1.23.zip &&
sed -i 's/"message": "syslog_message"/"message": "log"/;s/"program": "program"/"program": "kubernetes.pod_name"/;s/"message_format": "{{{syslog_message}}}"/"message_format": "{{{log}}}"/' /opt/kibana/plugins/logtrail/logtrail.json && \
bumped the version to 5.6.5 everywhere and changed the last line to:
kibana 2>&1 | grep -m 1 "Server running at" # [1]
as the output message changed in the newer version and everything worked well.
The text was updated successfully, but these errors were encountered: