在 C# 的事件日志中使用自定义视图(过滤器)

发布于 2024-12-01 17:30:25 字数 128 浏览 1 评论 0原文

较新版本的 Windows 可以在事件查看器中定义“自定义视图”(过滤器)。在服务器上,有一个预定义的自定义视图“管理事件”,用于过滤重要的错误和警告。

是否可以从 C# 访问这些视图,即我可以迭代“管理事件”中的所有条目吗?

Newer versions of Windows have the possibilities to define "custom views" (filters) in the event viewer. On servers, there is e.g. a pre-defined custom view "Administrative Events" which filters on important errors and warnings.

Is there a possibility to access these views from C#, i.e. could I iterate all entries in "Administrative Events"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

︶ ̄淡然 2024-12-08 17:30:25

以下代码显示了如何使用 System.Diagnostics 命名空间中的 EventLog 和 EventLogEntry 类来访问系统中的不同事件日志的示例。

EventLog[] eventLogs = EventLog.GetEventLogs(System.Environment.MachineName);

foreach (EventLog currentLog in eventLogs)
{
    Console.WriteLine("Log: " + currentLog.Log);

    int counter = 0;
    try
    {
        foreach (EventLogEntry entry in currentLog.Entries)
        {
            if (counter++ >= 10) break;
            Console.WriteLine(entry.Message);
        }
    }
    catch (SecurityException) { }
}

The following code shows an example of how to use the EventLog and EventLogEntry classes in the System.Diagnostics namespace to access the different event logs in your system.

EventLog[] eventLogs = EventLog.GetEventLogs(System.Environment.MachineName);

foreach (EventLog currentLog in eventLogs)
{
    Console.WriteLine("Log: " + currentLog.Log);

    int counter = 0;
    try
    {
        foreach (EventLogEntry entry in currentLog.Entries)
        {
            if (counter++ >= 10) break;
            Console.WriteLine(entry.Message);
        }
    }
    catch (SecurityException) { }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文