Megosztás a következőn keresztül:


ContainerGroupResource.GetContainerLogs Method

Definition

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

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/logs
  • Operation Id: Containers_ListLogs
  • Default Api Version: 2023-05-01
public virtual Azure.Response<Azure.ResourceManager.ContainerInstance.Models.ContainerLogs> GetContainerLogs (string containerName, int? tail = default, bool? timestamps = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetContainerLogs : string * Nullable<int> * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.ContainerInstance.Models.ContainerLogs>
override this.GetContainerLogs : string * Nullable<int> * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.ContainerInstance.Models.ContainerLogs>
Public Overridable Function GetContainerLogs (containerName As String, Optional tail As Nullable(Of Integer) = Nothing, Optional timestamps As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of ContainerLogs)

Parameters

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.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

containerName is an empty string, and was expected to be non-empty.

containerName is null.

Applies to