VA Command to get particular application in ccg log

Hi @Santhakumar ,

You can use normal Linux commands like grep to do this. Something like below -

$ grep -ia “connector_name” /path/to/ccg.log

Once you find one or two trace of logs, you can fetch the requestID from the log line and do a grep on the requestID to get the specific transaction

$ grep -ia “requestID” /path/to/ccg.log

Thanks,
Shailee

1 Like