Member since
11-09-2017
7
Posts
0
Kudos Received
0
Solutions
01-11-2018
06:41 PM
Hi @Ranith Ranawaka In your screenshot you are using 'equals' as a condition rather than 'lt'. Make sure to use the right relation. Also, you need to add the attribute maxTimestamp to the flowfile.
... View more
12-12-2017
01:40 PM
2 Kudos
@Ranith Ranawaka
After Attributes to Json processor use Replace Text processor with Search Value "clientid"\s+:\s+"(.*)" Replacement Value "clientid" : $1 Replacement Strategy Regex Replace Evaluation Mode Entire text
Configs:- Input:- {
"clientid" : "2",
"id":"1",
"name":"HCC"
} Output:- {
"clientid" : 2,
"id":"1",
"name":"HCC"
} So we are searching for the value of client id and replacing the value without quotes by using replace text processor.
... View more
11-09-2017
05:15 PM
Thanks a lot....it works perfect.
... View more