当 UseDevelopmentStorage=true 时,本地机器上的 Azure 跟踪日志在哪里

发布于 2024-12-06 00:09:42 字数 134 浏览 1 评论 0原文

我正在本地机器上的模拟器中运行 Windows Azure 项目,并设置了标志 UseDevelopmentStorage=true 进行跟踪。但是,我无法弄清楚跟踪/日志的去向(如果它们被写入的话)。我很感激你的帮助。

谢谢, 阿尔奇尔

I am running a Windows Azure Project in an emulator on a local box and have set the flag UseDevelopmentStorage=true for tracing. However, I cannot figure out where the traces/logs go, if they get written at all. I appreciate your help.

Thanks,
Archil

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

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

发布评论

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

评论(2

dawn曙光 2024-12-13 00:09:42

根据 http://blog.bareweb.eu/2011/01/beginning -azure-diagnostics/ 您的表存储节点中应该显示一个 WADLogsTable。您需要确保已启用诊断。

Diagnosticsenabled

并且您启用传输

public override bool OnStart()
{
DiagnosticMonitorConfiguration diagnosticMonitorConfiguration = DiagnosticMonitor.GetDefaultInitialConfiguration();
diagnosticMonitorConfiguration.Logs.ScheduledTransferPeriod = TimeSpan.FromMinutes(1.0);
CloudStorageAccount cloudStorageAccount = CloudStorageAccount.DevelopmentStorageAccount;
DiagnosticMonitor diagnosticMonitor = DiagnosticMonitor.Start(cloudStorageAccount, diagnosticMonitorConfiguration);
return base.OnStart();
}

According to http://blog.bareweb.eu/2011/01/beginning-azure-diagnostics/ you should have a WADLogsTable showing up in your Table storage node. You need to make sure that Diagnostics are enabled.

Diagnostics enabled

And that you enable transfers

public override bool OnStart()
{
DiagnosticMonitorConfiguration diagnosticMonitorConfiguration = DiagnosticMonitor.GetDefaultInitialConfiguration();
diagnosticMonitorConfiguration.Logs.ScheduledTransferPeriod = TimeSpan.FromMinutes(1.0);
CloudStorageAccount cloudStorageAccount = CloudStorageAccount.DevelopmentStorageAccount;
DiagnosticMonitor diagnosticMonitor = DiagnosticMonitor.Start(cloudStorageAccount, diagnosticMonitorConfiguration);
return base.OnStart();
}
倥絔 2024-12-13 00:09:42

在 Windows 系统托盘中,单击 Windows Azure 蓝色图标,然后选择“显示计算模拟器 UI”。在打开的窗口中找到左侧的角色实例并单击它。你会看到痕迹滚动。

In the windows system tray click on a a Windows Azure blue icon and pick Show Compute Emulator UI. In the window that opens up find you role instance on the left and click on it. You will see the traces scroll by.

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