在迁移到 2.0 之前,下面的代码有效(类型 CloudStorageAccount 在命名空间 StorageClient 中):
CloudStorageAccount cloudStorageAccount = CloudStorageAccount.Parse(
RoleEnvironment.GetConfigurationSettingValue(wadConnectionString));
var roleInstanceDiagnosticManager = cloudStorageAccount.CreateRoleInstanceDiagnosticManager(
RoleEnvironment.DeploymentId,
RoleEnvironment.CurrentRoleInstance.Role.Name,
RoleEnvironment.CurrentRoleInstance.Id);
StorageClient 在 2.0 中被删除,所以现在我必须使用
Microsoft.WindowsAzure.Storage.CloudStorageAccount
,位此类型没有 CreateRoleInstanceDiagnosticManager 方法
那么如何获得 CreateRoleInstanceDiagnosticManager 之前返回的实例,因为我将它用于我的性能计数器和日志