Persisting Trace.axd

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to log and collate trace information from servers in a shared
environment. I'd like to use Trace.axd. Can the tracing info displayed with
Trace.axd be persisted? Can it be collated?
 
There are no public APIs to read that data in the current version. I've heard
of people writing screen scraping apps to capture that data. In v2.0 there's
a public API to read some of this data, but it's incomplete IMO.

-Brock
DevelopMentor
http://staff.develop.com/ballen
 
Hello Shawn,

Boy, I might be stepping *way* out here... I've not tried this at all, but
I do know that you can do some great stuff with Response filters.

You may be able to set up a Filter which would pipe this stuff out to a file.
You could wire it up in BeginRequest (if the filename matches trace.axd).

Again, I have not tried this... it is an idea worth exploring though. Especially
if trace.axd requests are routed through your applications pipeline.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top