Firebase ให้การแจ้งเตือนสําหรับเหตุการณ์การจัดการโปรเจ็กต์และแอปที่หลากหลาย ตัวอย่างเหตุการณ์ที่ Firebase สามารถส่งการแจ้งเตือนประเภทนี้ได้มีดังนี้
- สำหรับ Crashlytics เราจะแจ้งเตือนคุณหากแอปของคุณมีการขัดข้องเพิ่มขึ้นอย่างมาก
- สำหรับ Performance Monitoring เราจะแจ้งเตือนคุณหากเวลาเริ่มต้นของแอปเกินเกณฑ์ที่กำหนดค่าไว้
- สำหรับ App Distribution เราสามารถแจ้งเตือนคุณได้หากผู้ทดสอบรายใดรายหนึ่งลงทะเบียนอุปกรณ์ iOS เครื่องใหม่
Firebase จะแสดงการแจ้งเตือนประเภทเหล่านี้ในคอนโซล Firebase หรือส่งทางอีเมล ทั้งนี้ขึ้นอยู่กับการแจ้งเตือนและค่ากําหนดที่ตั้งไว้โดยสมาชิกโปรเจ็กต์
หน้านี้อธิบายวิธีเขียนฟังก์ชันใน Cloud Functions for Firebase (รุ่นที่ 2) ที่จัดการเหตุการณ์การแจ้งเตือน
วิธีการทำงาน
คุณสามารถทริกเกอร์ฟังก์ชันเพื่อตอบสนองต่อเหตุการณ์การแจ้งเตือนที่มาจากแหล่งที่มาต่อไปนี้
- จัดการเหตุการณ์การแจ้งเตือน App Distribution
- จัดการเหตุการณ์การแจ้งเตือน Crashlytics
- จัดการเหตุการณ์การแจ้งเตือน Performance Monitoring
ในวงจรปกติ ฟังก์ชันที่ทริกเกอร์โดยเหตุการณ์การแจ้งเตือนจะทําสิ่งต่อไปนี้
- ฟัง/รอการแจ้งเตือนบางประเภทจาก Firebase
- ทริกเกอร์เมื่อมีการแจ้งเตือน และรับเพย์โหลดเหตุการณ์ซึ่งมีข้อมูลที่เฉพาะเจาะจงเกี่ยวกับเหตุการณ์
- เรียกใช้โค้ดของฟังก์ชันเพื่อจัดการเพย์โหลดเหตุการณ์
เรียกใช้ฟังก์ชันเมื่อเกิดเหตุการณ์การแจ้งเตือน
ใช้แพ็กเกจย่อย firebase-functions/v2/alerts
เพื่อเขียนฟังก์ชันที่จัดการเหตุการณ์การแจ้งเตือน ตัวอย่างเฉพาะผลิตภัณฑ์ต่อไปนี้แสดงเวิร์กโฟลว์ที่ฟังก์ชันใช้ Webhook เพื่อโพสต์ข้อความไปยังแชแนล Discord เมื่อมีการแจ้งเตือนสำหรับผลิตภัณฑ์นั้นจาก Firebase
จัดการเหตุการณ์การแจ้งเตือน Crashlytics
ในตัวอย่าง Crashlytics ต่อไปนี้ คุณใช้ Cloud Functions for Firebase เพื่อจัดการเหตุการณ์การแจ้งเตือนเกี่ยวกับปัญหาข้อขัดข้องร้ายแรงใหม่ ฟังก์ชันนี้จะโพสต์ข้อมูลการแจ้งเตือนในข้อความไปยังช่อง 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 ผ่านคำขอ HTTP ดังนี้
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 ผ่านคําขอ HTTP
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 ผ่านคําขอ HTTP
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
หากต้องการดูวิธีใช้ฟังก์ชันที่ทริกเกอร์โดยการแจ้งเตือน Firebase เกี่ยวกับความคิดเห็นในแอปจาก App Distribution ให้ดูส่งความคิดเห็นในแอปไปยัง Jira