Sdílet prostřednictvím


ContainersOperationsExtensions.ListLogs Method

Definition

Get the logs for a specified container instance.

public static Microsoft.Azure.Management.ContainerInstance.Models.Logs ListLogs (this Microsoft.Azure.Management.ContainerInstance.IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName, int? tail = default, bool? timestamps = default);
static member ListLogs : Microsoft.Azure.Management.ContainerInstance.IContainersOperations * string * string * string * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.ContainerInstance.Models.Logs
<Extension()>
Public Function ListLogs (operations As IContainersOperations, resourceGroupName As String, containerGroupName As String, containerName As String, Optional tail As Nullable(Of Integer) = Nothing, Optional timestamps As Nullable(Of Boolean) = Nothing) As Logs

Parameters

operations
IContainersOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group.

containerGroupName
String

The name of the container group.

containerName
String

The name of the container instance.

tail
Nullable<Int32>

The number of lines to show from the tail of the container instance log. If not provided, all available logs are shown up to 4mb.

timestamps
Nullable<Boolean>

If true, adds a timestamp at the beginning of every line of log output. If not provided, defaults to false.

Returns

Remarks

Get the logs for a specified container instance in a specified resource group and container group.

Applies to