I wish to extracted out elapsedTime attribute values from the file.
Records look
{"realm":"/test","transactionId":"9e26c614","elapsedTime":17,"elapsedTimeUnits":"MILLISECONDS","_id":"9e26c6asdasd"}
The file I am having is in gb's and I want to get the values greater than 10000.
I tried to grep but due to colon grep is not working.
grep -wo --color 'elapsedTime' fileName -> this just prints attribute names
grep -w --color "elapsedTime" fileName -> this just highlights the attribute.