Get-AzureWebsiteLog
取得指定網站的記錄。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
Get-AzureWebsiteLog
[-Path <String>]
[-Message <String>]
[-Tail]
[-Name <String>]
[-Slot <String>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Get-AzureWebsiteLog
[-ListPath]
[-Name <String>]
[-Slot <String>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
本主題描述 Microsoft Azure PowerShell 模組 0.8.10 版本中的 Cmdlet。
若要取得您所使用的模組版本,請在 Azure PowerShell 控制台中輸入 (Get-Module -Name Azure).Version
。
取得指定網站的記錄。
範例
範例 1:啟動記錄串流
PS C:\> Get-AzureWebsiteLog -Tail
此範例會啟動所有應用程式記錄檔的記錄串流。
範例 2:啟動 HTTP 記錄的記錄串流
PS C:\> Get-AzureWebsiteLog -Tail -Path http
此範例會啟動 HTTP 記錄的記錄串流。
範例 3:開始錯誤記錄檔的記錄串流
PS C:\> Get-AzureWebsiteLog -Tail -Message Error
此範例會啟動記錄串流,並只顯示錯誤記錄檔。
範例 4:顯示可復原的記錄
PS C:\> Get-AzureWebsiteLog -Name MyWebsite -ListPath
此範例會列出網站中的所有可用記錄路徑。
參數
-ListPath
指出是否列出記錄路徑。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Message
指定將用來篩選記錄訊息的字串。 只會擷取包含此字串的記錄。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-Name
網站的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-Path
要從中擷取記錄的路徑。 根據預設,它是 Root,這表示包含所有路徑。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-Profile
指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。
類型: | AzureSMProfile |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Slot
指定位置名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-Tail
指定是否要串流記錄。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |