将事件日志条目保存到 Windows Azure 存储
我有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于诊断跟踪,您需要:
Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener
Logs.ScheduledTransferPeriod
设置为事件日志跟踪,您需要配置诊断以跟踪应用程序事件日志:
有关完整说明,请参阅http://blog.bareweb.eu/2011/01/beginning-azure-diagnostics/
For diagnostics trace, you need to:
Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener
in your web.configLogs.ScheduledTransferPeriod
is setupFor event log tracing, you need to configure the diagnostics to trace the Application event logs:
For full instructions see http://blog.bareweb.eu/2011/01/beginning-azure-diagnostics/
实际上,没有任何东西会自动保存在存储中。信息缓冲到磁盘上的角色中,然后(按需或按计划)传输到存储。因此,您绝对可以使用 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.