Hi,
I have a log line the following format:
{
“Details”:“request”,
“Other”:{
“DT”:“1”,
“St”: 2,
}
}
I have applied select_jsonpath to set field from json.
I need to use lookup table to get some values like parameter DT value 1 i need to replace from lookup to sell.
Here is my lookuptable.csv
“DT”,“Details”
0,“Buy”
1,“Sell”
Here are the rules and lookup config i have used
I want to use select_jsonpath to pipeline json fields.kindly help with the solution to implement lookup along with select_jsonpath.