Applicaotn Insigths 使用 Application Maps 建構請求鍊路視圖
建構系統時,請求的邏輯操作大多數情況下都需要在不同的服務,或接口中完成整個請求鍊路。一個請求可以經曆多個元件,極有可能出現用戶端請求站點1,站點1請求站點2, … 站點N才是最終處理資料然後依次傳回。
在這樣的情況,如果有一個直覺的視圖來展示請求在每一個站點上的狀态(成功,失敗),當問題發生時,非常有幫助定位問題發生的地點。借助Azure 應用程式見解(Application Insights)中的遙測關聯建立的Application Maps就能實作
效果展示
實作原理
Application Insights定義了用于配置設定遙測關聯的資料模型,每個傳出操作(例如,對另一個元件的 HTTP 調用)是由依賴項遙測表示的。 依賴項遙測也定義了自身的全局獨一無二的 id,此依賴項調用發起的請求遙測将此 id 用作其 operation_parentId。通過operation_Id、operation_parentId 和 request.id,即可以生成分布式邏輯操作的視圖 (這些字段也定義了遙測調用的因果關系順序)。
執行個體建構Application Maps
在執行個體中,這一個請求進行了4段轉發。
第一段:本地代碼通路APIM(test01.azure-api.cn),
第二段:APIM通路站點1(lbphptest.chinacloudsites.cn)
第三段:站點1通路站點2(lbjavatest.chinacloudsites.cn)
第四段:站點2通路最終處理請求的Azure Function(Http Trigger)( functionapp120201013155425.chinacloudsites.cn).
準備條件
- 建立Application Insights (lbphptest202011050549)
- 建立APIM(test01)
- 建立兩個App Service (lbphptest 和lbjavatest)
- 建立一個Azure Function(functionapp120201013155425)
注:如不熟悉如何建立以上資源,可以導航到文末的參考資料部分
步驟一:在Azure Funciton中啟用并關聯Application Insights服務
進入Azure Funciton門戶,選擇Application Insights功能,根據頁面提示選擇已建立好的Application Insights (lbphptest202011050549).
建立的Function為預設的HttpTrigger模式,測試目的,代碼可以不需任何修改。參考下圖擷取到Function的URL,用于下一步在站點2中調用。
步驟二:在站點2(lbjavatest)中啟用并關聯Application Insights服務,并部署代碼請求Azure Function
進入站點2的門戶頁面,在Application Insights目錄中根據提示Enable Application Insights并選擇相同的Application Insights。
部署代碼調用步驟一中的Azure Function
//Level 3
[HttpGet]
[Route("[Action]")]
public string Fun([FromQuery] string name)
{
using (HttpClient httpClient = new HttpClient())
{
var url = $"https://functionapp120201013155425.chinacloudsites.cn/api/HttpTrigger1?name={name}";
HttpRequestMessage httpRequest = new HttpRequestMessage(HttpMethod.Get, url);
httpRequest.Headers.Add("Accept", "application/json, text/plain, */*");
var response = httpClient.SendAsync(httpRequest).Result;
string responseContent = response.Content.ReadAsStringAsync().Result;
return responseContent;
}
}
步驟三:在站點1(lbphptest)中啟用并關聯Application Insights服務,并部署代碼請求站點2
進入站點1的門戶頁面,在Application Insights目錄中根據提示Enable Application Insights并選擇相同的Application Insights。
部署代碼調用步驟二中的站點2的URL,代碼與通路Azure Function相似。
//Level 2
[HttpGet]
[Route("[Action]")]
public string FunSub([FromQuery] string name)
{
using (HttpClient httpClient = new HttpClient())
{
var url = $"https://lbjavatest.chinacloudsites.cn/WeatherForecast/fun?name={name}";
HttpRequestMessage httpRequest = new HttpRequestMessage(HttpMethod.Get, url);
httpRequest.Headers.Add("Accept", "application/json, text/plain, */*");
var response = httpClient.SendAsync(httpRequest).Result;
string responseContent = response.Content.ReadAsStringAsync().Result;
return responseContent;
}
}
步驟四:在APIM中啟用并關聯Application Insights服務, 并設定API通路站點1
進入APIM的門戶頁面,在Application Insights目錄中添加相同的Application Insights。
在APIM配置API通路站點1(lbphptest)
- 點選“Add API” 按鈕
- 選擇從App Service中建立
- 選擇站點1(lbphptest)
在接口中添加操作一個新操作,通路站點1中的接口/weatherforecast/funsub?name={name}
步驟五:在ASP.NET Core代碼中添加Application Insights SDK并配置連接配接字元串,在接口中通路APIM.
在本地代碼中添加Application Insights SDK
配置連接配接字元串(字元串中Application Insights的Overview頁面複制)
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"ApplicationInsights": {
"ConnectionString": "InstrumentationKey=xxx-xxx-xxx-xxx-xxxxx;EndpointSuffix=applicationinsights.azure.cn;IngestionEndpoint=https://chinaeast2-0.in.applicationinsights.azure.cn/"
},
"AllowedHosts": "*"
}
啟動本地程式,并通過在浏覽器中通路 https://localhost:44323/weatherforecast/Funsubfornt?name=test from local -- apim -- app 1 – app 2 -- function
檢視最終效果圖:
【END】
參考文檔:
在 Azure 門戶中建立第一個函數: https://docs.azure.cn/zh-cn/azure-functions/functions-create-first-azure-function
适用于 ASP.NET Core 應用程式的 Application Insights : https://docs.azure.cn/zh-cn/azure-monitor/app/asp-net-core
關于 API 管理: https://docs.azure.cn/zh-cn/api-management/api-management-key-concepts
在 Azure 中建立 ASP.NET Core Web 應用: https://docs.azure.cn/zh-cn/app-service/quickstart-dotnetcore?pivots=platform-linux
當在複雜的環境中面臨問題,格物之道需:濁而靜之徐清,安以動之徐生。 雲中,恰是如此!