效能門檻快訊的內部酬載物件。酬載會包裝在物件中。
簽名:
export interface ThresholdAlertPayload
屬性
屬性 | 類型 | 說明 |
---|---|---|
appVersion | 字串 | 快訊觸發的應用程式版本。如果快訊是針對網路要求 (因為系統已依據所有應用程式版本的資料檢查快訊) 或網頁應用程式 (應用程式並非版本化),則可以省略這個快訊的應用程式版本。 |
條件百分位數 | 數字 | 快訊觸發條件的百分位數;如果百分位數不適用於快訊條件,則為 0。範圍:[1, 100] |
eventName | 字串 | 此快訊所屬追蹤項目或網路要求的名稱 (例如 my_custom_trace、firebase.com/api/123) |
eventType | 字串 | 這項快訊的資源類型 (即追蹤記錄、網路要求、畫面轉譯等) |
investigateUri | 字串 | 可前往 Fireconsole 深入調查這則快訊的連結 |
metricType | 字串 | 這個快訊適用的指標類型 (例如成功率、回應時間、持續時間等) |
numSamples | 數字 | 針對這項快訊條件檢查的事件數量 |
thresholdUnit | 字串 | 快訊門檻的單位 (例如「百分比」、「秒」) |
門檻值 | 數字 | 快訊條件門檻值 (不含單位,例如「75」、「2.1」) |
violationUnit | 字串 | 違規值的單位 (例如「百分比」、「秒」) |
violationValue | 數字 | 違反快訊觸發條件的值 (例如「76.5」、「3」) |
alert.performance.ThresholdAlertPayload.appVersion
快訊觸發的應用程式版本。如果快訊是針對網路要求 (因為系統已依據所有應用程式版本的資料檢查快訊) 或網頁應用程式 (應用程式並非版本化),則可以省略這個快訊的應用程式版本。
簽名:
appVersion?: string;
alert.performance.ThresholdAlertPayload.conditionPercentile
快訊觸發條件的百分位數;如果百分位數不適用於快訊條件,則為 0。範圍:[1, 100]
簽名:
conditionPercentile?: number;
alert.performance.ThresholdAlertPayload.eventName
此快訊所屬追蹤項目或網路要求的名稱 (例如 my_custom_trace、firebase.com/api/123)
簽名:
eventName: string;
alert.performance.ThresholdAlertPayload.eventType
這項快訊的資源類型 (即追蹤記錄、網路要求、畫面轉譯等)
簽名:
eventType: string;
alert.performance.ThresholdAlertPayload.investigateUri
可前往 Fireconsole 深入調查這則快訊的連結
簽名:
investigateUri: string;
alert.performance.ThresholdAlertPayload.metricType
這個快訊適用的指標類型 (例如成功率、回應時間、持續時間等)
簽名:
metricType: string;
alert.performance.ThresholdAlertPayload.numSamples
針對這項快訊條件檢查的事件數量
簽名:
numSamples: number;
alert.performance.ThresholdAlertPayload.thresholdUnit
快訊門檻的單位 (例如「百分比」、「秒」)
簽名:
thresholdUnit: string;
alert.performance.ThresholdAlertPayload.thresholdValue
快訊條件門檻值 (不含單位,例如「75」、「2.1」)
簽名:
thresholdValue: number;
alert.performance.ThresholdAlertPayload.violationUnit
違規值的單位 (例如「百分比」、「秒」)
簽名:
violationUnit: string;
alert.performance.ThresholdAlertPayload.violationValue
違反快訊觸發條件的值 (例如「76.5」、「3」)
簽名:
violationValue: number;