{"id":289,"date":"2025-06-23T09:48:43","date_gmt":"2025-06-23T09:48:43","guid":{"rendered":"http:\/\/sreschool.com\/blog\/?p=289"},"modified":"2026-05-05T07:30:02","modified_gmt":"2026-05-05T07:30:02","slug":"mtta-mean-time-to-acknowledge-in-devsecops","status":"publish","type":"post","link":"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/","title":{"rendered":"MTTA (Mean Time to Acknowledge) in DevSecOps"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">1. Introduction &amp; Overview<\/h1>\n\n\n\n<p>In modern software delivery pipelines, especially those adhering to <strong>DevSecOps<\/strong> principles, incident response time is critical. One of the most important reliability metrics tracked across industries is <strong>MTTA<\/strong> \u2014 <em>Mean Time to Acknowledge<\/em>. This metric plays a foundational role in how effectively security and operational incidents are addressed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why MTTA Matters in DevSecOps<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Security Breach Mitigation<\/strong>: Rapid acknowledgment prevents escalation.<\/li>\n\n\n\n<li><strong>SLAs and Compliance<\/strong>: MTTA often influences contractual uptime guarantees.<\/li>\n\n\n\n<li><strong>Customer Trust<\/strong>: Fast responses minimize user-facing disruptions.<\/li>\n\n\n\n<li><strong>DevSecOps Culture<\/strong>: Promotes shared accountability across Dev, Sec, and Ops teams.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">2. What is MTTA (Mean Time to Acknowledge)?<\/h2>\n\n\n\n<p><strong>MTTA<\/strong> is the average time it takes from the moment an alert is triggered to when a human acknowledges the alert \u2014 signaling that someone is actively investigating the issue.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd52 MTTA Formula:<\/h3>\n\n\n\n<p>MTTA=\u2211(Time&nbsp;Acknowledged\u2212Time&nbsp;Alert&nbsp;Triggered)Total&nbsp;Number&nbsp;of&nbsp;Alerts\\text{MTTA} = \\frac{\\sum(\\text{Time Acknowledged} &#8211; \\text{Time Alert Triggered})}{\\text{Total Number of Alerts}}<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Historical Background<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Born from ITIL<\/strong> incident management practices.<\/li>\n\n\n\n<li>Adopted widely in <strong>SRE<\/strong> and <strong>DevOps<\/strong> for performance benchmarking.<\/li>\n\n\n\n<li>Incorporated in <strong>DevSecOps<\/strong> to monitor response to security alerts.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">3. Core Concepts &amp; Terminology<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Term<\/th><th>Definition<\/th><\/tr><\/thead><tbody><tr><td><strong>MTTA<\/strong><\/td><td>Mean Time to Acknowledge \u2013 time between alert trigger and acknowledgment<\/td><\/tr><tr><td><strong>MTTR<\/strong><\/td><td>Mean Time to Resolve \u2013 time to fully resolve an incident<\/td><\/tr><tr><td><strong>MTBF<\/strong><\/td><td>Mean Time Between Failures \u2013 average time between two failures<\/td><\/tr><tr><td><strong>SLO<\/strong><\/td><td>Service Level Objective \u2013 performance goal such as max acceptable MTTA<\/td><\/tr><tr><td><strong>Runbook<\/strong><\/td><td>Documentation for resolving specific alerts quickly<\/td><\/tr><tr><td><strong>Alert Fatigue<\/strong><\/td><td>Diminished responsiveness due to too many alerts<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83d\udd17 Fit into DevSecOps Lifecycle<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>DevSecOps Phase<\/th><th>Role of MTTA<\/th><\/tr><\/thead><tbody><tr><td><strong>Plan<\/strong><\/td><td>Define acceptable MTTA targets<\/td><\/tr><tr><td><strong>Develop<\/strong><\/td><td>Annotate code with alerting mechanisms<\/td><\/tr><tr><td><strong>Build\/Test<\/strong><\/td><td>Run pre-deploy security checks triggering MTTA<\/td><\/tr><tr><td><strong>Release<\/strong><\/td><td>Ensure MTTA tracking for vulnerabilities introduced<\/td><\/tr><tr><td><strong>Operate<\/strong><\/td><td>Monitor incident acknowledgment time via tools<\/td><\/tr><tr><td><strong>Monitor<\/strong><\/td><td>Feed MTTA into dashboards and improvement loops<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">4. Architecture &amp; How It Works<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Components Involved<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Monitoring Tool<\/strong> (e.g., Prometheus, Datadog)<\/li>\n\n\n\n<li><strong>Alert Manager<\/strong> (e.g., PagerDuty, Opsgenie)<\/li>\n\n\n\n<li><strong>Notification Channels<\/strong> (Slack, SMS, email)<\/li>\n\n\n\n<li><strong>Incident Management Platform<\/strong> (e.g., Jira, ServiceNow)<\/li>\n\n\n\n<li><strong>On-call Roster<\/strong> (to ensure 24&#215;7 acknowledgment)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Workflow Diagram (described)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>&#091;System\/Tool Failure] \u2192 &#091;Alert Triggered] \u2192 &#091;Alert Routed to On-call] \n\u2192 &#091;Acknowledgment by On-call Engineer] \u2192 &#091;MTTA Logged]\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Integration Points with CI\/CD and Cloud<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Tool<\/th><th>Integration Purpose<\/th><\/tr><\/thead><tbody><tr><td><strong>Jenkins \/ GitLab CI<\/strong><\/td><td>Inject alert hooks post-deployment<\/td><\/tr><tr><td><strong>AWS CloudWatch<\/strong><\/td><td>Sends alerts on anomalies<\/td><\/tr><tr><td><strong>Azure Monitor<\/strong><\/td><td>Tracks metrics tied to deployments<\/td><\/tr><tr><td><strong>Slack \/ MS Teams<\/strong><\/td><td>For instant human acknowledgment<\/td><\/tr><tr><td><strong>PagerDuty<\/strong><\/td><td>Core acknowledgment tracking tool<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">5. Installation &amp; Getting Started<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access to infrastructure alerting tools (e.g., Prometheus, Grafana)<\/li>\n\n\n\n<li>Notification platform (Slack, PagerDuty, etc.)<\/li>\n\n\n\n<li>CI\/CD tools configured with logging and error outputs<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step-by-Step Setup Guide (Using PagerDuty + Slack + Prometheus)<\/h3>\n\n\n\n<p><strong>Step 1: Set up Prometheus Alertmanager<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># alertmanager.yml\nreceivers:\n- name: 'slack-notifications'\n  slack_configs:\n  - channel: '#devsecops-alerts'\n    send_resolved: true\n<\/code><\/pre>\n\n\n\n<p><strong>Step 2: Configure PagerDuty as a receiver<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>receivers:\n- name: 'pagerduty'\n  pagerduty_configs:\n  - service_key: '&lt;PAGERDUTY-INTEGRATION-KEY&gt;'\n<\/code><\/pre>\n\n\n\n<p><strong>Step 3: Enable alert forwarding from CI\/CD tool<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -X POST https:\/\/alertmanager\/api\/v1\/alerts -d @alert.json\n<\/code><\/pre>\n\n\n\n<p><strong>Step 4: Monitor MTTA in Grafana<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set up dashboards to track <code>alert.triggered_time - alert.acknowledged_time<\/code>.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">6. Real-World Use Cases<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Zero-Day Exploit Response (Security)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Alert: IDS detects malicious payload.<\/li>\n\n\n\n<li>MTTA: &lt; 2 minutes required by compliance.<\/li>\n\n\n\n<li>Acknowledgment triggers emergency patch rollout.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Production Outage<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Alert: API latency exceeds 2s.<\/li>\n\n\n\n<li>On-call engineer acknowledges in 5 mins.<\/li>\n\n\n\n<li>Automated rollback initiated.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Credential Leakage<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Tool like <strong>Gitleaks<\/strong> triggers a leak alert.<\/li>\n\n\n\n<li>Alert routed to Slack and PagerDuty.<\/li>\n\n\n\n<li>MTTA within 3 minutes leads to secret rotation.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>DevOps Pipeline Failures<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Jenkins job fails post-deploy.<\/li>\n\n\n\n<li>Slack alert triggers immediate response.<\/li>\n\n\n\n<li>MTTA under 1 minute allows fast fix before customer impact.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">7. Benefits &amp; Limitations<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 Key Benefits<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Encourages <strong>faster response<\/strong> to incidents<\/li>\n\n\n\n<li>Increases <strong>team accountability<\/strong> in DevSecOps<\/li>\n\n\n\n<li>Drives <strong>automated remediation<\/strong> through fast acknowledgment<\/li>\n\n\n\n<li>Supports <strong>regulatory compliance<\/strong> (e.g., GDPR breach notification)<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u274c Common Limitations<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Doesn\u2019t measure <strong>resolution<\/strong> time (only acknowledgment)<\/li>\n\n\n\n<li>Can be skewed by <strong>false positives<\/strong> or alert noise<\/li>\n\n\n\n<li>Requires strong <strong>on-call discipline<\/strong><\/li>\n\n\n\n<li>Tools without proper APIs make MTTA tracking difficult<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">8. Best Practices &amp; Recommendations<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 Security Tips<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Encrypt all alerting data<\/strong> (especially on Slack or external channels)<\/li>\n\n\n\n<li>Rotate PagerDuty API tokens regularly<\/li>\n\n\n\n<li>Use <strong>role-based access control<\/strong> for acknowledgment actions<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 Performance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <strong>low-latency channels<\/strong> (e.g., push notifications over email)<\/li>\n\n\n\n<li>Ensure alert deduplication to reduce noise<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 Maintenance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Regularly update <strong>on-call rosters<\/strong><\/li>\n\n\n\n<li>Audit MTTA trends monthly to detect burnout<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 Compliance &amp; Automation<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Align MTTA goals with <strong>SOC 2<\/strong>, <strong>ISO 27001<\/strong> response mandates<\/li>\n\n\n\n<li>Automate incident tagging in tools like Jira via MTTA thresholds<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">9. Comparison with Alternatives<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Metric<\/th><th>Focus<\/th><th>Use Case<\/th><\/tr><\/thead><tbody><tr><td><strong>MTTA<\/strong><\/td><td>Acknowledgment Speed<\/td><td>Ops\/Sec Response Time<\/td><\/tr><tr><td><strong>MTTR<\/strong><\/td><td>Full Resolution<\/td><td>Total downtime analysis<\/td><\/tr><tr><td><strong>MTBF<\/strong><\/td><td>Failure Frequency<\/td><td>System reliability forecasting<\/td><\/tr><tr><td><strong>TTR (Time to Respond)<\/strong><\/td><td>Reaction initiation<\/td><td>User support efficiency<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">When to Choose MTTA<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For <strong>incident readiness audits<\/strong><\/li>\n\n\n\n<li>To improve <strong>incident triaging<\/strong><\/li>\n\n\n\n<li>In <strong>high-security environments<\/strong> where quick acknowledgment prevents propagation<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">10. Conclusion<\/h2>\n\n\n\n<p><strong>MTTA<\/strong> is a pivotal metric that helps DevSecOps teams measure how fast they react to alerts \u2014 a critical capability for reducing damage from operational and security incidents. Though not a complete picture of resolution, MTTA acts as a <strong>leading indicator<\/strong> for organizational responsiveness and maturity.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction &amp; Overview In modern software delivery pipelines, especially those adhering to DevSecOps principles, incident response time is critical. [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-289","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MTTA (Mean Time to Acknowledge) in DevSecOps - SRE School<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MTTA (Mean Time to Acknowledge) in DevSecOps - SRE School\" \/>\n<meta property=\"og:description\" content=\"1. Introduction &amp; Overview In modern software delivery pipelines, especially those adhering to DevSecOps principles, incident response time is critical. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/\" \/>\n<meta property=\"og:site_name\" content=\"SRE School\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-23T09:48:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-05T07:30:02+00:00\" \/>\n<meta name=\"author\" content=\"priteshgeek\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"priteshgeek\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/\",\"url\":\"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/\",\"name\":\"MTTA (Mean Time to Acknowledge) in DevSecOps - SRE School\",\"isPartOf\":{\"@id\":\"https:\/\/sreschool.com\/blog\/#website\"},\"datePublished\":\"2025-06-23T09:48:43+00:00\",\"dateModified\":\"2026-05-05T07:30:02+00:00\",\"author\":{\"@id\":\"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db\"},\"breadcrumb\":{\"@id\":\"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sreschool.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MTTA (Mean Time to Acknowledge) in DevSecOps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sreschool.com\/blog\/#website\",\"url\":\"https:\/\/sreschool.com\/blog\/\",\"name\":\"SRESchool\",\"description\":\"Master SRE. Build Resilient Systems. Lead the Future of Reliability\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sreschool.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db\",\"name\":\"priteshgeek\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/sreschool.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g\",\"caption\":\"priteshgeek\"},\"url\":\"https:\/\/sreschool.com\/blog\/author\/priteshgeek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MTTA (Mean Time to Acknowledge) in DevSecOps - SRE School","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:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/","og_locale":"en_US","og_type":"article","og_title":"MTTA (Mean Time to Acknowledge) in DevSecOps - SRE School","og_description":"1. Introduction &amp; Overview In modern software delivery pipelines, especially those adhering to DevSecOps principles, incident response time is critical. [&hellip;]","og_url":"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/","og_site_name":"SRE School","article_published_time":"2025-06-23T09:48:43+00:00","article_modified_time":"2026-05-05T07:30:02+00:00","author":"priteshgeek","twitter_card":"summary_large_image","twitter_misc":{"Written by":"priteshgeek","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/","url":"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/","name":"MTTA (Mean Time to Acknowledge) in DevSecOps - SRE School","isPartOf":{"@id":"https:\/\/sreschool.com\/blog\/#website"},"datePublished":"2025-06-23T09:48:43+00:00","dateModified":"2026-05-05T07:30:02+00:00","author":{"@id":"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db"},"breadcrumb":{"@id":"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/sreschool.com\/blog\/mtta-mean-time-to-acknowledge-in-devsecops\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sreschool.com\/blog\/"},{"@type":"ListItem","position":2,"name":"MTTA (Mean Time to Acknowledge) in DevSecOps"}]},{"@type":"WebSite","@id":"https:\/\/sreschool.com\/blog\/#website","url":"https:\/\/sreschool.com\/blog\/","name":"SRESchool","description":"Master SRE. Build Resilient Systems. Lead the Future of Reliability","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sreschool.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Person","@id":"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db","name":"priteshgeek","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/sreschool.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/231a0e8b7a02636f2fbacf8dcf4494cb1cc0d49ecc9a8165fbaeaeeaf102641a?s=96&d=mm&r=g","caption":"priteshgeek"},"url":"https:\/\/sreschool.com\/blog\/author\/priteshgeek\/"}]}},"_links":{"self":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/289","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/comments?post=289"}],"version-history":[{"count":1,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/289\/revisions"}],"predecessor-version":[{"id":290,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/289\/revisions\/290"}],"wp:attachment":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/media?parent=289"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/categories?post=289"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/tags?post=289"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}