Firebase 快訊觸發條件

Firebase 針對多種專案和應用程式管理服務提供快訊 事件。以下列舉幾個 Firebase 可傳送這類快訊的事件範例:

  • 對於 Crashlytics,如果應用程式的 當機。
  • 針對 Performance Monitoring,如果應用程式的啟動時間超過所設定的門檻,我們會發出快訊通知您。
  • 對於 App Distribution,如果有測試人員註冊新的 iOS 裝置,我們會發出警示。

視快訊和專案成員設定的偏好設定而定,Firebase 會在 Firebase 主控台中顯示這類快訊,或透過電子郵件傳送。

本頁面說明如何在 Cloud Functions for Firebase (第 2 代) 中編寫函式 處理快訊事件

運作原理

您可以根據這些來源發出的警示事件觸發函式:

在典型生命週期中,由快訊事件觸發的函式會執行下列操作:

  1. 監聽/等待 Firebase 發出特定快訊類型。
  2. 發出快訊時觸發,並接收 包含事件的特定資訊
  3. 叫用函式的程式碼,以便處理事件酬載。

在發生快訊事件時觸發函式

請使用 firebase-functions/v2/alerts 子套件編寫可處理警示事件的函式。以下產品具體範例呈現了 函式:函式使用 Webhook 將訊息發布至 Discord 頻道 系統從 Firebase 發送該產品快訊時,就會觸發這個事件。

處理Crashlytics快訊事件

在以下的 Crashlytics 範例中,請使用 Cloud Functions for Firebase 執行以下動作: 處理新的嚴重當機問題的快訊事件這個函式會將快訊資訊發布至 Discord 管道的訊息中。

Discord 中的當機通知範例

新的嚴重當機問題通知示例

這個函式會監聽與 Firebase 發布新致命問題相關的事件:

Node.js

exports.postfatalissuetodiscord = onNewFatalIssuePublished(async (event) => {

Python

@crashlytics_fn.on_new_fatal_issue_published(secrets=["DISCORD_WEBHOOK_URL"])
def post_fatal_issue_to_discord(event: crashlytics_fn.CrashlyticsNewFatalIssueEvent) -> None:
    """Publishes a message to Discord whenever a new Crashlytics fatal issue occurs."""

這個函式接著會剖析傳回的事件物件 從事件酬載中剖析實用資訊,並建構訊息給 前往 Discord 頻道:

Node.js

  // construct a helpful message to send to Discord
  const appId = event.appId;
  const {id, title, subtitle, appVersion} = event.data.payload.issue;
  const message = `
🚨 New fatal issue for ${appId} in version ${appVersion} 🚨

**${title}**

${subtitle}

id: \`${id}\`
`;

Python

    # Construct a helpful message to send to Discord.
    app_id = event.app_id
    issue = event.data.payload.issue
    message = f"""
🚨 New fatal issue for {app_id} in version {issue.app_version} 🚨

# {issue.title}

{issue.subtitle}

ID: `{issue.id}`
""".strip()

最後,函式會透過 HTTP 要求將建構的訊息傳送至 Discord:

Node.js

const response = await postMessageToDiscord("Crashlytics Bot", message);
if (response.ok) {
  logger.info(
      `Posted fatal Crashlytics alert ${id} for ${appId} to Discord`,
      event.data.payload,
  );
} else {
  throw new Error(response.error);
}

Python

response = post_message_to_discord("Crashlytics Bot", message, DISCORD_WEBHOOK_URL.value)
if response.ok:
    print(f"Posted fatal Crashlytics alert {issue.id} for {app_id} to Discord.")
    pprint.pp(event.data.payload)
else:
    response.raise_for_status()

如要瞭解您可以擷取的所有 Crashlytics 快訊事件,請前往 查看 Crashlytics 則快訊

處理Performance Monitoring快訊事件

這個範例會匯出一個函式來監聽效能門檻快訊事件:

Node.js

exports.postperformancealerttodiscord = onThresholdAlertPublished(
    async (event) => {

Python

@performance_fn.on_threshold_alert_published(secrets=["DISCORD_WEBHOOK_URL"])
def post_performance_alert_to_discord(event: performance_fn.PerformanceThresholdAlertEvent) -> None:
    """Publishes a message to Discord whenever a performance threshold alert is fired."""

接著,這個函式會剖析傳回的事件物件,從事件酬載中剖析實用資訊,並建構要發布至 Discord 管道的訊息:

Node.js

      // construct a helpful message to send to Discord
      const appId = event.appId;
      const {
        eventName,
        metricType,
        eventType,
        numSamples,
        thresholdValue,
        thresholdUnit,
        conditionPercentile,
        appVersion,
        violationValue,
        violationUnit,
        investigateUri,
      } = event.data.payload;
      const message = `
    ⚠️ Performance Alert for ${metricType} of ${eventType}: **${eventName}** ⚠️
    
    App id: ${appId}
    Alert condition: ${thresholdValue} ${thresholdUnit}
    Percentile (if applicable): ${conditionPercentile}
    App version (if applicable): ${appVersion}
    
    Violation: ${violationValue} ${violationUnit}
    Number of samples checked: ${numSamples}
    
    **Investigate more:** ${investigateUri}
    `;

Python

    # Construct a helpful message to send to Discord.
    app_id = event.app_id
    perf = event.data.payload
    message = f"""
⚠️ Performance Alert for {perf.metric_type} of {perf.event_type}: **{perf.event_name}** ⚠️

App ID: {app_id}
Alert condition: {perf.threshold_value} {perf.threshold_unit}
Percentile (if applicable): {perf.condition_percentile}
App version (if applicable): {perf.app_version}

Violation: {perf.violation_value} {perf.violation_unit}
Number of samples checked: {perf.num_samples}

**Investigate more:** {perf.investigate_uri}
""".strip()

最後,函式會透過 HTTP 將建構的訊息傳送至 Discord 要求:

Node.js

const response = await postMessageToDiscord(
    "Firebase Performance Bot", message);
if (response.ok) {
  logger.info(
      `Posted Firebase Performance alert ${eventName} to Discord`,
      event.data.payload,
  );
} else {
  throw new Error(response.error);
}

Python

response = post_message_to_discord("App Performance Bot", message,
                                   DISCORD_WEBHOOK_URL.value)
if response.ok:
    print(f"Posted Firebase Performance alert {perf.event_name} to Discord.")
    pprint.pp(event.data.payload)
else:
    response.raise_for_status()

如要瞭解您可以擷取的所有成效快訊事件,請參閱 Performance Monitoring 快訊的參考說明文件。

處理App Distribution快訊事件

本節的範例說明如何為新測試人員的 iOS 裝置快訊編寫函式。

在本例中,函式會在測試人員註冊新 iOS 裝置時,監聽傳送的事件。註冊新 iOS 裝置時,您必須使用該裝置的 UDID 更新 Provisioning Profile,然後重新發布應用程式。

Node.js

exports.postnewduuidtodiscord = onNewTesterIosDevicePublished(async (event) => {

Python

@app_distribution_fn.on_new_tester_ios_device_published(secrets=["DISCORD_WEBHOOK_URL"])
def post_new_udid_to_discord(event: app_distribution_fn.NewTesterDeviceEvent) -> None:
    """Publishes a message to Discord whenever someone registers a new iOS test device."""

接著函式會剖析傳回的物件,剖析事件中實用的資訊 酬載,並建構要發布至 Discord 頻道的訊息:

Node.js

  // construct a helpful message to send to Discord
  const appId = event.appId;
  const {
    testerDeviceIdentifier,
    testerDeviceModelName,
    testerEmail,
    testerName,
  } = event.data.payload;
  const message = `
📱 New iOS device registered by ${testerName} <${testerEmail}> for ${appId}

UDID **${testerDeviceIdentifier}** for ${testerDeviceModelName}
`;

Python

    # Construct a helpful message to send to Discord.
    app_id = event.app_id
    app_dist = event.data.payload
    message = f"""
📱 New iOS device registered by {app_dist.tester_name} <{app_dist.tester_email}> for {app_id}

UDID **{app_dist.tester_device_identifier}** for {app_dist.tester_device_model_name}
""".strip()

最後,函式會透過 HTTP 將建構的訊息傳送至 Discord 要求:

Node.js

const response = await postMessageToDiscord("AppDistribution Bot", message);
if (response.ok) {
  logger.info(
      `Posted iOS device registration alert for ${testerEmail} to Discord`,
  );
} else {
  throw new Error(response.error);
}

Python

response = post_message_to_discord("App Distro Bot", message, DISCORD_WEBHOOK_URL.value)
if response.ok:
    print(f"Posted iOS device registration alert for {app_dist.tester_email} to Discord.")
    pprint.pp(event.data.payload)
else:
    response.raise_for_status()

如要瞭解您可以擷取的所有 App Distribution 快訊事件,請前往 查看 App Distribution 則快訊

如要瞭解如何使用由 App Distribution 提供的應用程式內意見回饋 Firebase 快訊, 請參閱「在應用程式中傳送意見回饋給 Jira」。