0
我對Azure App Insights分析頗爲陌生,但我仍然試圖學習如何使用查詢語言。我試圖查詢頁面視圖數據以顯示上週的瀏覽器使用情況。我可以做到這一點,但是,爲了達到我的目的,我需要將單個標題「Chrome」下的不同版本的(比如說)Chrome分組,而不是爲每個版本號輸入一個條目。然後,我希望爲其他主流瀏覽器也做同樣的事情,並最終對「其他」下的所有剩餘條目進行分組。我已經取得了一些有限的成功與下面的查詢總結了瀏覽器:在Azure App中分組結果洞察分析查詢
// Total of Page views by Browser version
pageViews
| where timestamp >= ago(7d)
| summarize
Safari = countif(client_Browser contains "Safari"), iOS =
countif(client_Browser contains "Mobile Safari"), Samsung =
countif(client_Browser contains "Samsung"), Chrome = countif(client_Browser
contains "Chrome"), Edge = countif(client_Browser contains "Edge"), Firefox
= countif(client_Browser contains "Firefox") by bin(timestamp,3h)
| order by timestamp asc
| render barchart
這的確給我看一個圖表接近我後,但是,出於某種原因,只挑選了前四個標題(Safari,iOS,Chrome和三星),但不顯示Edge或Firefox。當我不嘗試這個分組時,肯定會有來自Edge和Firefox的點擊,因爲它們出現在結果中。任何人都可以闡明我要出錯的地方嗎?
感謝