1

I'm looking at installing Seq to view all my application exceptions in one place. This is easy to do for exceptions in my C# code, by using Serilog. However, I would like to send server event logs to Seq as well (that is, the events that show up in Event Viewer). How can I do that?

Nicholas Blumhardt
  • 30,271
  • 4
  • 90
  • 101
user1147862
  • 4,096
  • 8
  • 36
  • 53

1 Answers1

0

At present, there's no Event Log → Serilog or Event Log → Seq bridge that I'm aware of.

You can tail event logs in C# and pipe them through Serilog using EventLog.EntryWritten, if this approach is an option for you.

Nicholas Blumhardt
  • 30,271
  • 4
  • 90
  • 101