gpt4 book ai didi

.net - 即使使用默认应用程序,Azure 诊断也不存储数据

转载 作者:行者123 更新时间:2023-12-03 03:20:22 24 4
gpt4 key购买 nike

我正在尝试将 azure 诊断数据存储在存储帐户上。我尝试过以下代码:

public override bool OnStart()
{
// For information on handling configuration changes
// see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.
// Get the default initial configuration for DiagnosticMonitor.
DiagnosticMonitorConfiguration diagnosticConfiguration = DiagnosticMonitor.GetDefaultInitialConfiguration();

// Filter the logs so that only error-level logs are transferred to persistent storage.
diagnosticConfiguration.Logs.ScheduledTransferLogLevelFilter = LogLevel.Information;

// Schedule a transfer period of 30 minutes.
diagnosticConfiguration.Logs.ScheduledTransferPeriod = TimeSpan.FromMinutes(1.0);

// Specify a buffer quota of 1GB.
diagnosticConfiguration.Logs.BufferQuotaInMB = 900;

// Start the DiagnosticMonitor using the diagnosticConfig and our connection string.
DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", diagnosticConfiguration);

Trace.TraceInformation("WebRole started");

return base.OnStart();
}

此代码与 Microsoft 在 MSDN 上建议的代码相同 http://msdn.microsoft.com/en-us/library/windowsazure/microsoft.windowsazure.diagnostics.diagnosticmonitorconfiguration.logs

我尝试注释掉 BufferQuotaInMB,但没有成功。我已经在本地环境和实时部署中尝试了新创建的应用程序。事实证明,甚至 WADLogsTable 都没有创建。
我缺少什么?

注意:它在使用 windowsEventLogs 进行实时部署时工作正常。

最佳答案

不确定出了什么问题,作为替代方案,您可以尝试使用 Diagnostics.wadcfg 作为代码中的配置选项?

很少有博客文章解释如何使用它:

如何使用 Diagnostics.wadcfg 配置 Windows Azure 诊断集合:http://www.davidaiken.com/2012/02/27/how-to-use-diagnostics-wadcfg-to-configure-windows-azure-diagnostics-collection/

通过diagnostics.wadcfg配置文件配置WAD:http://blogs.msdn.com/b/davidhardin/archive/2011/03/29/configuring-wad-via-the-diagnostics-wadcfg-config-file.aspx

如何使用 Windows Azure 诊断配置文件:http://msdn.microsoft.com/en-us/library/windowsazure/hh411551.aspx

值得一试,抱歉我无法提供更多帮助......

关于.net - 即使使用默认应用程序,Azure 诊断也不存储数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10946278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com