本文是Azure Application Insights REST API的簡單介紹,並會包含一個經過Python消費API的示例/小工具。html
新加入的team中的一項工做是製做平常的運維報表,製做方式是手工前往portal.azure.com,在網頁中屢次執行不一樣的查詢語句、導出excel,以後再人工進行合併、分組、彙總、分析等等。這是一個繁瑣的過程,其中大部分步驟其實不值得花費人工,應該交給程序。爲了自動化這一過程,下降報表的製做成本,我嘗試使用了Azure Application Insights REST API查詢數據,使用python客戶端進行處理、輸出。下面把相關的一些知識和經驗寫在這裏。python
本文連接:http://www.javashuo.com/article/p-tilvbbli-gc.html json
原創內容,轉載請註明api
Application Insights是Azure平臺的監控功能的一部分,用於收集、分析和處理來自Azure或其它本地環境的遙測數據。它包含強有力的分析工具,能夠幫助你發現問題、診斷問題、理解用戶在app上的行爲,能夠支持你持續地改進應用的性能和可用性。它能夠和DevOps過程集成,和不少開發工具備鏈接點。併發
它支持多種語言和框架,好比.NET, Java, 和Node.js等。app
更多信息,參考:What is Application Insights?框架
除了在Azure中使用外,Application Insights收集的數據也能夠經過REST API獲取,這使得你能夠用本身的其它應用來使用相關數據。API能夠分爲3種:運維
Metrics: 用於查詢聚合結果,好比必定時間範圍內的系統異常總數量。async
Events: 使用OData語法訪問event數據,支持$filter, $orderBy, $search, $apply, $top, $skip and $format,能夠返回單獨的event數據或者event集的聚合數據。ide
Query: 容許用戶發送和在Application Insights Analytics中同樣的Query查詢數據,返回數據的同時也會返回數據的schema。這是我用到的類型。
API的格式以下,
https://{hostname}/{api-version}/apps/{resource}/{area}/[path]?[parameters]
其中,
(這裏是有關Public API format的部分,此外還有Azure API format)
須要使用上文提到的Application ID和下面提到的API Key來訪問API,不然調用接口會失敗,返回認證錯誤的消息,好比,
在API Access選項下選擇Create API key,填寫描述並勾選"Read telemetry"。
點擊Generate key,會獲得一個key字符串。注意,在這裏必須保存key,由於關閉頁面以後,沒法經過任何方式再查詢到生成的key。若是key丟失,只能重建另外一個key。
有了Application ID和API key,就能夠訪問API了。
這個頁面有一個很好的例子,能夠參考:
能夠用postman之類的工具測試http請求。
注意,query中使用的Kusto查詢引擎是一個即席查詢引擎(ad-hoc query engine),它會嘗試在內存中保存所有相關數據來知足查詢,這致使查詢可能會無限制地佔用服務資源,帶來風險。所以,Kusto提供了一些內置的查詢限制以免風險。好比,單次查詢的結果大小不能夠超過64MB。
更多限制,請參考:Query limits
由於程序可能須要對不一樣的Application Insight的不一樣的API執行不一樣的Query,所以,基本的處理思路是在配置文件中配置相關信息,程序從配置文件中讀取須要執行的所有query,逐一查詢後,返回結果列表。
下面是json格式的配置文件(profile.json)和python代碼。
{ "application_insight": { "host": "api.applicationinsights.io", "apps": { "my-app-insights": { "id": "d1e9f429-c437-6034b32df878", "description": "it is an example", "apis": { "exception_monitor": { "description": "daily report", "key": "01234qwerrttyypolmknbshjdfggu", "version": "v1" } } } }, "queries": [ { "name": "query1", "app": "my-app-insights", "api": "exception_monitor", "statement": "exceptions | where operation_Name == \"\"", "time_field_name": "timestamp" }, { "name": "query2", "app": "my-app-insights", "api": "exception_monitor", "statement": "exceptions | where operation_Name contains \"AdapterV1\"", "time_field_name": "timestamp" } ], "default_filter": { "time_range": "between( endofday( now(), -8) .. endofday( now(), -1) )" } } }
說明,
查詢代碼以下:
import requests import json import asyncio async def request_get(url, headers, name): return {name: json.loads(requests.get(url, headers=headers).text)} async def __execute_query(config): default_filter = config["default_filter"] http_requests = [] for query in config["queries"]: app = config["apps"][query["app"]] api = app["apis"][query["api"]] query_url = f'''https://{config["host"]}/{api["version"]}/apps/{app["id"]}/query?query={query["statement"]}''' if query["time_field_name"] and default_filter["time_range"]: query_url = query_url + f''' and {query["time_field_name"]} {default_filter["time_range"]} ''' headers = {'X-Api-Key': api["key"]} http_requests.append(request_get(query_url, headers, query["name"])) return await asyncio.gather(*http_requests) def execute_query(): with open('profile.json', 'r') as config_file: query_config = json.load(config_file)["application_insight"] return asyncio.run(__execute_query(query_config))
基本思路是從配置文件加載queries,逐個放入任務列表中,最後統一併發執行、獲取結果。
其中使用了request發送http請求、asyncio實現併發。
本文是我關於Azure Application Insights REST API的知識和實踐的總結。這不是Azure Application Insights REST API的所有,能夠參考微軟文檔以獲取更多信息。