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

IContainerGroup.GetLogContentAsync 方法

定义

重载

GetLogContentAsync(String, CancellationToken)

获取容器组中指定容器实例的日志内容。

GetLogContentAsync(String, Int32, CancellationToken)

获取容器组中指定容器实例的日志内容。

GetLogContentAsync(String, CancellationToken)

获取容器组中指定容器实例的日志内容。

public System.Threading.Tasks.Task<string> GetLogContentAsync (string containerName, System.Threading.CancellationToken cancellationToken = default);
abstract member GetLogContentAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetLogContentAsync (containerName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of String)

参数

containerName
String

容器实例名称。

cancellationToken
CancellationToken

返回

适用于

GetLogContentAsync(String, Int32, CancellationToken)

获取容器组中指定容器实例的日志内容。

public System.Threading.Tasks.Task<string> GetLogContentAsync (string containerName, int tailLineCount, System.Threading.CancellationToken cancellationToken = default);
abstract member GetLogContentAsync : string * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetLogContentAsync (containerName As String, tailLineCount As Integer, Optional cancellationToken As CancellationToken = Nothing) As Task(Of String)

参数

containerName
String

容器实例名称。

tailLineCount
Int32

仅获取最后一行日志。

cancellationToken
CancellationToken

返回

适用于