Use Non-JSON Formatted Logging
ESS services uses JSON as the default log message format.
Although JSON formatting allows the log messages to be enriched with details that non-JSON formatting does not allow, you can change the log format to non-JSON messages.
Example Customization
To change log messages to non-JSON formatting, you can use the disable-json-logging-for-quarkus
component.
Go to your ESS installation directory:
cd ${HOME}/ess
Modify the
kustomization.yaml
(i.e., step 3 of the Applying Your Customizations procedure). Specifically, add the highlighted content to thecomponents
field in thekustomization.yaml
file:# kustomization.yaml in your ESS installation directory # ... Preceding content omitted for brevity # ... components: - ../release/ess/deployment/kubernetes/components/disable-json-logging-for-quarkus
Continue with the rest of the Applying Your Customizations procedure.
Last updated