Hi,
I am using Logstasg GA 6.3.0. I am taking data from a kafka topic like below;
input {
kafka{
group_id => "mygroup"
topics => ["mytopic"]
bootstrap_servers => "192.168.0.1:9092"
codec => "json"
}
}
everything is working fine. My data has many fields like field_a, field_b etc, which gets automatically parsed with the help of JSON codec. one of my fields field_c has another JSON data in it. Logstash also parses that and I can see the child elements as attributes in Kibana. I don't want that. I want that JSON as plain text, which means Logshash should not tokenize field_c. Is this possible?
Thanks.