Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

24
votes
5answers
5k views

log4net versus TraceSource

In this thread many people have indicated that they use log4net. I am a fan of TraceSources and would like to know why log4net is used. Here is why I like trace sources: Pluggable listeners - XML, ...
20
votes
11answers
3k views

What disadvantages are there to the <button> tag? (It seems there are quite a few problems with ie)

I started using a diagnostic css stylesheet, e.g. http://snipplr.com/view/6770/css-diagnostics--highlight-deprecated-html-with-css--more/ One of the suggested rules highlights input tags with the ...
15
votes
6answers
377 views

Diagnosing the .NET Legacy

Assume you are taking over a legacy .NET app. written in C# What are the top 5 diagnostic measures, profiling or otherwise that you would employ to assess the health of the application? I am not ...
14
votes
4answers
8k views

How to read command line arguments of another process in C#?

How can I obtain the command line arguments of another process? Using static functions of the System.Diagnostics.Process class I can obtain a list of running processes, e.g. by name: Process[] ...
8
votes
4answers
643 views

ASP.NET MVC why does my app keep restarting?

I have an ASP.NET MVC website that gets about 6500 hits a day, on a shared hosting platform at Server Intellect. I keep seeing app restarts in the logs and I cannot figure out why. I've read Scott ...
8
votes
7answers
138 views

Policy for fixing broken nightly builds

I guess everybody agrees that having continuous builds and continuous integration is beneficial for quality of the software product. Defects are found early so they can be fixed ASAP. For continuous ...
8
votes
2answers
2k views

How do I find out which JAXP implementation is in use and where it was loaded from?

I would like to provide diagnostic information about what JAXP implementation is in use, and which JAR file it was loaded from. One way to achieve this is to create in instance of, for example, a ...
7
votes
5answers
537 views

IE7 and 8 Hangs Randomly on CSS Images

We have an ASP.NET 3.5 application that has been in production for over a year. Our last release was a couple of months ago. We use CSS for styling and application of background images to divs and ...
7
votes
6answers
193 views

Is hardware impossible to debug without software?

Disclaimer: I am (mostly) hardware ignorant. This is probably my problem. However I find it hard to accept that it is not possible to debug hardware so therefore I just wanted to get some second ...
6
votes
2answers
182 views

Cross platform crash-reporters

Are there any cross platform crash reporters for C++ besides google-break pad? I have seen google-breakpad but it has very very limited documentation, and I have nothing seen very much mentioned here, ...
5
votes
2answers
142 views

Is it possible to ensure copy elision?

Copy elision is a neat optimization technique and in some cases relying on copy elision can actually be faster than passing around references "by hand". So, let's assume you have identified a ...
5
votes
1answer
878 views

Azure: How to create the WADLogsTable for capturing diagnostics code?

I have a worker role that I would like to get diagnoistics feedback on... after adding the appropriate connection string to the ServiceConfiguration.cscfg and the following code: ...
5
votes
4answers
865 views

Simple round robin (moving average) array in C#

As a diagnostic, I want to display the number of cycles per second in my app. (Think frames-per-second in a first-person-shooter.) But I don't want to display the most recent value, or the average ...
5
votes
4answers
2k views

Performance and diagnostics tools for Silverlight

WPF 3.5 has PresentationTraceSources for diagnostics and WPFPerf for performance and data binding diagnostics. Are there equivalent tools / libraries for Silverlight?
5
votes
6answers
282 views

What should I display in my About box?

I've built a small .NET winforms utility for internal use at my company, and as the primary interface is a tab control, I've decided to add a tab for the "about box" instead of a separate form. So, I ...
4
votes
1answer
103 views

How to quickly get the managed stack trace of threads using lots of CPU

When diagnosing a high CPU issue, the first question that comes to mind is which thread(s) is using all the CPU and what is it doing (in Managed Code terms)? To figure this out one needs to install ...
4
votes
2answers
430 views

How to use GCC diagnostic pragma with C++ template functions?

I would like to use g++ and -Werror, so I have now to disable warnings for 3rd-party libraries I have no control of. The solution provided by http://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Pragmas.html ...
4
votes
2answers
159 views

Retrieving Azure diagnostics

I have an app running on Azure which logs (traces, really) to the Azure Diagnostics storage. I'm looking for a good tool which can be used to analyze these logs. I know it's possible to retrieve ...
4
votes
2answers
133 views

I am a process, how much CPU do I consume?

Is there a way (.net 2.0) for a process to know EXACT amount of processor usage it consumes (something like it would be seen in processexplorer properties/performance graph). Please, don't go much ...
4
votes
6answers
142 views

Meaningful diagnostic messages

Looking at several posts, I get a feel that many of the questions arise because compilers/implemenetation do not emit a very meaningful message many times (but not always). This is especially true in ...
4
votes
4answers
680 views

What is the most appropriate performance counter type for measuring operation time?

Say I have a method Foo() and I want to measure the time in milliseconds it took to execute which type of Windows Performance Counter should I be using? var stopwatch = new Stopwatch(); ...
4
votes
8answers
467 views

Why does the second for loop always execute faster than the first one?

I was trying to figure out if a for loop was faster than a foreach loop and was using the System.Diagnostics classes to time the task. While running the test I noticed that which ever loop I put first ...
4
votes
2answers
372 views

Is it possible to get parameters' values for each frame in call stack in .NET

I'm talking about managed .NET code. If we run any program and attach VS to it we can see parameters' values for each method in call stack. I'd like to create a logging solution which will log all ...
4
votes
4answers
11k views

How to translate MS Windows OS version numbers into product names in .NET?

How to translate MS Windows OS version numbers into product names? For example, in .NET the following two properties could be used to work out that the product is MS Windows Vista Ultimate Edition : ...
4
votes
7answers
2k views

Diagnosing application hang in a production .NET desktop program

I have trouble. One of the users of an application I'm developing is occasionally, but regularly, experiencing an application hang. When this happens, we find an entry with a source of "Application ...
3
votes
3answers
72 views

Why do some lines in my GC log show only one value for the heap size?

Most lines in my GC log look like this: 203.558: [GC 326391K->324672K(4192192K), 0.0452610 secs] The size in parentheses is the "commited heap", or (approximately) the size of the process as ...
3
votes
3answers
405 views

Catching exceptions thrown without try/catch

I recall reading about how exceptions could be caught without the use of try/catch. Basically when an exception is thrown such as "Unhandled exception" via derefencing a null pointer, there would be a ...
3
votes
3answers
340 views

Diagnosing CUDA Kernel problems

CUDA has lots of documentation and guides all over the place, but one I haven't been able to find has been any form of instruction in how to diagnose kernels that compile but get cryptic, vague error ...
3
votes
1answer
185 views

How to create predictable output with a Lazy<StackFrame>

I'm working on some internal logging framework and for the sake of performance it seems a good idea to lazily get a StackFrame. I want to use this StackFrame to get the first method outside my logging ...
3
votes
1answer
269 views

Get a number of open sockets in C#?

I'm trying to log the number of open sockets in my C# server application. Like the info you could get from "netstat -s": TCP Statistics for IPv4 Active Opens = 22765 ...
3
votes
4answers
312 views

WCF: How to diagnose faulted channels?

I'm working on shipping in a change for my lab that will hopefully help diagnose some weird channel-faulting weirdness we're seeing. There's a test application that uses DuplexChannelFactory to ...
3
votes
2answers
116 views

How to identify the caller of a Stored Procedure from within the Sproc

I have a depricated stored procedure which should no longer be called from code, but there is some system which is still calling it. This is a production server so I have very limited indirect access ...
3
votes
4answers
2k views

C#: How to get the size of available system memory?

Is it possible to get the size of system available memory in C#.NET? if yes how?
3
votes
2answers
282 views

List of all gcc diagnostics

I need a link to a webpage that lists all the error messages and warnings GCC can show; the actual messages, not descriptions. It would be preferable if the list is in the order of most frequently ...
3
votes
3answers
2k views

Getting from ProcessThread to a managed thread

Periodically we get a hang on shut down of a Windows service in a production environment that we just cannot reproduce. It can be months before it happens again. I'm putting in some diagnostics to ...
3
votes
2answers
9k views

Overriding System.Diagnostics.Trace.WriteLine to log to a file

This may be more of an OOP concept question, but here's what I'd like to do. I have an application that outputs debug information using System.Diagnostics.Trace.WriteLine so it can be viewed with ...
3
votes
5answers
2k views

Process Memory Size - Different Counters

I'm trying to find out how much memory my own .Net server process is using (for monitoring and logging purposes). I'm using: Process.GetCurrentProcess().PrivateMemorySize64 However, the Process ...
2
votes
1answer
98 views

How can I set the rollover strategy in System.Diagnostics trace log

I have a project, that using System.Diagnostics for logging, And it creating lots of new logs files, each one starting with GUID, Even when the last log file was very small I want to setup a role ...
2
votes
3answers
650 views

Measuring performance of ASP.NET MVC 3

I've built a JSON service in ASP.NET MVC 3 and I want to be able to measure the execution time of the actions in my application (I want to it to automatically log slow actions). Therefor this looked ...
2
votes
2answers
155 views

Collecting the Azure Diagnosis Log Remotely without the support of Storage Account

I have a use case where I need the Diagnostics and Performance data of the Azure Web-Role to be monitored remotely which is to be done without any Storage Account.
2
votes
4answers
238 views

GCC's two unusual error messages

Today, I came across two error messages which I never seen before. It's completely new to me. Here is the code: template<typename T> struct adder { adder(const T &item) { } }; ...
2
votes
4answers
176 views

Tools / best practices for tracing in .Net

I'm trying to trace through a large .net website to find out what's taking 4 to 5 seconds to load. Normally I just put: trace="true" in the aspx page declaration and I'm able to somewhat narrow it ...
2
votes
1answer
303 views

Custom God logging?

God has helped us keep a few services running on a Rails box (Nginx and MySQLd, specifically) but I'm hoping to get some more details when it actually swings into action. So far, setting the watch log ...
2
votes
2answers
338 views

No Event Logs in Diagnostic on Windows Azure?

I'm trying to get .NET Remoting to work on Windows Azure, with a web role. I get a 500 internal server error when trying to access the URL. I've tried using Azure MMC ...
2
votes
4answers
160 views

Security for ASP.NET Diagnostics page

I'm thinking of creating a diagnostics page for an ASP.NET app, which would be mostly intended for admin use to get more information about the application for diagnosing problems. Examples of the ...
2
votes
3answers
246 views

How can I most accurately calculate the execution time of an ASP.NET page while also displaying it on the page

I want to calculate the execution time of my ASP.NET pages and display it on the page. Currently I'm calculating the execution time using a System.Diagnostics.Stopwatch and then store the value in a ...
2
votes
2answers
66 views

.Net and SQL Server Diagnostics

Our company has many .Net applications on many servers which utilize many different SQL Servers. We do not have a clear idea of what is using what. It would be great to get a full picture of what's ...
2
votes
3answers
268 views

Fault Diagnostic Process

Has anyone created or seen a good fault diagnostic procedure for a web based solutions that an Operations team could use to do diagnostic and support with? The solution is based on a C# system ...
2
votes
1answer
326 views

Where should I put a project- or application-wide TraceSwitch in my design?

I'm trying to enhance my program with some logging functionality provided by System.Diagnostics. As my Solution consists of several projects, I wanted to create a switch for the whole application and ...
2
votes
1answer
1k views

Can you get a list of variables on the stack in C#?

All, just wondering if it's possible in .NET/C# to get a list of variables on the stack and their values? I am creating an exception handler for my app and beyond a standard stack trace I'd also like ...

1 2 3