Hi,
I'm looking for a way to data mine the event logs of a remote computer in C#.
The problem I have is that I'm working with Amazon web services and in production we use the auto-scaler to bring up/shut up live virtual machine instances as necessary. However, the web services we have running on these instances all log to its local event log which represents two problems: - the logs are lost when the instances is removed - we won't know which instances to log on to when we do need to check the logs Therefore, we need a way to poll and potentially filter by criticality of the logs that are in the event logs on the live virtual machine instances. We have a module (in C#) which is able to find out what instances are running but what do I need to do to access the event logs on those instances?
Any help would be greatly appreciated! Many thanks in advance.