1
vote
1answer
16 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 a …
0
votes
1answer
23 views
How to implement correlation ID in Windows EventLog with .NET?
Hello, we are about to start using EventLog as our Centralized Auditing solution. A problem I am facing right now is recording correlation of log entries. For example we have opera …
0
votes
0answers
32 views
Event Logging IPAddress does not always resolve
Hey Stack Overflow,
I am hooking the Security event log with System.Diagnostics.Eventing.Reader.EventLogWatcher class, and I am watching Event ID 4625 on a 2008 server box, for in …
0
votes
1answer
29 views
Setting maximum event log size
Why is the following code not working?
if(EventLog.Exists("Foo"))
{
EventLog.Delete("Foo");
}
if(EventLog.Exists("Foo") == false)
{
EventLog.CreateEventSource("Foo", "F …
0
votes
4answers
232 views
C# Service Timeout (30000 milliseconds) waiting for a transaction response in event viewer
I have a C# service. It is a memory and CPU pig. It will run all night, moving data in the database. Around 7 am it post to the event viewer, repeatedly,
Timeout (30000 millis …
1
vote
2answers
232 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 tha …
3
votes
2answers
108 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. Th …
1
vote
1answer
162 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 appl …
0
votes
1answer
91 views
Silverlight Event Log in Isolated Storage
Has anyone written an event log that uses Isolated Storage in Silverlight 3?
Any suggestions on implementing one?
Specific questions:
Should I keep a stream writer open, or shou …
1
vote
2answers
689 views
C# Windows EventLog EntryWritten Handler
I have the following code in both a C# console app and a C# windows service. It works in the console app. It picks up the specified event, and calls MatchEvent() correctly. The sam …
0
votes
5answers
1k 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 …
0
votes
2answers
79 views
SQL Server spams in event log on every call of extended proc
I've wrote an extended stored procedure in dll.
Every time I call it, SQL Server wrote useless "Information" in Windows Event Log (Windows Logs\Application):
Event Type: Informati …
0
votes
2answers
94 views
Powershell get-eventlog message column is too short
When using powershell to retrieve info about events Message column gets trimmed and is too short:
Index Time Type Source EventID Message
----- ---- …
0
votes
1answer
49 views
Event Log written as Warning instead of Error
I'm using EntLib 4.1 for logging. When I have an exception handled in the Application_Error of Global.asax.cs, I log the error with a category of 'Error'. I assumed that the event …
6
votes
4answers
555 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?
