Hey everyone, my dotnet applications are writing JSON-based structured logs via k8s infra to SigNoz. Now, while I was able to attach all properties via the JSON Parser ingestion processor, the log viewer still shows the full JSON body in each line. How do I change this to only show the rendered message?
Nicolas Mehlei
11/14/2024, 5:15 PM
Hey @Vishal Sharma, can you help me here please? 🙂
v
Vishal Sharma
11/19/2024, 11:39 AM
@Raj Kamal might be able to help here
r
Raj Kamal
11/19/2024, 2:39 PM
Hi Nicolas 🙂
I am assuming you are talking about SigNoz logs pipelines. Let me know if that is not the case
You should be able to use the "move" processor to move the message from the parsed attribute to the body
n
Nicolas Mehlei
11/20/2024, 11:17 AM
Ah perfect, that worked! I initially disregarded that idea as I assumed overwriting body would also remove the attributes within it but now I understood that they are independent. Thanks!