Wednesday, January 5, 2022

How to convert FDR to CSV

If there are any siebel application crashes, as part of investigating crash you need FDR(Flight Data Recorder) file. This file gets generated in the bin directory of siebel server for every hard crash.

Problem with FDR is that it is not in readable format and you need to convert it in csv first.

You can find a way to do that on many sites as below :

sarmanalyzer -o <output.csv> -x -f <fdr file>

But, with my own experience, most of you will end up with the below error :

sarmanalyzer: not found

So I am putting down all the steps which are required to perform sequentially to convert a FDR to CSV: 

(1) Go to bin directory of siebel server

(2) cd ..

(3) . ./siebenv.sh

(4) cd bin

(5) sarmanalyzer -o <output.csv> -x -f <fdr file>

No comments:

Post a Comment

Updating parent BC depending on the status of child BC using configuration

Parent BC: Service Request Child BC: Action Requirement: When all the Actions corresponding to an SR are closed the SR status should be “Clo...