Hello everyone,
As part of our recent initiative to modernize our observability stack, we have successfully transitioned our InterSystems IRIS logging framework to a structured JSON format. Now we need to dynamically enrich these logs with business-critical metadata specifically, theTenant ID.
We have this configmap to enable Json logs:
apiVersion: v1
kind: ConfigMap
metadata:
name: iris-cpf-merge
namespace: {{ .Release.Namespace }}
data:
merge.cpf: |
[Logging]
ChildProcessLaunchCommand=/usr/irissys/bin/irislogd -f /tmp/messages.json
Format=JSON
Enabled=1







