I do everything to keep stuff out of the Windows event log because it's slow, impossible to query large swathes of data, noisy and difficult to get things to talk to it due to NT permissions and sources being stateful. Not only that you have to pay piles of cash for anything even slightly reliable for forwarding of logs (built in service for this is terrible) and the tooling is foul. Now to the original problem, what…
Sysmon – Log system activity to the Windows event log
21–30 of 31 posts
Re: Sysmon – Log system activity to the Windows event log
#22I am confused. Is this in fact new or has there been a new release. Sysmon has been around for a while, no?
Your comment reminds me of when I tried to come up with an original and descriptive name for a little utility for logging SNMP traps. Everything that came to mind was taken, in some cases by several different projects...
Re: Sysmon – Log system activity to the Windows event log
#23I do everything to keep stuff out of the Windows event log because it's slow, impossible to query large swathes of data, noisy and difficult to get things to talk to it due to NT permissions and sources being stateful. Not only that you have to pay piles of cash for anything even slightly reliable for forwarding of logs (built in service for this is terrible) and the tooling is foul. Now to the original problem, what…
I didn't understand how the MAC framework relates to this discussion but in any case, check this: http://msdn.microsoft.com/en-us/library/bb625964.aspx
> Yes i know NT can do this on its own but NT is just the runtime environment for win32 these days rather than the technical achievement it was
Uh?
Re: Sysmon – Log system activity to the Windows event log
#24Earlier quoted context omitted.
It's been awhile, but I know I was logging custom events to the Event Log over 10 years ago, and I'm pretty sure MMC (or whatever its successor might be called) allowed custom filters so that a person could select a particular slice of the log pie.
It does but have you tried it in an aggregated store from 30 machines? It took 46 minutes to extract a single named (last 8 digits of a guid) error ID as it has to scan the entire log. Syslog on a Linux box and some front end indexing using a python script and sqlite: 0.04s. I could probably have built that for windows but it wouldn't be 55 lines of code including the error query page Python CGI and taken me about 40…
My guess is that you're comparing an Enhanced Apple with a Vanilla Orange.
Re: Sysmon – Log system activity to the Windows event log
#25I do everything to keep stuff out of the Windows event log because it's slow, impossible to query large swathes of data, noisy and difficult to get things to talk to it due to NT permissions and sources being stateful. Not only that you have to pay piles of cash for anything even slightly reliable for forwarding of logs (built in service for this is terrible) and the tooling is foul. Now to the original problem, what…
Windows Event Log system is far from slow with the not so recent improvements since Windows Vista. Noisy? Perhaps you should complain about the specific application that is logging the events. I didn't understand how the MAC framework relates to this discussion but in any case, check this: http://msdn.microsoft.com/en-us/library/bb625964.aspx > Yes i know NT can do this on its own but NT is just the runtime environme…
Integrity control is not MAC. It appeases a few problems but misses the point.
It is very slow. Two orders of magnitude slower than syslogng. When there is forwarding back pressure it just shits itself. It's awfully designed from end to end.
Last comment: NT has proper ACLs (object manager) but a lot of the power is lost via the win32 subsystem.
Re: Sysmon – Log system activity to the Windows event log
#26Earlier quoted context omitted.
It does but have you tried it in an aggregated store from 30 machines? It took 46 minutes to extract a single named (last 8 digits of a guid) error ID as it has to scan the entire log. Syslog on a Linux box and some front end indexing using a python script and sqlite: 0.04s. I could probably have built that for windows but it wouldn't be 55 lines of code including the error query page Python CGI and taken me about 40…
Could you describe what you mean by "front end indexing" and how that is specified in your solution? My guess is that you're comparing an Enhanced Apple with a Vanilla Orange.
Re: Sysmon – Log system activity to the Windows event log
#27Earlier quoted context omitted.
No only is the Windows Event Log impossible to query, it's also pretty rare to see a software actually log anything useful on Windows. I'm not trying to bash Microsoft, it just seems more common for software developed for Windows to have bad/missing/useless logging. I think this might be a culture thing, because it's not actually impossible to do, it's just really rare to see. On Unix-like systems we're all use to be…
> it's also pretty rare to see a software actually log anything useful on Windows. Indeed there is a whole huge market doing that (logging and correlating useful information) APM (Application Performance Monitoring). You can take a look at: Compuware, Riverbed, and New Relic. Currently this market is fragmenting in analytics products such as Splunk + agents distributed by different vendors.
Re: Sysmon – Log system activity to the Windows event log
#28I do everything to keep stuff out of the Windows event log because it's slow, impossible to query large swathes of data, noisy and difficult to get things to talk to it due to NT permissions and sources being stateful. Not only that you have to pay piles of cash for anything even slightly reliable for forwarding of logs (built in service for this is terrible) and the tooling is foul. Now to the original problem, what…
Recently I found this agent: http://nxlog-ce.sourceforge.net/ but I haven't yet the occasion to try it. Probably a good approach would be using this kind of agent plus something like Logstash.
On the other hand sometimes it happened to me to find servers with event log corrupted, so log was lost (and it was not possible to log other info before doing a reset of the log). That's not nice..
[1] http://www.microsoft.com/en-us/download/details.aspx?id=2465...
Re: Sysmon – Log system activity to the Windows event log
#29Earlier quoted context omitted.
I guess so. Strange sense of deja vu, but I will take your word for it.
Same here, they have a lot of tools called x-monitor, or xmon for short. I think we are subconsciously substituting the generic names like: file, process, disk.
Re: Sysmon – Log system activity to the Windows event log
#30Earlier quoted context omitted.
> it's also pretty rare to see a software actually log anything useful on Windows. Indeed there is a whole huge market doing that (logging and correlating useful information) APM (Application Performance Monitoring). You can take a look at: Compuware, Riverbed, and New Relic. Currently this market is fragmenting in analytics products such as Splunk + agents distributed by different vendors.
How does New Relic make IIS log useful things?