使用屬性篩選資料
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
在 Performance Monitoring 中,您可以使用屬性來區隔成效資料和重點
評估應用程式在各種實際環境中的表現
點選追蹤記錄表格中的追蹤記錄名稱 (位於清單底部)
這個
成效資訊主頁) 後,您就可以深入細查
重要指標使用
add「篩選器」按鈕
(畫面左上方) 根據屬性篩選資料,例如:
正在依屬性篩選 Firebase Performance Monitoring 資料/>
- 按「網頁網址」篩選,即可查看特定網頁的資料
網站
- 依「有效連線類型」篩選,瞭解 3G 連線對應用程式有何影響
- 依「國家/地區」篩選,確保資料庫位置並非
影響到特定區域
預設屬性
Performance Monitoring 會根據追蹤記錄的類型,自動收集各種預設屬性。
除了這些預設屬性以外
在你的網站上建立自訂屬性
自訂程式碼追蹤記錄,即可按照
類別。舉例來說,在遊戲中,您可以按
遊戲關卡。
為網頁應用程式收集的預設屬性
網頁應用程式的所有追蹤記錄預設都會收集下列屬性:
收集使用者資料
建立自訂屬性
你可以針對自己的任何檢測設備建立自訂屬性
自訂程式碼追蹤記錄。
使用 Performance Monitoring Trace API
新增自訂屬性至自訂程式碼追蹤記錄。
如要使用自訂屬性,請在應用程式中新增程式碼,定義屬性並將其與特定自訂程式碼追蹤連結。您可以設定
屬性。
注意事項:
Web
import { trace } from "firebase/performance";
const t = trace(perf, "test_trace");
t.putAttribute("experiment", "A");
// Update scenario
t.putAttribute("experiment", "B");
// Reading scenario
const experimentValue = t.getAttribute("experiment");
// Delete scenario
t.removeAttribute("experiment");
// Read attributes
const traceAttributes = t.getAttributes();
Web
const trace = perf.trace("test_trace");
trace.putAttribute("experiment", "A");
// Update scenario
trace.putAttribute("experiment", "B");
// Reading scenario
const experimentValue = trace.getAttribute("experiment");
// Delete scenario
trace.removeAttribute("experiment");
// Read attributes
const traceAttributes = trace.getAttributes();
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-09-12 (世界標準時間)。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"缺少我需要的資訊"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"過於複雜/步驟過多"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"過時"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"翻譯問題"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"示例/程式碼問題"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"其他"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"容易理解"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"確實解決了我的問題"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"其他"
}]
{"lastModified": "\u4e0a\u6b21\u66f4\u65b0\u6642\u9593\uff1a2024-09-12 (\u4e16\u754c\u6a19\u6e96\u6642\u9593)\u3002"}
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-09-12 (世界標準時間)。"]]