Hi Team,
I want to extract the below field value, here the challenge is the error code 403 sometimes it will change.
"processing_stage": "Getting a response of 403 from CRM Lead"
Kindly help me to extract the message using regex or any option available.
Hi @parthiban,
you hughlighted only the 403 response code, if you want the full string, you could use:
| rex "\"processing_stage\": \"(?<response>[^\"]+)"
that you can test at https://regex101.com/r/mz4c1L/2
Ciao.
Giuseppe
Hi @parthiban,
if the message string is fixed, you could try:
<your_search>
| rex "\"Getting a response of (?<response>\d+)"
| table ...
you can test this regex at https://regex101.com/r/mz4c1L/1
Ciao.
Giuseppe