Share via


IContainerGroup.GetLogContentAsync Method

Definition

Overloads

GetLogContentAsync(String, CancellationToken)

Get the log content for the specified container instance within the container group.

GetLogContentAsync(String, Int32, CancellationToken)

Get the log content for the specified container instance within the container group.

GetLogContentAsync(String, CancellationToken)

Get the log content for the specified container instance within the container group.

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)

Parameters

containerName
String

The container instance name.

cancellationToken
CancellationToken

Returns

Applies to

GetLogContentAsync(String, Int32, CancellationToken)

Get the log content for the specified container instance within the container group.

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)

Parameters

containerName
String

The container instance name.

tailLineCount
Int32

Only get the last log lines up to this.

cancellationToken
CancellationToken

Returns

Applies to