Tagged Questions
The event-log tag has no wiki summary.
26
votes
13answers
36k views
System.Security.SecurityException when writing to Event Log
I’m working on trying to port an ASP.NET app from Server 2003 (and IIS6) to Server 2008 (IIS7).
When I try and visit the page on the browser I get this:
Server Error in ‘/’ Application.
...
19
votes
4answers
5k views
How do you create an event log source using WiX
I'm creating an installer for a website that uses a custom event log source. I would like our WiX based installer to create that event log source during installation.
Does anyone know the best way to ...
18
votes
7answers
26k views
How to create Windows EventLog source from command line?
I'm creating an ASP.NET application that will log some stuff to Windows EventLog. To do this an event source has to be created first. This requires administrative priviledges so I cannot do it in the ...
15
votes
10answers
9k views
What is the most reliable way to create a custom event log and event source during the installation of a .Net Service
I am having difficulty reliably creating / removing event sources during the installation of my .Net Windows Service.
Here is the code from my ProjectInstaller class:
// Create Process Installer
...
9
votes
4answers
2k views
Writing Exceptions to the Windows Log File
I'd like to catch my exceptions and log them in the Windows log file. How do I go about opening and writing to the Windows log?
9
votes
2answers
7k views
Deleting Custom Event Log Source Without Using Code
I have an application that has created a number of custom event log sources to help filter its output. How can I delete the custom sources from the machine WITHOUT writing any code as running a quick ...
8
votes
6answers
7k views
What is the best way to write event log entries?
I recently had a problem during the deployment of a windows service. Four computers did not cause any problems, but on the fifth any attempt to start the service failed due to an exception. The ...
7
votes
2answers
404 views
High Performance Event Log C#
So I've been trying various ways to get Event Log data in bulk (1000+ records/second).
I need something that can filter out old logs, right now I store the last recorded event record ID and retrieve ...
7
votes
5answers
4k views
What is the Fastest way to read event log on remote machine?
I am working on an application which reads eventlogs(Application) from remote machines. I am making use of EventLog class in .net and then iterating on the Log entries but this is very slow. In some ...
6
votes
2answers
261 views
Windows Event IDs
Is there a specific range of Event IDs in Windows reserved for application developers?
I'm working on a .Net application that will write errors to the windows event log. This application actually ...
6
votes
2answers
813 views
What are best practices for event id management?
I'm trying to figure out how to manage my event ids. Up to this point I've been putting each event id in each method manually with each step in a method numbered sequentially. This doesn't allow me ...
6
votes
8answers
3k views
How to troubleshoot .NET 2.0 Error Reporting messages in the event log?
I work on an open source product called EVEMon written in C# targeting the .NET 2.0 platform, I have one user who is suffering from a strange .NET crash that we have been unable to resolve.
Event ...
6
votes
2answers
2k views
What do I need to change to alllow my IIS7 ASP.Net 3.5 application to create an event source and log events to Windows EventLog?
ASP.Net 3.5 running under IIS 7 doesn't seem to allow this out of the box.
if (!EventLog.SourceExists("MyAppLog"))
EventLog.CreateEventSource("MyAppLog", "Application");
...
5
votes
1answer
158 views
Is there a way to write to the windows event log in C?
I have a requirement to modify a simple windows service written in win32 C (not c++).
Is there a library I can use to write event log entries to the windows event log without using eventcreate.exe? ...
5
votes
1answer
2k views
Configuring a custom event log for log4net
I'm using log4net for logging (duh!). Using the EventLogAppender, I can configure my application name, so that my events will show up in the Application/"My Application Name" event log. However, I'd ...
5
votes
2answers
15k views
c# writing to the event viewer
I'm trying to write to the event viewer in my c# code, but I'm getting the wonderful "Object reference not set to an instance of an object" message. I'd appreciate some help with this code, either ...
5
votes
2answers
2k views
Windows EventLog Permissions
What permissions do I need to give a User for them to be able to write to the Windows EventLog? I have an ASP.NET application that needs to impersonate a user and that impersonated user must be able ...
4
votes
2answers
62 views
EventLog - Get available logs
Using the following code, I'm able to display all entries listed under the "Application" log:
EventLog appLog = new EventLog();
appLog.Log = "Application";
appLog.MachineName = ".";
foreach ...
4
votes
2answers
513 views
Detect manual time change and daylight savings time events in windows events log
I would like to detect during my C# application run-time a manual change of the system time and date and automatic daylight savings time change.
Moreover I am looking for a way to detect these ...
4
votes
2answers
428 views
Event Logging in C# on Windows 7/ 2008 Server
i am trying to make an event logger for my cmd line application. However I get this error when it tries to create the log for the first time.
The source was not found, but some or
all event logs ...
4
votes
2answers
456 views
How to open saved event log archive in .NET?
I have used the System.Diagnostics.EventLog to view the logs on the local computer. However, I would like to open a saved event log archive (.evt or .evtx) and view the logs that are contained in the ...
4
votes
4answers
418 views
How could I log that a Windows service is terminating because of a system shutdown?
I have a diagnostic version of a service that logs as much as possible in the OnStart() and OnStop() methods.
One event that I am unable to capture is when the computer is physically restarted. My ...
4
votes
1answer
432 views
EventLogReader Remote Performance
I am using the EventLogReader to query remote 2008 servers for events. The performance of querying the events on a remote machine is horrible (6/sec). If I query the same machine via WMI using a ...
4
votes
5answers
2k views
Unhandled IIS Exception - How can I track it down
I am seeing the following error in the event log. It is coming from our ASP.Net application. I am having trouble tracking down what is causing the error. Any suggestions appreciated!
OS: Windows ...
4
votes
1answer
2k views
Security exception when writting to an EventLog from an ASP.NET MVC application
I have a library that I created with some business logic that includes writing to a System.Diagnostics.EventLog instance. The library is normally called from a Windows Service application, but now I'm ...
4
votes
2answers
3k views
Does one need to manually create a Windows event log source when installing a Windows service
I have developed a Windows service in C#. I have created a installer with Visual Studio 2008, which installs the Windows service. Everything is good so far. I want to make sure that the event source ...
4
votes
4answers
2k views
(Windows) Exception Handling: to Event Log or to Database?
I've worked in shops where I've implemented Exception Handling into the event log, and into a table in the database.
Each have their merits, of which I can highlight a few based on my experience:
...
3
votes
2answers
129 views
log4Net eventlog permissions issue using non-administrator account
This probably isnt an issue with SiteCore per se but I've included it for completeness. I have sitecore 6.3 running under IIS7 using a custom identity for the app pool. I cant get Sitecore to write ...
3
votes
1answer
156 views
Application Event log exceeding maximum allowed count
Somehow, the Application Event log count ended up to 18,446,744,073,709,551,499. This causes MMC snap-in to fail when I want to see the event using Event Viewer, giving a System.OverflowException ...
3
votes
3answers
143 views
Is there a way to tell which EventLog caused the EntryWritten event in C#?
I'm working on a web application that shows event logs data, similar to Event Viewer. The application also has to provide a way for users to subscribe to event logs and receive notifications when an ...
3
votes
1answer
308 views
Can I list all registered event sources?
My windows service writes to the event log, but I've had various problems getting this correct. So in the process I used a number of different names. I followed an article describing how to set up ...
3
votes
2answers
909 views
Which approach is better to read Windows Event log in C#? WMI or EventLog
I need to write an application to grab event log for System/Applications. The other requirement is that I need to read event log every minute or so to grab the new event logs since I read last time.
...
3
votes
5answers
174 views
How can I log events to the event log and optionally to a file easily with Delphi?
I'm primarily looking for suggestions on logging components or libraries that are available at low or no cost. I have a Windows service and a client application that both need support for logging to a ...
3
votes
2answers
433 views
How do I read boot time events on Windows 7?
I am trying to use the ETW functions without success to read the file
C:\Windows\System32\winevt\Logs\Microsoft-Windows-Diagnostics-Performance%4Operational.evtx in order to capture boot time events.
...
3
votes
1answer
74 views
Is it possible to write to an event log contained in a folder using log4net?
The goal is to have our application specific event logs in a folder with the name of our company. So, Company/App1, Company/App2. I would prefer to accomplish this with configuration, or with very ...
3
votes
3answers
1k views
Description for event id from source cannot be found
When I write a log into windows event log, I get the event below, what's the root cause of this message, and how can I fix it? Many Thanks
The description for Event ID 51001
from source RRWS ...
3
votes
3answers
1k views
NLog: can't write to event log
I can't write to the event log with NLog. I've been able to write to the console and to a file. I've turned on exceptions in NLog and am receiving no feedback from NLog. Here is my NLog.config:
...
3
votes
3answers
372 views
ASP.NET application not logging to the windows event log
I have two ASP.NET MVC web applications. One of them logs unhandled exceptions to the windows event log. The other doesn't.
Is there a setting in IIS or the web.config to enable event log logging?
...
3
votes
1answer
708 views
3
votes
2answers
1k views
Does Windows 7 still assign Event Log permissions via the Registry?
Very simple question that I've been having trouble answering.
In Windows XP and Server 2003, I have occasionally come across a problem when trying to write to the event log.
"The source was not ...
3
votes
1answer
88 views
Using EventLog objects can cause security holes?
While reading the Traning Guide for the 70-536 exam written by Tony Northup and friends, I came across the following:
CAUTION - Avoid EventLog objects in partial trust environments
Use of ...
3
votes
2answers
818 views
Log errors in EventLog using ELMAH
I am using ELMAH to log errors in my asp.net MVC(C#) application.
I am able to log errors in xml or database. How to log errors to the eventlog using ELMAH?
3
votes
1answer
890 views
EventLog permission failing in ASP.Net on Win7
I have an ASP.Net app .net 3.5 SP1, running in Win7 . During the login process, something within the ASP.Net login control is causing a write to the security log (this sounds acceptable to me) in the ...
3
votes
1answer
1k views
What event id to use for my custom event log entries?
Is there any ranges of valid event IDs which should be used by custom applications while logging to Windows EventLog? Or I can use any event ID of my choice (1,2,3,4....).
P.S, I am developing in ...
3
votes
2answers
213 views
Adding enum values for writing to the event log
When writing to the event log, our application uses enums to generate an error number to attach to event log items. The idea is to list the things that we know can go wrong, and assign IDs to each one ...
3
votes
1answer
998 views
How do I write to a custom Windows event log?
I'm attempting to set up basic logging to the windows event log in .net via System.Diagnostics.EventLog, but I'm failing to see any events actually getting written to the log. Consider the following ...
3
votes
1answer
746 views
Diagnosing CLR errors in Windows Event Viewer
We have an .NET desktop application that crashed in production. How do we diagnose the error? I'd like to know the type of exception that occurred, the error message, and the stack trace.
Because the ...
3
votes
3answers
2k views
Custom value for the Event Log source property for ASP.NET errors
By default, ASP.NET records all uncaught exceptions to system Event Log. I’m aware of the fact that one should have a proper logging facility in place, but this is better than nothing and it serves ...
2
votes
3answers
52 views
C# EventLog Inaccessible Log
Below is an exception I encountered while running the immediately following code:
The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security.
The ...
2
votes
1answer
55 views
Reading the Windows Event Log with C# (Source != ProviderName != SourceName)
Reading the EventLog source...
I am using C# to read the Windows Event Log and I want to select/filter entries from it. The problem is that the information displayed in the Event Viewer is not always ...