I have a .Net web application which has started crashing in production and I'm not sure why. It's crashing very frequently (around every 5 minutes under high load) and takes the application pool down with it. In the event log I only have the following:
Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7afa2 Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000 Exception code: 0x00000000 Fault offset: 0x000007fe97df95dc
The exception code of 0x00000000
is not particularly helpful.
Normally from here I would attempt to get a crash dump and take a look. However, whenever DebugDiag
is running, the app does not crash. This makes it much harder to track down. Memory usage climbs heavily when DebugDiag is running (2gb every 6 hours?), but I presume that is normal.
Not really sure where to go from here.