{"id":5677,"date":"2026-03-29T13:05:14","date_gmt":"2026-03-29T07:35:14","guid":{"rendered":"https:\/\/blog.spike.sh\/?p=5677"},"modified":"2026-03-29T13:06:41","modified_gmt":"2026-03-29T07:36:41","slug":"how-to-handle-midnight-incidents","status":"publish","type":"post","link":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/","title":{"rendered":"How to handle midnight incidents without waking everyone up"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">When a midnight incident triggers, the goal is not to wake your entire team. It&#8217;s to reach the one person who can act on it. Everyone else should sleep through it undisturbed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The difference between a team that handles midnight incidents well and one that doesn&#8217;t usually comes down to a few decisions made ahead of time. Which incidents actually need a midnight response? Who should get the call? And what should happen to everything else? This guide walks through those decisions.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Table of contents<\/strong><\/p>\n\n\n\n<nav aria-label=\"Table of Contents\" class=\"wp-block-table-of-contents\"><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#decide-what-actually-needs-a-midnight-response\">Decide what actually needs a midnight response<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#route-midnight-incidents-to-the-right-person\">Route midnight incidents to the right person<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#keep-the-noise-away-from-your-on-call\">Keep the noise away from your on-call<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#when-the-call-does-come-through\">When the call does come through<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#faqs\">FAQs<\/a><\/li><\/ol><\/nav>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 id=\"decide-what-actually-needs-a-midnight-response\" class=\"wp-block-heading\">Decide what actually needs a midnight response<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Not every incident that&#8217;s urgent at 11 AM is urgent at 2 AM. And some incidents become more urgent at night precisely because nobody is around to catch them naturally.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A Redis cluster running at 92% memory during business hours is something your team can keep an eye on. The same threshold at midnight is different because there&#8217;s no one watching the dashboard. If it hits 100% before morning, your cache layer goes down silently.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The reverse is also true. A log ingestion service falling behind at 2 AM probably doesn&#8217;t need anyone out of bed. The logs will queue up and the backlog can be cleared once the team is back online.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It can be useful to think about this as two separate lists. One list for incidents that need a midnight response and one for incidents that can wait until morning.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The &#8220;wake someone up&#8221; list usually includes anything that directly affects customers, revenue, or data integrity.<\/strong> A payment gateway returning errors, a primary database running out of connections, or an authentication service going down would all probably land here.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The &#8220;wait until morning&#8221; list often includes internal tooling, non-production environments, and background jobs that have built-in retry logic.<\/strong> A CI runner throwing teardown warnings overnight or a dev cluster scaling down unexpectedly can sit in a queue until someone is at their desk.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The important thing is to write this classification down explicitly. When a responder gets woken up at 3 AM, they shouldn&#8217;t have to decide whether the incident is worth their attention. That decision should already be made for them.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 id=\"route-midnight-incidents-to-the-right-person\" class=\"wp-block-heading\">Route midnight incidents to the right person<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Once you know which incidents need a midnight response, the next step is to make sure they reach the right person and only that person.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A single escalation policy running around the clock usually creates one of two problems. Either it pages the whole team for everything because it was designed for daytime collaboration. Or it sends a Slack message that nobody sees until morning because it was designed to be lightweight. Neither is a good fit for midnight.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A separate off-hours escalation policy solves this. During business hours, a Slack notification to the team channel is often enough because people are at their desks. After hours, a phone call to the on-call responder is probably the right choice because it&#8217;s the only channel that cuts through sleep.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/docs.spike.sh\/alerts\/alert-rules#:~:text=more%20about%20severity-,7.%20Time%20of%20day,-Evaluates%20to%20True\"><strong>Time-based routing<\/strong><\/a> can load the right policy automatically. A rule like this handles the switch without anyone thinking about it:<\/p>\n\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF time is between 10 PM and 8 AM<\/div><div class=\"cm-line\"> <\/div><div class=\"cm-line\">THEN load \u2192 off-hours escalation policy <\/div><div class=\"cm-line\">     (phone call to on-call responder, 5-minute wait time)<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF time is between 8 AM and 10 PM <\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN load \u2192 business hours escalation policy <\/div><div class=\"cm-line\">     (Slack + email to team channel, 15-minute wait time)<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">This is the foundation. From here, you can get more specific by combining time conditions with payload and severity conditions.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>To learn more about how payload, time, and frequency conditions work together, read this guide: <a href=\"https:\/\/spike.sh\/blog\/how-to-set-up-incident-alert-routing-rules-effectively\/\">How to set up Alert Routing rules effectively<\/a><\/strong><\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">A Redis memory incident overnight probably needs the infrastructure on-call. A Stripe webhook failure overnight probably needs someone from the payments team. Routing rules can handle that distinction automatically.<\/p>\n\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;redis&quot;<\/div><div class=\"cm-line\">AND incident details [key: &quot;memory_pct&quot;] &gt; 90<\/div><div class=\"cm-line\">AND time is between 10 PM and 8 AM<\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN mark severity as SEV-1<\/div><div class=\"cm-line\">AND load \u2192 infrastructure off-hours escalation policy<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"279\" data-attachment-id=\"5682\" data-permalink=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/image-1-5\/\" data-orig-file=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-1-3.png\" data-orig-size=\"1030,281\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-1-3-1024x279.png\" src=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-1-3-1024x279.png\" alt=\"Alert Routing rule created on Spike\" class=\"wp-image-5682\" srcset=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-1-3-1024x279.png 1024w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-1-3-300x82.png 300w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-1-3-768x210.png 768w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-1-3.png 1030w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Alert Routing rule created on <a href=\"https:\/\/spike.sh\" type=\"link\" id=\"spike.sh\">Spike<\/a><\/figcaption><\/figure>\n\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;stripe-webhook&quot;<\/div><div class=\"cm-line\">AND incident details [key: &quot;status_code&quot;] &gt;= 500<\/div><div class=\"cm-line\">AND time is between 10 PM and 8 AM<\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN mark severity as SEV-1<\/div><div class=\"cm-line\">AND load \u2192 payments off-hours escalation policy<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"275\" data-attachment-id=\"5683\" data-permalink=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/image-2-4\/\" data-orig-file=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-2-1.png\" data-orig-size=\"1027,276\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-2\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-2-1-1024x275.png\" src=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-2-1-1024x275.png\" alt=\"Alert Routing rule created on Spike\" class=\"wp-image-5683\" srcset=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-2-1-1024x275.png 1024w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-2-1-300x81.png 300w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-2-1-768x206.png 768w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-2-1.png 1027w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Alert Routing rule created on <a href=\"https:\/\/spike.sh\" type=\"link\" id=\"spike.sh\">Spike<\/a><\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The off-hours policy itself is where you control who gets the call. A good setup usually alerts one person first, the on-call responder, and escalates to a backup if they don&#8217;t acknowledge within a few minutes. This keeps the blast radius small. The rest of the team sleeps through it while the right person handles the incident.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>It&#8217;s also worth keeping phone calls reserved for off-hours critical incidents specifically.<\/strong> When phone calls go out for every incident regardless of time or severity, responders gradually start treating them as background noise. Keeping them exclusive to midnight critical incidents means the signal stays strong.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>To learn more about setting up escalation policies, read this blog: <a href=\"https:\/\/spike.sh\/blog\/compass-for-setting-up-escalation-policy\/\">A compass for setting up your escalation policy<\/a><\/strong><\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 id=\"keep-the-noise-away-from-your-on-call\" class=\"wp-block-heading\">Keep the noise away from your on-call<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The fewer unnecessary wake-ups your on-call person gets, the faster and more alert they&#8217;ll be when a real incident comes through. <a href=\"https:\/\/spike.sh\/glossary\/noise-reduction\/\">Noise reduction<\/a> overnight is probably even more important than during business hours because each false page interrupts sleep.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There are a few tools that work well here:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/docs.spike.sh\/alerts\/alert-rules#:~:text=on%20their%20dashboard.-,7.%20Auto%20resolve%20incidents,-Create%20the%20incident\"><strong>Auto-resolve<\/strong><\/a> works for incidents that always self-correct. A nightly data sync job that briefly spikes error rates before settling down is a good candidate. If the pattern is predictable and has never needed human attention, auto-resolve keeps it off the on-call queue entirely.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;nightly-sync&quot; <\/div><div class=\"cm-line\">AND incident details [key: &quot;error_rate&quot;] &lt; 5 <\/div><div class=\"cm-line\">AND time is between 11 PM and 6 AM <\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN auto-resolve<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/docs.spike.sh\/incidents\/resolve-timer\"><strong>Resolve by timer<\/strong><\/a> works for incidents that are probably fine but worth catching if they persist. A non-production cache miss rate going above the threshold overnight is worth watching but not worth acting on right away. A 20-minute resolve timer gives the system time to self-correct while still catching it if the problem sticks around.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;cache-miss&quot; <\/div><div class=\"cm-line\">AND incident details [key: &quot;env&quot;] != &quot;production&quot; <\/div><div class=\"cm-line\">AND time is between 9 PM and 7 AM <\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN resolve by timer (20 minutes)<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"280\" data-attachment-id=\"5685\" data-permalink=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/image-3-5\/\" data-orig-file=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-3-1.png\" data-orig-size=\"1029,281\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"image-3\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-3-1-1024x280.png\" src=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-3-1-1024x280.png\" alt=\"Alert Routing rule created on Spike\" class=\"wp-image-5685\" srcset=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-3-1-1024x280.png 1024w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-3-1-300x82.png 300w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-3-1-768x210.png 768w, https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/image-3-1.png 1029w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Alert Routing rule created on <a href=\"https:\/\/spike.sh\" type=\"link\" id=\"spike.sh\">Spike<\/a><\/figcaption><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/docs.spike.sh\/alerts\/alert-rules#:~:text=a%20specific%20threshold.-,4.%20Occurrences%20within%20a%20timeframe,-Evaluates%20to%20True\"><strong>Frequency-based conditions<\/strong><\/a> help separate a one-off transient error from a sustained problem. A single 503 from your notification service at 1 AM is probably a blip. Twelve of them within five minutes is a pattern worth waking someone up for.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;notification-svc&quot; <\/div><div class=\"cm-line\">AND incident details [key: &quot;http_status&quot;] = 503 <\/div><div class=\"cm-line\">AND incident triggers &lt;= 5 times within 10 minutes <\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN auto-resolve<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;notification-svc&quot; <\/div><div class=\"cm-line\">AND incident details [key: &quot;http_status&quot;] = 503 <\/div><div class=\"cm-line\">AND incident triggers &gt; 5 times within 10 minutes <\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN mark severity as SEV-2 <\/div><div class=\"cm-line\">AND load \u2192 platform off-hours escalation policy<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">You can also combine multiple conditions to build rules that are quite precise. A Kubernetes pod restart on a non-critical service in a non-production namespace overnight is very different from a pod crash loop on a customer-facing service in production.<\/p>\n\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;pod-restart&quot;<\/div><div class=\"cm-line\">AND incident details [key: &quot;namespace&quot;] != &quot;production&quot;<\/div><div class=\"cm-line\">AND incident details [key: &quot;restart_count&quot;] &lt; 3<\/div><div class=\"cm-line\">AND time is between 10 PM and 8 AM<\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN do not create incident<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n<div class=\"wp-block-code\">\n\t<div class=\"cm-editor\">\n\t\t<div class=\"cm-scroller\">\n\t\t\t\n<pre>\n<code><div class=\"cm-line\">IF title contains &quot;pod-restart&quot;<\/div><div class=\"cm-line\">AND incident details [key: &quot;namespace&quot;] = &quot;production&quot;<\/div><div class=\"cm-line\">AND incident details [key: &quot;restart_count&quot;] &gt;= 3<\/div><div class=\"cm-line\"><\/div><div class=\"cm-line\">THEN mark severity as SEV-1<\/div><div class=\"cm-line\">AND load \u2192 infrastructure off-hours escalation policy<\/div><\/code><\/pre>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">The goal is straightforward. <strong>When your on-call person&#8217;s phone rings at 2 AM, they should be confident it&#8217;s something that genuinely needs their attention.<\/strong> That confidence comes from knowing the noise has already been filtered out.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 id=\"when-the-call-does-come-through\" class=\"wp-block-heading\">When the call does come through<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When a midnight incident does reach the on-call responder, the response path should be as short and clear as possible.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The first priority is to acknowledge the incident. This stops the escalation policy from moving to the next step and prevents unnecessary pages to the backup responder. <strong>Acknowledge first, assess second.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">From there, the responder works through the incident. If it&#8217;s something familiar with a documented fix, they handle it and go back to sleep. If it&#8217;s unfamiliar or more complex than expected, early escalation is usually the better choice. Spending an hour troubleshooting alone at 2 AM often leads to a longer resolution time than pulling in the right person after 10 or 15 minutes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The escalation path for midnight incidents is worth thinking about carefully. The responder should know exactly who to contact if they need help. A well-structured off-hours escalation policy handles this automatically. If the primary responder doesn&#8217;t acknowledge within five minutes, the incident moves to the backup. If neither responds, it escalates to the team lead or engineering manager.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 1:<\/strong> Phone call to the on-call responder If not acknowledged in 5 minutes, move to step 2<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 2:<\/strong> Phone call to the backup responder If not acknowledged in 5 minutes, move to step 3<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 3:<\/strong> Phone call to the engineering manager<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Each step adds exactly one person. Nobody else on the team gets woken up unless the incident reaches a point where broader involvement is necessary. And even then, the escalation policy controls who gets called rather than leaving it to a group page.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"wp-block-paragraph\">Midnight incidents will always be part of running production systems. The part you can control is how many people they wake up. When your setup is right, one person handles it while the rest of the team finds out about it over morning coffee. That&#8217;s probably the best version of a 2 AM incident you can hope for.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you&#8217;re ready to set up off-hours routing for your team, <a href=\"https:\/\/spike.sh\" type=\"link\" id=\"spike.sh\">Spike<\/a> is a good place to start.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-ee856660 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-midnight-gradient-background has-background wp-element-button\" href=\"https:\/\/app.spike.sh\/signup\" style=\"border-top-left-radius:9px;border-top-right-radius:9px;border-bottom-left-radius:9px;border-bottom-right-radius:9px\">Get started with Spike<\/a><\/div>\n<\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 id=\"faqs\" class=\"wp-block-heading\">FAQs<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What happens when a routing rule auto-resolves an incident that later turns out to be critical?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is the risk with any suppression setup. The safest approach is to make suppression rules as specific as possible and always add an explicit exemption for production or customer-facing services. It&#8217;s also worth reviewing your auto-resolved incident queue regularly to check whether anything meaningful was suppressed. If a genuinely critical incident gets auto-resolved more than once, that&#8217;s a clear signal your rule needs tighter conditions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Can off-hours routing rules account for scheduled maintenance windows?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, and it&#8217;s worth setting up. If you have a known maintenance window from 1 AM to 3 AM every Saturday, incidents from the affected services during that window are expected rather than surprising. A routing rule with a day-of-week and time-of-day condition can auto-acknowledge or suppress those incidents for the duration. Without this, your on-call person gets paged for expected behaviour every maintenance night.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Is it worth having separate off-hours policies for weeknights versus weekends?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It depends on your incident patterns. If weekends consistently see different types of incidents than weeknights, separate policies can be useful. A retail platform might see more payment-related incidents on weekends when customer traffic peaks, while weeknight incidents skew towards batch processing and infrastructure. Day-of-week conditions in your routing rules can load different policies for each. That said, a single off-hours policy is often enough to start with. You can always split it later once you have enough incident data to justify it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A midnight incident should wake one person, not the whole team. This guide covers how to set that up with routing rules and escalation policies.<\/p>\n","protected":false},"author":263547072,"featured_media":5679,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","_lmt_disableupdate":"","_lmt_disable":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"{title}\n\n{excerpt}\n\n{url}","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":true,"token":"eyJpbWciOiJodHRwczpcL1wvYmxvZy5zcGlrZS5zaFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL09wc0dlbmllLVNodXRkb3duXy1FdmVyeXRoaW5nLVlvdS1OZWVkLVRvLUtub3ctNi0xMDI0eDU1NS5wbmciLCJ0eHQiOiJIb3cgdG8gaGFuZGxlIG1pZG5pZ2h0IGluY2lkZW50cyB3aXRob3V0IHdha2luZyBldmVyeW9uZSB1cCIsInRlbXBsYXRlIjoiaGlnaHdheSIsImZvbnQiOiIiLCJibG9nX2lkIjoyMzMxMzg5MDB9.AxPP6csMmc2tnv3Vvn4utzWbgsZpJl6WmtPVJJibb9kMQ"},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[1467],"tags":[],"class_list":["post-5677","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to handle midnight incidents without waking everyone up<\/title>\n<meta name=\"description\" content=\"Learn how to route midnight incidents to the right on-call responder while the rest of your team sleeps through it undisturbed.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to handle midnight incidents without waking everyone up\" \/>\n<meta property=\"og:description\" content=\"Learn how to route midnight incidents to the right on-call responder while the rest of your team sleeps through it undisturbed.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/\" \/>\n<meta property=\"og:site_name\" content=\"Spike&#039;s blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-29T07:35:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-29T07:36:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2080\" \/>\n\t<meta property=\"og:image:height\" content=\"1128\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sreekar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sreekar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/\"},\"author\":{\"name\":\"Sreekar\",\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/#\\\/schema\\\/person\\\/eb31f40342cbe6a94ef67a1c0bf20923\"},\"headline\":\"How to handle midnight incidents without waking everyone up\",\"datePublished\":\"2026-03-29T07:35:14+00:00\",\"dateModified\":\"2026-03-29T07:36:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/\"},\"wordCount\":1625,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.spike.sh\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png\",\"articleSection\":[\"Guides\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/\",\"url\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/\",\"name\":\"How to handle midnight incidents without waking everyone up\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.spike.sh\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png\",\"datePublished\":\"2026-03-29T07:35:14+00:00\",\"dateModified\":\"2026-03-29T07:36:41+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/#\\\/schema\\\/person\\\/eb31f40342cbe6a94ef67a1c0bf20923\"},\"description\":\"Learn how to route midnight incidents to the right on-call responder while the rest of your team sleeps through it undisturbed.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.spike.sh\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png\",\"contentUrl\":\"https:\\\/\\\/blog.spike.sh\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png\",\"width\":2080,\"height\":1128},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/how-to-handle-midnight-incidents\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blog.spike.sh\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to handle midnight incidents without waking everyone up\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/#website\",\"url\":\"https:\\\/\\\/blog.spike.sh\\\/\",\"name\":\"Spike&#039;s blog\",\"description\":\"Learnings and opinions in a changing world\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.spike.sh\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.spike.sh\\\/#\\\/schema\\\/person\\\/eb31f40342cbe6a94ef67a1c0bf20923\",\"name\":\"Sreekar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cb2a2f53f3fd9e9619b7d3aaca20588e6101b5d239f52e0137823bd5d6cd0941?s=96&d=robohash&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cb2a2f53f3fd9e9619b7d3aaca20588e6101b5d239f52e0137823bd5d6cd0941?s=96&d=robohash&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cb2a2f53f3fd9e9619b7d3aaca20588e6101b5d239f52e0137823bd5d6cd0941?s=96&d=robohash&r=g\",\"caption\":\"Sreekar\"},\"url\":\"https:\\\/\\\/blog.spike.sh\\\/author\\\/sreekar98\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to handle midnight incidents without waking everyone up","description":"Learn how to route midnight incidents to the right on-call responder while the rest of your team sleeps through it undisturbed.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/","og_locale":"en_GB","og_type":"article","og_title":"How to handle midnight incidents without waking everyone up","og_description":"Learn how to route midnight incidents to the right on-call responder while the rest of your team sleeps through it undisturbed.","og_url":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/","og_site_name":"Spike&#039;s blog","article_published_time":"2026-03-29T07:35:14+00:00","article_modified_time":"2026-03-29T07:36:41+00:00","og_image":[{"width":2080,"height":1128,"url":"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png","type":"image\/png"}],"author":"Sreekar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sreekar","Estimated reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#article","isPartOf":{"@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/"},"author":{"name":"Sreekar","@id":"https:\/\/blog.spike.sh\/#\/schema\/person\/eb31f40342cbe6a94ef67a1c0bf20923"},"headline":"How to handle midnight incidents without waking everyone up","datePublished":"2026-03-29T07:35:14+00:00","dateModified":"2026-03-29T07:36:41+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/"},"wordCount":1625,"commentCount":0,"image":{"@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png","articleSection":["Guides"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/","url":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/","name":"How to handle midnight incidents without waking everyone up","isPartOf":{"@id":"https:\/\/blog.spike.sh\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#primaryimage"},"image":{"@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png","datePublished":"2026-03-29T07:35:14+00:00","dateModified":"2026-03-29T07:36:41+00:00","author":{"@id":"https:\/\/blog.spike.sh\/#\/schema\/person\/eb31f40342cbe6a94ef67a1c0bf20923"},"description":"Learn how to route midnight incidents to the right on-call responder while the rest of your team sleeps through it undisturbed.","breadcrumb":{"@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#primaryimage","url":"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png","contentUrl":"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png","width":2080,"height":1128},{"@type":"BreadcrumbList","@id":"https:\/\/blog.spike.sh\/how-to-handle-midnight-incidents\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.spike.sh\/"},{"@type":"ListItem","position":2,"name":"How to handle midnight incidents without waking everyone up"}]},{"@type":"WebSite","@id":"https:\/\/blog.spike.sh\/#website","url":"https:\/\/blog.spike.sh\/","name":"Spike&#039;s blog","description":"Learnings and opinions in a changing world","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.spike.sh\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/blog.spike.sh\/#\/schema\/person\/eb31f40342cbe6a94ef67a1c0bf20923","name":"Sreekar","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/cb2a2f53f3fd9e9619b7d3aaca20588e6101b5d239f52e0137823bd5d6cd0941?s=96&d=robohash&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cb2a2f53f3fd9e9619b7d3aaca20588e6101b5d239f52e0137823bd5d6cd0941?s=96&d=robohash&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cb2a2f53f3fd9e9619b7d3aaca20588e6101b5d239f52e0137823bd5d6cd0941?s=96&d=robohash&r=g","caption":"Sreekar"},"url":"https:\/\/blog.spike.sh\/author\/sreekar98\/"}]}},"modified_by":"Sreekar","jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-6.png","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pfMe4Q-1tz","jetpack-related-posts":[{"id":5266,"url":"https:\/\/blog.spike.sh\/escalation-policy-for-critical-incidents\/","url_meta":{"origin":5677,"position":0},"title":"Escalation policy for critical incidents","author":"Sreekar","date":"27th February, 2026","format":false,"excerpt":"Getting your escalation policy for critical incidents right takes a few careful decisions upfront. This guide helps you work through them.","rel":"","context":"In &quot;Guides&quot;","block_context":{"text":"Guides","link":"https:\/\/blog.spike.sh\/category\/guides\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-9.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-9.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-9.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-9.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-9.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-9.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":5468,"url":"https:\/\/blog.spike.sh\/turning-team-knowledge-into-alert-routing-rules\/","url_meta":{"origin":5677,"position":1},"title":"Turning team knowledge into Alert Routing rules","author":"Sreekar","date":"12th March, 2026","format":false,"excerpt":"Your team knows incidents inside out. This guide walks you through four ways to build Alert Routing rules from that knowledge.","rel":"","context":"In &quot;Guides&quot;","block_context":{"text":"Guides","link":"https:\/\/blog.spike.sh\/category\/guides\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-1.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-1.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/03\/OpsGenie-Shutdown_-Everything-You-Need-To-Know-1.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":5234,"url":"https:\/\/blog.spike.sh\/compass-for-setting-up-escalation-policy\/","url_meta":{"origin":5677,"position":2},"title":"A compass for setting up your escalation policy","author":"Sreekar","date":"26th February, 2026","format":false,"excerpt":"There's no single way to set up an escalation policy. This guide walks through five approaches and helps you figure out which combination fits your team.","rel":"","context":"In &quot;Guides&quot;","block_context":{"text":"Guides","link":"https:\/\/blog.spike.sh\/category\/guides\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-1-3.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-1-3.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-1-3.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-1-3.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-1-3.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-1-3.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":5246,"url":"https:\/\/blog.spike.sh\/escalation-policy-for-low-priority-incidents\/","url_meta":{"origin":5677,"position":3},"title":"Escalation policy for low-priority incidents","author":"Sreekar","date":"26th February, 2026","format":false,"excerpt":"This guide walks through low-priority incidents, why they need attention, and how to setup an escalation policy for them.","rel":"","context":"In &quot;Guides&quot;","block_context":{"text":"Guides","link":"https:\/\/blog.spike.sh\/category\/guides\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-10.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-10.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-10.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-10.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-10.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/02\/Basics-of-Incident-Management-10.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":5766,"url":"https:\/\/blog.spike.sh\/four-types-of-incident-alerts\/","url_meta":{"origin":5677,"position":4},"title":"Four types of incident alerts every team should know","author":"Sreekar","date":"30th April, 2026","format":false,"excerpt":"This guide breaks down the difference between critical and urgent incidents. It also walks through the four combinations they create and how each one shapes the right response.","rel":"","context":"In &quot;Guides&quot;","block_context":{"text":"Guides","link":"https:\/\/blog.spike.sh\/category\/guides\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/04\/Basics-of-Incident-Management-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/04\/Basics-of-Incident-Management-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/04\/Basics-of-Incident-Management-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/04\/Basics-of-Incident-Management-1.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":4866,"url":"https:\/\/blog.spike.sh\/who-should-be-oncall\/","url_meta":{"origin":5677,"position":5},"title":"Who should be on-call","author":"Sreekar","date":"29th January, 2026","format":false,"excerpt":"This guide helps you decide who joins the on-call rotation. Do you need technical experts, or can anyone do it? We explore the specific foundations that need to be in place before you add someone to the schedule.","rel":"","context":"In &quot;Guides&quot;","block_context":{"text":"Guides","link":"https:\/\/blog.spike.sh\/category\/guides\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/01\/Basics-of-Incident-Management-2-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/01\/Basics-of-Incident-Management-2-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/01\/Basics-of-Incident-Management-2-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/01\/Basics-of-Incident-Management-2-1.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/01\/Basics-of-Incident-Management-2-1.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/blog.spike.sh\/wp-content\/uploads\/2026\/01\/Basics-of-Incident-Management-2-1.png?resize=1400%2C800&ssl=1 4x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/posts\/5677","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/users\/263547072"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/comments?post=5677"}],"version-history":[{"count":5,"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/posts\/5677\/revisions"}],"predecessor-version":[{"id":5689,"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/posts\/5677\/revisions\/5689"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/media\/5679"}],"wp:attachment":[{"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/media?parent=5677"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/categories?post=5677"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.spike.sh\/wp-json\/wp\/v2\/tags?post=5677"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}