tags:

views:

100

answers:

2

Love this debugging tool. It would be great if I could see how long each call takes as a column rather than having to click each individual item and look at its statistics.

I didn't see any options to add this column. Is there a way to do it via a config file or a script?

Thanks

+1  A: 

There sure is.

In Fiddler, go to Rules -> Customize Rules...

Now do a find for "onBeforeResponse", and in that method, add the following line of code at the bottom:

oSession["ui-customcolumn"] = oSession["X-TTLB"];

Should do the trick for you.

womp
+1  A: 

See http://www.fiddler2.com/fiddler/help/configurecolumns.asp for other options.