你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ComputeNode.UploadComputeNodeBatchServiceLogs 方法

定义

重载

UploadComputeNodeBatchServiceLogs(String, DateTime, Nullable<DateTime>, IEnumerable<BatchClientBehavior>)

从指定的计算节点上传Azure Batch服务日志文件。

UploadComputeNodeBatchServiceLogs(String, ComputeNodeIdentityReference, DateTime, Nullable<DateTime>, IEnumerable<BatchClientBehavior>)

从指定的计算节点上传Azure Batch服务日志文件。

UploadComputeNodeBatchServiceLogs(String, DateTime, Nullable<DateTime>, IEnumerable<BatchClientBehavior>)

Source:
ComputeNode.cs

从指定的计算节点上传Azure Batch服务日志文件。

public Microsoft.Azure.Batch.UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs (string containerUrl, DateTime startTime, DateTime? endTime = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.UploadComputeNodeBatchServiceLogs : string * DateTime * Nullable<DateTime> * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.UploadBatchServiceLogsResult
Public Function UploadComputeNodeBatchServiceLogs (containerUrl As String, startTime As DateTime, Optional endTime As Nullable(Of DateTime) = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As UploadBatchServiceLogsResult

参数

containerUrl
String

Azure Blob 存储中要向其上传 Batch 服务日志文件的容器的 URL () 。 URL 必须包含共享访问签名 (SAS) 授予对容器的写入权限。

startTime
DateTime

上传 Batch 服务日志文件的时间范围开始 () 。 将上传包含时间范围内日志消息的任何日志文件。 这意味着操作检索的日志可能比请求的日志多,因为始终上传整个日志文件。

endTime
Nullable<DateTime>

上传 Batch 服务日志文件的时间范围结束 () 。 将上传包含时间范围内日志消息的任何日志文件。 这意味着操作检索的日志可能比请求的日志多,因为始终上传整个日志文件。 如果省略此值,则默认值为当前时间。

additionalBehaviors
IEnumerable<BatchClientBehavior>

在 之后应用于 Batch 服务请求的实例集合BatchClientBehaviorCustomBehaviors

返回

上传批处理服务日志的结果。

注解

这是用于在遇到错误并希望升级到Azure 支持时,以自动方式从节点收集Azure Batch服务日志文件。 应与 Azure 支持 共享Azure Batch服务日志文件,以帮助调试 Batch 服务的问题。

适用于

UploadComputeNodeBatchServiceLogs(String, ComputeNodeIdentityReference, DateTime, Nullable<DateTime>, IEnumerable<BatchClientBehavior>)

Source:
ComputeNode.cs

从指定的计算节点上传Azure Batch服务日志文件。

public Microsoft.Azure.Batch.UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs (string containerUrl, Microsoft.Azure.Batch.ComputeNodeIdentityReference identityReference, DateTime startTime, DateTime? endTime = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.UploadComputeNodeBatchServiceLogs : string * Microsoft.Azure.Batch.ComputeNodeIdentityReference * DateTime * Nullable<DateTime> * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.UploadBatchServiceLogsResult
Public Function UploadComputeNodeBatchServiceLogs (containerUrl As String, identityReference As ComputeNodeIdentityReference, startTime As DateTime, Optional endTime As Nullable(Of DateTime) = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As UploadBatchServiceLogsResult

参数

containerUrl
String

Azure Blob 存储中要向其上传 Batch 服务日志文件的容器的 URL () 。 URL 必须包含共享访问签名 (SAS) 授予对容器的写入权限。

identityReference
ComputeNodeIdentityReference

用于写入容器的托管标识。

startTime
DateTime

上传 Batch 服务日志文件的时间范围开始 () 。 将上传包含时间范围内日志消息的任何日志文件。 这意味着操作检索的日志可能比请求的日志多,因为始终上传整个日志文件。

endTime
Nullable<DateTime>

上传 Batch 服务日志文件的时间范围结束 () 。 将上传包含时间范围内日志消息的任何日志文件。 这意味着操作检索的日志可能比请求的日志多,因为始终上传整个日志文件。 如果省略此值,则默认值为当前时间。

additionalBehaviors
IEnumerable<BatchClientBehavior>

在 之后应用于 Batch 服务请求的实例集合BatchClientBehaviorCustomBehaviors

返回

上传批处理服务日志的结果。

注解

这是用于在遇到错误并希望升级到Azure 支持时,以自动方式从节点收集Azure Batch服务日志文件。 应与 Azure 支持 共享Azure Batch服务日志文件,以帮助调试 Batch 服务的问题。

适用于