IContainerGroups.GetLogContentAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetLogContentAsync(String, String, String, CancellationToken) |
Get the log content for the specified container instance within a container group. |
GetLogContentAsync(String, String, String, Int32, CancellationToken) |
Get the log content for the specified container instance within a container group. |
GetLogContentAsync(String, String, String, CancellationToken)
Get the log content for the specified container instance within a container group.
public System.Threading.Tasks.Task<string> GetLogContentAsync (string resourceGroupName, string containerGroupName, string containerName, System.Threading.CancellationToken cancellationToken = default);
abstract member GetLogContentAsync : string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetLogContentAsync (resourceGroupName As String, containerGroupName As String, containerName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of String)
Parameters
- resourceGroupName
- String
The Azure resource group name.
- containerGroupName
- String
The container group name.
- containerName
- String
The container instance name.
- cancellationToken
- CancellationToken
Returns
Applies to
GetLogContentAsync(String, String, String, Int32, CancellationToken)
Get the log content for the specified container instance within a container group.
public System.Threading.Tasks.Task<string> GetLogContentAsync (string resourceGroupName, string containerGroupName, string containerName, int tailLineCount, System.Threading.CancellationToken cancellationToken = default);
abstract member GetLogContentAsync : string * string * string * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<string>
Public Function GetLogContentAsync (resourceGroupName As String, containerGroupName As String, containerName As String, tailLineCount As Integer, Optional cancellationToken As CancellationToken = Nothing) As Task(Of String)
Parameters
- resourceGroupName
- String
The Azure resource group name.
- containerGroupName
- String
The container group name.
- containerName
- String
The container instance name.
- tailLineCount
- Int32
Only get the last log lines up to this.
- cancellationToken
- CancellationToken
Returns
Applies to
Azure SDK for .NET