This message was deleted.
# general
s
This message was deleted.
n
You will have to parse it as attribute then it will be added to Signoz
c
How to parse it?
Already have traceid in selected fields but not getting traceid in traceid field how to solve this issue?
this is my issue.
n
c
helm repo add signoz https://charts.signoz.io i have used above chart for signoz installation. Can you please tell me a way to update using helm command with added parser using set command in helm?
anyupdate??
n
You will have to create an override.yaml file and add the processor for parsing. @Prashant Shahi do we have an example which we can share of override.yaml
c
@Prashant Shahi please provide example override.yaml with traceid attribute added.
we are currently using chart version signoz-0.16.2 and app-version 0.20.2
p
you could either modify the default
logtransform/internal
processor, or you could add a new processor
logtransform/custom
as shown in
override-values.yaml
below:
Copy code
otelCollector:
  config:
    processors:
      logstransform/custom:
        operators:
          # parse body as json to tmp
          - id: parse_json
            type: json_parser
            parse_from: body
            parse_to: attributes.temp
            output: trace_parse
          ...
    service:
      pipelines:
        logs:
          receivers: [otlp]
          processors: [logstransform/internal, logstransform/custom, batch]
          exporters: [clickhouselogsexporter]