0
votes
3answers
58 views
Tracing a ruby process as it is running
Hi folks! I am running a ruby code that has a significant number of http (web and api) requests, as well as some pretty intensive data processing. As you might expect it is pretty …
0
votes
2answers
32 views
What’s a good checklist for instrumenting my .NET application
Hello all, I'm looking for a best practices checklist for instrumenting my code. Not so much what tools to use (I'm a System.Diagnostics.Trace fan myself) but just where you shoul …
1
vote
3answers
39 views
How do I trace into an externally-compiled lib in Visual C++
I built the non-dll version of OpenSSL on my windows box. Per the instructions I modified the build script to include debug symbols. I can link against them fine and they run. B …
0
votes
2answers
30 views
ASP.NET Application – Tracing
Hi,
We are working on an ASP.NET application and planned to use tracing.
Here I need few clarifications.
Is it the common practice that people use trace statements in .NET rea …
2
votes
3answers
65 views
.Net Custom Trace file name
I would like my application to write out different trace files named like MachineName_UserName_yyyymmdd_hhmmss.txt where the username is the currently logged in user and the time i …
0
votes
3answers
41 views
how to code an ip tracer program in c?
i would like to code an ip tracer program in c , but i am not able to get a head start in it . Any e book , links or sample code would be of much needed help !!
1
vote
1answer
33 views
ASP.NET Trace.axd File Security
When I use the following code in web.config to trace the application, does the tracing actually store any information in a file on the machine? I just want to make sure that inform …
1
vote
1answer
169 views
Object Disposed Exception when using .Net Trace Source within VS UNit Tests
I'm getting an Object Disposed Exception when I try to call TraceSource.TraceData with my VS2008 unit test project. I have included a very small code sample below which consistent …
0
votes
2answers
86 views
Trace all method calls in ASP.NET application
I need to trace all method calls in an ASP.NET application for a period of time, say 24 hours, into a log file. Looking for tools that allows me to do this? I'm interested in in g …
0
votes
1answer
68 views
Windows ETL Trace File Format?
I have a written an ETW provider which is used by my system to log opaque blobs of binary data using the TraceEvent API function. My system is essentially a high throughput event p …
0
votes
1answer
33 views
How do I trace all request in IIS 6 on Windows Server 2003 SP2?
I found this site from MS:
Tracing Requests (IIS 6.0) - Microsoft TechNet
I set it up on my server as per the article and then used this to try and generate the report, but i …
0
votes
2answers
51 views
How do I follow a WCF request from start to finish?
I have a WCF service defined, it accepts JSON and maps that JSON to an object at which point I can then begin debugging code.
Sometimes, the object fails to create. Most recently …
1
vote
4answers
355 views
Classic ASP always return code 200 in IIS7
Hi,
I enabled tracing in IIS7.
I set those properties to true in the ASP tab of the IIS management tool:
appAllowClientDebug,
appAllowDebugging,
errorsToNTLog,
scriptErrorS …
1
vote
1answer
23 views
Differences between .NET network tracing levels
I'm trying to understand what the different output is for the various .NET Network tracing levels documented here:
http://msdn.microsoft.com/en-us/library/ty48b824.aspx
It states …
0
votes
1answer
79 views
How do I get TextWriterTraceListener to output times much like the standard tracing does?
I'm trying to analyze some running times for various methods in my default.aspx.cs page. I need to use TextWriterTraceListener.
I have it set up so that output is being redirec …
