Which Firebase feature allows you to receive notifications when your project spending approaches or exceeds a set budget?
Think about tools that help track and notify about costs.
Firebase Budget Alerts notify you when your spending nears or exceeds your set budget, helping you control costs.
What is the expected output when running the Firebase CLI command to list all budget alerts for a project?
firebase billing:budgets:list --project=my-firebase-projectVerify if this command exists in the Firebase CLI.
The Firebase CLI does not have a 'billing:budgets:list' command. Budgets are managed through the Google Cloud Console or 'gcloud alpha billing budgets list' command.
Which JSON snippet correctly sets a budget alert threshold at 80% of a $200 budget in Firebase billing API?
Check the exact key names used in Firebase billing API for budget and threshold.
The correct keys are 'budgetAmount' and 'thresholdRules' with 'thresholdPercent' for threshold percentage as a decimal (0.8 = 80%).
You created a budget alert in Firebase but do not see any notifications when spending exceeds the budget. What is the most likely cause?
Check if billing is properly connected to the project.
If the billing account is not linked, budget alerts cannot track spending and will not send notifications.
Which workflow correctly describes how to automate sending a custom Slack notification when Firebase billing exceeds 90% of a budget?
Think about how Firebase budget alerts integrate with Google Cloud Pub/Sub and Cloud Functions.
Budget alerts publish messages to Pub/Sub; Cloud Functions can subscribe to these and send Slack notifications automatically.