Firebase सूचना के ट्रिगर

Firebase कई तरह के प्रोजेक्ट और ऐप्लिकेशन मैनेजमेंट के लिए सूचना देता है इवेंट. Firebase आपको यह मैसेज कब भेज सकता है, इसके लिए यहां कुछ इवेंट के उदाहरण दिए गए हैं अलर्ट का टाइप:

  • Crashlytics के लिए, अगर आपके ऐप्लिकेशन में तेज़ी से बढ़ोतरी होती है, तो हम आपको इसकी सूचना दे सकते हैं बंद हो जाता है.
  • Performance Monitoring के लिए, हम आपको सूचित कर सकते हैं कि आपके ऐप्लिकेशन के शुरू होने में कितना समय लगता है कॉन्फ़िगर किया गया थ्रेशोल्ड.
  • App Distribution के लिए, अगर आपका कोई टेस्टर नया iOS रजिस्टर करता है, तो हम आपको इसकी सूचना दे सकते हैं डिवाइस.

सूचना और प्रोजेक्ट की सेट की गई सेटिंग के आधार पर सदस्य, Firebase इस तरह की सूचनाएं Firebase कंसोल में दिखाता है या उन्हें भेजता है देखें.

इस पेज पर, Cloud Functions for Firebase (2nd gen) में फ़ंक्शन लिखने का तरीका बताया गया है जो अलर्ट इवेंट हैंडल करते हैं.

यह कैसे काम करता है?

इन सोर्स से जनरेट होने वाली सूचना इवेंट के जवाब में, फ़ंक्शन ट्रिगर किए जा सकते हैं:

किसी सामान्य लाइफ़साइकल में, किसी सूचना इवेंट से ट्रिगर होने वाला फ़ंक्शन, फ़ॉलो किया जा रहा है:

  1. Firebase से मिलने वाली किसी खास तरह की चेतावनी को सुनता है/इंतज़ार करता है.
  2. यह तब ट्रिगर होता है, जब सूचना भेजी जाती है. साथ ही, उस इवेंट पेलोड को ट्रिगर किया जाता है जो इवेंट के बारे में खास जानकारी मौजूद हो.
  3. इवेंट पेलोड को हैंडल करने के लिए, आपके फ़ंक्शन के कोड को शुरू करता है.

सूचना से जुड़े इवेंट पर फ़ंक्शन ट्रिगर करें

ऐसा फ़ंक्शन लिखने के लिए firebase-functions/v2/alerts सबपैकेज का इस्तेमाल करें चेतावनी वाले इवेंट मैनेज करता है. अलग-अलग प्रॉडक्ट के ये उदाहरण दिखाते हैं कि वर्कफ़्लो में एक फ़ंक्शन, 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()

आखिर में, फ़ंक्शन बनाया गया मैसेज 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()

आखिर में, यह फ़ंक्शन एक एचटीटीपी के ज़रिए, बनाए गए मैसेज को 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 से अपडेट करें और फिर फिर से लोगों तक पहुंचाना.

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()

आखिर में, यह फ़ंक्शन एक एचटीटीपी के ज़रिए, बनाए गए मैसेज को 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 को ऐप्लिकेशन में सुझाव भेजें को देखें.