Hi,
It's my daily routine to check and view my server's Event Log.
Is there any application to analyze the Windows Event Log and send me notification or report?
I saw many Commercial application when I was googling like Splunk , but any idea about open source desktop application?
Thanks
...
My application need to save event viewer logs to a specified directory and it has to be done with win api. Application and System logs are required.
EDIT: EvtExportLog - I found out that I can't use this function because minimal requirements are Win Server 2008, and I need this to work on Win Server 2000 and Win Server 2003.
Any sugges...
A .NET application running in one of our systems 24/7 suddenly crashed without logging any errors.
The only error information we were able to retrieve is in the windows events log, with this codes:
faulting module msvcr80.dll,
version 8.0.50727.3053,
stamp 4889d619,
debug? 0,
fault address 0x000144dc.
Has anyone experienced an i...
I have custom event logger, and I want to test it.
[Test]
public void AddLogWithExceptionAndEventLogEntryTypeTest()
{
const string loggerName = "mockLoggerName";
var logger = new MyLogger(loggerName);
System.Diagnostics.EventLog log = new System.Diagnostics.EventLog("System");
string log...
I was trying to find a solution for issue,,that is one Service repeatadly going on restart which is making the issue.When i checked the event log
i can see one waring before the restart occurs
Warning is
"The description for Event ID ( 1 ) in Source ( ZENworks Patch Management Agent ) cannot be found. The local computer may not have t...
I have a product developed in c# winform winservice application ,when i installed product after some time i can
see one service going Down and then Up that means restarting,this is making some issues with functionality.But
when i checked the log files , ican see one warning just before service is restarting often
The warning is like thi...
Hello,
In C# VS2008 I have a service which can run from command line and as registered service.
I am trying to debug my Service process I wondered why it does not write logs in event viewer.
I have a logger as this:
public static void Log(string s, EventLogEntryType et) {
try {
if (CService.asService) {
...
I recently created a Windows service. One thing that it faithfully does is log any errors to the Application log. I have the following code that does this:
Dim appLog = New System.Diagnostics.EventLog With {.Source = "MyService"}
appLog.WriteEntry(message, EventLogEntryType.Error, transactionID)
I also have the following in my app.con...
Hello,
I am using Visual Studio 2005 and IIS 6.0.. I have this warning in the event log. I am trying to find what it is. I have never went through this exception when i am working.
What can be done and where can be done to not get the exception warning again. Thanks so much in advance!!
Event code: 3005
Event message: An unhandled exc...
I would like a list of possible security events published by windows (all versions 2000+) to the event log.
E.g., I want to know:
Event ID: 512 (0x0200)
Type: Success Audit
Description: Windows NT is starting up.
For every event.
I also need it in a parseable (csv, json, xml) format.
See this article: http://blogs.msdn.com/b/eric...
I'm using NLog to record my logging, everything is working fine, but now I have installed the application on to a WebService in IIS 6, it is not logging to the EventLog, all other logs are working okay.
What do I need to configure to get this working on the Server?
...