Hi, I am using splunk otel, send log to splunk enterprise.For different sourcetype, I want to do different thing, like add field, remove fields can you guide me, thanks a lot. For below, it work. ``` transform/istio-proxy: error_mode: ignore log_statements: - context: log statements: - set(attributes["johnaddkey"], "johnaddvalue") ``` For below, it does not work. ``` transform/istio-proxy: error_mode: ignore log_statements: - context: log statements: - set(attributes["johntestwhere"], "johnvaluewhere") where attributes["sourcetype"] == "kube:container:istio-proxy" ``` For below, it does not work. ``` transform/istio-proxy: error_mode: ignore log_statements: - context: log conditions: - attributes["sourcetype"] == "kube:container:istio-proxy" statements: - set(attributes["johnaddkeyc"], "johnaddvaluec") ```
... View more