<@U08GZJ30Q9X> Is it possible to set this config i...
# support
h
@Nagesh Bansal Is it possible to set this config in k8s-infra helm chart? I couldn’t find an example in the documentation
n
It’s not possible to create signoz pipelines from the k8s infra char. but if you want to apply the same pipeline, you can do that by adding the otel processor to log pipeline https://signoz.io/docs/userguide/collect_kubernetes_pod_logs/#excludeincludefilter-logs-collection . You can apply different operators in place of filter operator.
h
Copy code
presets:
  otlpExporter:
    enabled: true
  loggingExporter:
    enabled: false
  logsCollection:
    enabled: true
    operators:
      - type: trace_parser
        trace_id:
          parse_from: body.otel_trace_id
        span_id:
          parse_from: body.otel_span_id
  metrics:
    enabled: true
  resourceDetection:
    detectors:
      - gcp
      - system
This doesn’t seem to populate the fields like the pipeline did. 🤔
n
Ahh so your logs are coming from the otlp receiver I guess, the above is just for the logs collected from k8s pods. you will have to override your log collection pipeline and add a processor, @Prashant Shahi do we have a doc on how to add custom processors to data pipelines in k8s-infra chart ?