Laravel / Frameworks: How to incident response for outage

Featured illustration for Laravel / Frameworks: How to incident response for outage

Laravel / Frameworks: How to incident response for outage. Actionable guide on how to incident response for outage in context of laravel sms gateway. Include prerequisites, steps, limits, and internal links. Priced by devices and SMS send volume; BYO phone and operator credit.

Written by the SMS Gateway team for operators who run phones and airtime themselves — not for theoretical cloud SMS demos.

InformationAndroid SMS GatewayHow-ToHub I
Article
Published
January 13, 2025
Updated
January 28, 2025
Reading time
16 minute read

Key Takeaways

  • Laravel incident response for an Android SMS gateway is two layers: Horizon/jobs, and the phone that actually sends. Restarting workers does not wake a SIM.
  • Pause promotional jobs before you debug. A recovered radio that immediately drains a campaign will starve OTP again.
  • Fail over to a spare charged, already-paired Android. Dual SIM is not automatic failover.
  • Job retries during an outage spend operator SMS credit and plan send volume. Cap them.
  • This Hub I how-to sits beside the Android-app runbook. You still bring the phone and carrier airtime.

People type laravel sms gateway how to incident response for outage at 2 a.m. because Horizon is quiet, POST /messages still returns 200, and nobody received a login code. Laravel did its job. The phone did not. This Hub I how-to is the application-layer runbook. Hardware sibling: Android app incident response. Hub: Laravel SMS gateway.

You need a working Android phone with a SIM and SMS credit from your mobile operator. Operator message costs are yours—we do not sell carrier SMS balance. Service pricing is based on device count and total SMS sent through the gateway. Compare device and SMS volume pricing.

Horizon

Jobs draining. HTTP 200. That is not delivery.

Primary SIM

Last DLR 11 minutes ago. Spare on charger takes OTP.

Queue green, radio dead

Cloud SMS vendors publish interconnect status pages. A phone gateway fails locally: Doze, yanked charger, empty prepaid, pairing drop. Laravel will happily enqueue SendSmsJob until the SIM wakes and then dump six hours of marketing onto a recovered radio. Treat the queue as an amplifier, not a health check. Device health: multi-device routing. Pairing: device setup.

Horizon going green while the SIM is dead is not recovery. Pause the promo job, then pick up the spare phone.

Severity for Laravel ops

SeverityWhat Laravel seesWhat the radio is doingFirst move
SEV-1OTP jobs succeeding in Horizon; customers have no codesOnly OTP device offline or unfundedFail over spare phone; pause bulk workers
SEV-2One connection/deviceId failing; others drainOne handset in Doze or no signalRoute OTP off that deviceId; page device owner
SEV-3Campaign queue depth rising; OTP p95 inside SLASlow DLR, still sendingOps chat; check airtime and OEM battery
SEV-4Failed job on a staff canaryLab SIMFix the canary; do not page customers

First 15 minutes

  1. Is OTP p95 outside SLA? If yes, pause promo workers immediately.
  2. Is the dedicated OTP Android online, paired, charged, and funded?
  3. If you cannot reach the handset in five minutes, fail over. Dual SIM is not a spare phone.
  4. Only then inspect Horizon: failed jobs, retry storms, feature flags still sending bulk.

Do not restart PHP-FPM as step one. The control plane accepting JSON is not the modem. Hardware sequence lives in the Android app outage how-to.

Pause jobs, not hope

Name the workers. sms-otp and sms-promo as separate Horizon supervisors so you canhorizon:pause sms-promo without freezing login codes. A single default queue is how campaigns eat OTP during recovery. Laravel queues: queue documentation.

Feature flags that wrap Http::post to the gateway beat commenting-out jobs in a hotfix. Roll the flag, not the entire release.

OTP during an incident

Isolate OTP on its own device pool before you need it. During SEV-1, do not “help” by retrying every challenge. One resend button in the product plus a capped job is enough. Product lane: OTP verification on Android. Webhooks that mark used codes: Laravel webhook receiver.

Retries burn airtime

Every SendSmsJob that the radio later accepts still spends operator credit and plan volume. An outage plus unbounded retries is how prepaid SIMs empty during the “fix.” Cap tries. Drop expired OTP jobs instead of sending a code the user already abandoned. Aggregators bill differently — we do not: Twilio vs Android SMS gateway.

Runbook checklist

  • OTP vs promo Horizon supervisors exist and are named in the wiki.
  • Spare Android charged, paired, SIM funded — not in a drawer at 12%.
  • On-call owns the cabinet key, not only the PagerDuty schedule.
  • Retry ceiling written; expired OTP jobs discarded.
  • Postmortem includes device last-seen, not only job throughput.
  • Lab drill on Free 300 lifetime SMS before you trust the page.

Next steps

Print the table. Run a failover drill on a staff number. Install the Android app · delivery reports · SMS API documentation. Android connectivity background: Android connectivity.

Jump to the live product docs for this topic—not another long-form article.

FAQ

Frequently asked questions

Direct answers about laravel sms gateway how to incident response for outage.

What is incident response for a Laravel SMS gateway outage?

A written path: detect that OTP stopped landing, pause promo queues, fail over the handset, then inspect Horizon — not the other way around. Laravel is the dispatcher. The modem is the incident.

Does Laravel hosting include carrier SMS credit during an outage?

No. Forge, Vapor, and your VPS bill are separate from operator airtime. Service pricing is based on device count and total SMS sent through the gateway. Failed retries still hit the SIM. Free is 300 SMS lifetime for drills.

Should I restart Horizon first?

Only after you know the phone is online and funded. A green queue pushing into a dead radio burns airtime when the device returns.

Is this the same as the Android app outage how-to?

No. The app guide covers OEM killers, pairing, and chargers. This page covers Laravel jobs, feature flags, and who pauses campaigns. Read both.

Where are live retry JSON fields?

Developer Center. Do not copy retry counts from a blog into production config.
Keep learning

Topically related guides—chosen by subject overlap, not a fixed sitewide footer.

Information
android phone as sms gateway how to incident response for outage

Phone as Gateway: How to incident response for outage

Phone as Gateway: How to incident response for outage. Actionable guide on how to incident response for outage in context of android phone as sms gateway. Include prerequisites, steps, limits, and internal links. Priced by devices and SMS send volume; BYO phone and operator credit.

Jun 27, 202516 min
Read article
Practical
laravel sms gateway checklist

API production readiness Checklist for Laravel / Frameworks

API production readiness Checklist for Laravel / Frameworks. Printable-style API production readiness checklist mapped to laravel sms gateway. Each item includes why it matters and a verification step. Priced by devices and SMS send volume; BYO phone and operator credit.

Mar 30, 202616 min
Read article
Information
laravel sms gateway how to avoid spammy wording

Laravel / Frameworks: How to avoid spammy wording

Laravel / Frameworks: How to avoid spammy wording. Actionable guide on how to avoid spammy wording in context of laravel sms gateway. Include prerequisites, steps, limits, and internal links. Priced by devices and SMS send volume; BYO phone and operator credit.

Apr 1, 202516 min
Read article
Information
laravel sms gateway how to choose prepaid vs postpaid sims

Laravel / Frameworks: How to choose prepaid vs postpaid SIMs

Laravel / Frameworks: How to choose prepaid vs postpaid SIMs. Actionable guide on how to choose prepaid vs postpaid SIMs in context of laravel sms gateway. Include prerequisites, steps, limits, and internal links. Priced by devices and SMS send volume; BYO phone and operator credit.

Mar 24, 202616 min
Read article

Browse the full Android SMS gateway knowledge base or return to how an Android SMS gateway works.

Get started

Test the gateway on your own Android phone

Install the app, pair one device, and validate your API flow before choosing a paid plan.

You supply the phone, SIM, and operator SMS credit.