我有一個部署到Azure的Web應用程序,但我不知道如何記錄錯誤。Azure中的ASP.NET Web應用程序 - 如何記錄錯誤?
出於測試目的,我有這個ForceError方法:
public string ForceError()
{
throw new Exception("just a test exception");
return "ok";
}
但我強制的錯誤不會出現在選定的存儲容器中。
你知道我應該怎麼做才能開始記錄應用程序中的所有錯誤?
嗨,這似乎是我正在尋找。您能詳細說明如何將App Insights用於「錯誤級別」日誌記錄和/或提供參考嗎? – nest
只是一個補充,如果像我一樣使用mvc框架,這個告訴瞭如何去做。 https://azure.microsoft.com/en-us/documentation/articles/app-insights-asp-net-exceptions/#mvc – nest