将事件日志条目保存到 Windows Azure 存储

发布于 2024-11-16 03:01:25 字数 282 浏览 5 评论 0原文

我有一个使用 System.Diagnostics.Trace 和 System.Diagnostics.EventLog 类来生成应用程序的日志记录信息的应用程序。

我知道可以配置 Azure 角色来自动将 System.Diagnostics.Trace 存储的信息保存到 Azure 存储中。

我想知道是否可以采取一些措施来获得与 System.Diagnostics.EventLog 相同的行为(更改 Azure 角色中的某些配置并将 EventLog 数据存储到 Azure 存储)。

问候

I have an application that uses the System.Diagnostics.Trace and System.Diagnostics.EventLog classes to generate the logging information of the application.

I know that it is possible to configure an Azure role to automatically save the information stored by System.Diagnostics.Trace into Azure Storage.

I want to know if there is something I can do to get the same behavior with the System.Diagnostics.EventLog (change some configuration in the Azure role and have the EventLog data stored to Azure Storage).

Regards

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

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

发布评论

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

评论(2

半世晨晓 2024-11-23 03:01:25

对于诊断跟踪,您需要:

  • 在 web.config 中使用诊断跟踪侦听器 Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener
  • 确保您的 Logs.ScheduledTransferPeriod 设置

为事件日志跟踪,您需要配置诊断以跟踪应用程序事件日志:

config.WindowsEventLog.DataSources.Add(“Application!*”);
// can also add System if you want to: config.WindowsEventLog.DataSources.Add(“System!*”);
config.WindowsEventLog.ScheduledTransferPeriod = TimeSpan.FromMinutes(5);

有关完整说明,请参阅http://blog.bareweb.eu/2011/01/beginning-azure-diagnostics/

For diagnostics trace, you need to:

  • use the diagnostics trace listener Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener in your web.config
  • ensure that your Logs.ScheduledTransferPeriod is setup

For event log tracing, you need to configure the diagnostics to trace the Application event logs:

config.WindowsEventLog.DataSources.Add(“Application!*”);
// can also add System if you want to: config.WindowsEventLog.DataSources.Add(“System!*”);
config.WindowsEventLog.ScheduledTransferPeriod = TimeSpan.FromMinutes(5);

For full instructions see http://blog.bareweb.eu/2011/01/beginning-azure-diagnostics/

只等公子 2024-11-23 03:01:25

实际上,没有任何东西会自动保存在存储中。信息缓冲到磁盘上的角色中,然后(按需或按计划)传输到存储。因此,您绝对可以使用 EventLogs 做同样的事情。您只需像平常一样使用它们,配置诊断程序来监视它们并偶尔传输到存储。使用 Windows Azure MMC 这个免费工具可以轻松完成此操作。

Actually, nothing is automatically saved in storage. The information is buffered into the role on disk and then transferred (on demand or scheduled) to storage. So, you can definitely do the same thing with EventLogs. You just use them like normal, configure Diagnostics to monitor them and occasionally transfer to storage. Use the Windows Azure MMC for a free tool to do this easily.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文