Where to config log file output in on-premise deployment?

0
Is there any doc explains how to config the log file path when deploy App on-premsie?  or in K8s? We need to read the output of logs and transfer the content to customer’s log monitor system.
asked
1 answers
0

In K8s, the log lines are written to stdout stderr by default.
It depends on how the K8s is configured. You can save the logs on the node of the cluster and process them from there.

This would be more likely to be found in the K8s documentation.

answered