Firebase Performance Monitoring Web SDK。這個 SDK 無法在 Node.js 環境中運作。
函式
函式 | 說明 |
---|---|
功能(應用程式, ...) | |
getPerformance(應用程式) | 傳回指定應用程式的 FirebasePerformance 執行個體。 |
InitialPerformance(應用程式、設定) | 傳回指定應用程式的 FirebasePerformance 執行個體。只能呼叫一次。 |
功能(效能, ...) | |
trace(performance, name) | 傳回新的 PerformanceTrace 例項。 |
介面
介面 | 說明 |
---|---|
Firebase 成效 | Firebase Performance Monitoring 服務介面。 |
效能設定 | 定義 Performance Monitoring SDK 的設定選項。 |
PerformanceTrace | 代表 Trace 的介面。 |
function(應用程式, ...)
getPerformance(應用程式)
傳回指定應用程式的 FirebasePerformance 執行個體。
簽名:
export declare function getPerformance(app?: FirebaseApp): FirebasePerformance;
參數
參數 | 類型 | 說明 |
---|---|---|
應用程式 | Firebase 應用程式 | 要使用的 FirebaseApp。 |
傳回:
InitialPerformance(應用程式、設定)
傳回指定應用程式的 FirebasePerformance 執行個體。只能呼叫一次。
簽名:
export declare function initializePerformance(app: FirebaseApp, settings?: PerformanceSettings): FirebasePerformance;
參數
參數 | 類型 | 說明 |
---|---|---|
應用程式 | Firebase 應用程式 | 要使用的 FirebaseApp。 |
設定 | 效能設定 | FirebasePerformance 執行個體的選用設定。 |
傳回:
function(效能, ...)
trace(效能, 名稱)
傳回新的 PerformanceTrace
例項。
簽名:
export declare function trace(performance: FirebasePerformance, name: string): PerformanceTrace;
參數
參數 | 類型 | 說明 |
---|---|---|
performance | Firebase 成效 | 要使用的 FirebasePerformance 例項。 |
名稱 | 字串 | 追蹤記錄的名稱。 |
傳回: