{"id":439,"date":"2025-06-24T08:19:14","date_gmt":"2025-06-24T08:19:14","guid":{"rendered":"https:\/\/sreschool.com\/blog\/?p=439"},"modified":"2026-05-05T07:29:42","modified_gmt":"2026-05-05T07:29:42","slug":"chaos-monkey-in-devsecops","status":"publish","type":"post","link":"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/","title":{"rendered":"Chaos Monkey in DevSecOps"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\"><strong>Introduction &amp; Overview<\/strong><\/h1>\n\n\n\n<h3 class=\"wp-block-heading\">What is Chaos Monkey?<\/h3>\n\n\n\n<p>Chaos Monkey is an open-source tool developed by Netflix that randomly terminates virtual machine (VM) instances and containers in production to test the system&#8217;s ability to recover without impacting customers. It\u2019s part of the <strong>Simian Army<\/strong>, a suite of tools for chaos engineering.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">History or Background<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Developed by <strong>Netflix in 2011<\/strong> as part of their transition to AWS cloud infrastructure.<\/li>\n\n\n\n<li>Inspired by the principle: \u201cIf we\u2019re going to survive random instance failures, let\u2019s simulate them.\u201d<\/li>\n\n\n\n<li>Became part of a broader movement called <strong>Chaos Engineering<\/strong>, aimed at building resilient systems by introducing controlled failure.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Why is it Relevant in DevSecOps?<\/h3>\n\n\n\n<p>Chaos Monkey plays a critical role in DevSecOps by:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Improving system resilience<\/strong> through automated failure injection.<\/li>\n\n\n\n<li><strong>Validating incident response<\/strong> and monitoring setups.<\/li>\n\n\n\n<li><strong>Ensuring security controls<\/strong> remain effective during faults or outages.<\/li>\n\n\n\n<li><strong>Aligning with DevSecOps principles<\/strong>: integrating reliability, security, and automation into every phase of the SDLC.<\/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\"><strong>Core Concepts &amp; Terminology<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Key Terms and Definitions<\/h3>\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>Chaos Engineering<\/strong><\/td><td>Discipline of experimenting on a system to build confidence in its ability to withstand turbulent conditions.<\/td><\/tr><tr><td><strong>Simian Army<\/strong><\/td><td>A suite of tools by Netflix for inducing different types of failures.<\/td><\/tr><tr><td><strong>Blast Radius<\/strong><\/td><td>The scope or impact area of a chaos experiment.<\/td><\/tr><tr><td><strong>Steady State<\/strong><\/td><td>The system&#8217;s normal behavior or performance metric baseline.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">How It Fits into the DevSecOps Lifecycle<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Plan<\/strong>: Design resilient architectures and test plans.<\/li>\n\n\n\n<li><strong>Develop<\/strong>: Embed resilience testing in CI\/CD pipelines.<\/li>\n\n\n\n<li><strong>Build\/Test<\/strong>: Simulate failure scenarios during staging.<\/li>\n\n\n\n<li><strong>Release\/Deploy<\/strong>: Validate readiness of systems to handle disruptions.<\/li>\n\n\n\n<li><strong>Operate\/Monitor<\/strong>: Ensure monitoring and alerts are functional under stress.<\/li>\n\n\n\n<li><strong>Secure<\/strong>: Test how security controls respond to fault injection.<\/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\"><strong>Architecture &amp; How It Works<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Components &amp; Internal Workflow<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Chaos Monkey Service<\/strong>: Core engine that selects and terminates targets.<\/li>\n\n\n\n<li><strong>Scheduler<\/strong>: Defines the time and frequency for chaos experiments.<\/li>\n\n\n\n<li><strong>Configuration Store<\/strong>: Holds settings for services to target, time windows, and protection rules.<\/li>\n\n\n\n<li><strong>API Layer<\/strong>: Optional interface to integrate with CI\/CD or alerting systems.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Internal Workflow<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Loads configuration (e.g., which instances are eligible).<\/li>\n\n\n\n<li>Randomly picks an instance based on filters.<\/li>\n\n\n\n<li>Terminates the instance.<\/li>\n\n\n\n<li>Logs the event and optionally notifies external systems (e.g., Slack, PagerDuty).<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Architecture Diagram (Textual Description)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>+------------------------+\n|    Configuration       |\n| (JSON\/YAML\/Database)   |\n+-----------+------------+\n            |\n            v\n+-----------+------------+      +-------------------+\n|  Chaos Monkey Engine   | ---&gt; | AWS\/GCP\/Azure API |\n+-----------+------------+      +-------------------+\n            |\n            v\n+-------------------------+\n| Logging &amp; Notification  |\n+-------------------------+\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Integration Points with CI\/CD or Cloud Tools<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>CI\/CD<\/strong>: Can be invoked as part of Jenkins, GitHub Actions, or GitLab CI pipelines.<\/li>\n\n\n\n<li><strong>Cloud<\/strong>: Works with AWS EC2, GCP Compute Engine, Azure VMs.<\/li>\n\n\n\n<li><strong>Monitoring<\/strong>: Can be integrated with Prometheus, Datadog, or ELK Stack.<\/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\"><strong>Installation &amp; Getting Started<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Basic Setup or Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Java 8+<\/strong><\/li>\n\n\n\n<li>AWS credentials (for cloud instance access)<\/li>\n\n\n\n<li>IAM permissions to terminate instances<\/li>\n\n\n\n<li>Git installed<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step-by-Step Beginner-Friendly Setup Guide<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># 1. Clone Chaos Monkey\ngit clone https:\/\/github.com\/Netflix\/chaosmonkey.git\ncd chaosmonkey\n\n# 2. Build the project\n.\/gradlew build\n\n# 3. Create configuration file\ntouch chaosmonkey.properties\n# Example contents:\n# app=MyApp\n# schedule.cron=0 14 * * 1-5\n# chaos.monkey.enabled=true\n\n# 4. Run Chaos Monkey\njava -jar build\/libs\/chaosmonkey*.jar --spring.config.location=chaosmonkey.properties\n<\/code><\/pre>\n\n\n\n<p>For Kubernetes-based setups:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use <strong>Gremlin<\/strong>, <strong>LitmusChaos<\/strong>, or a Chaos Mesh integration to replicate Chaos Monkey-like behavior on pods.<\/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\"><strong>Real-World Use Cases<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>E-commerce Resilience Testing<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Simulates EC2 failures during peak traffic to verify that auto-scaling and load balancers handle the load gracefully.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Healthcare SaaS<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Verifies if critical patient data systems reroute traffic and alert support teams during outages.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Financial Services<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensures transaction processing is not interrupted when backend microservices are randomly shut down.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong>Media Streaming<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Used by Netflix to test failover between regions and redundancy of streaming content servers.<\/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\"><strong>Benefits &amp; Limitations<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Key Advantages<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Validates system resilience proactively<\/strong><\/li>\n\n\n\n<li><strong>Promotes architectural hardening<\/strong><\/li>\n\n\n\n<li><strong>Reduces downtime via controlled testing<\/strong><\/li>\n\n\n\n<li><strong>Encourages cross-team collaboration<\/strong> in incident preparedness<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Common Challenges or Limitations<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Limitation<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><strong>Complexity in microservices<\/strong><\/td><td>Identifying the blast radius and dependencies can be hard.<\/td><\/tr><tr><td><strong>Risk of production disruption<\/strong><\/td><td>Without proper safeguards, could impact users.<\/td><\/tr><tr><td><strong>Security concerns<\/strong><\/td><td>Needs careful IAM and role management to avoid abuse.<\/td><\/tr><tr><td><strong>Observability reliance<\/strong><\/td><td>Ineffective if monitoring and alerting are weak.<\/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\"><strong>Best Practices &amp; Recommendations<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Security Tips<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Scope IAM permissions<\/strong> tightly (read\/terminate only specific instances).<\/li>\n\n\n\n<li><strong>Audit logs<\/strong>: Enable logging and alerting on all chaos activity.<\/li>\n\n\n\n<li><strong>Use tagging<\/strong>: Filter which services Chaos Monkey can target.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Performance &amp; Maintenance<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Limit experiments to <strong>business hours<\/strong> with <strong>low traffic<\/strong>.<\/li>\n\n\n\n<li>Rotate instances\/services to avoid bias in failure targets.<\/li>\n\n\n\n<li>Run chaos experiments in <strong>pre-prod environments first<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Compliance &amp; Automation<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Document chaos policies and align with <strong>ISO 27001<\/strong> or <strong>SOC2<\/strong> controls for operational testing.<\/li>\n\n\n\n<li>Automate Chaos Monkey as part of <strong>nightly builds or staging tests<\/strong>.<\/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\"><strong>Comparison with Alternatives<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Tool<\/th><th>Focus Area<\/th><th>UI<\/th><th>Cloud-native Support<\/th><th>Kubernetes Support<\/th><\/tr><\/thead><tbody><tr><td><strong>Chaos Monkey<\/strong><\/td><td>VM instance termination<\/td><td>\u274c<\/td><td>\u2705 (AWS, GCP)<\/td><td>Limited (via wrappers)<\/td><\/tr><tr><td><strong>Gremlin<\/strong><\/td><td>Broad chaos testing<\/td><td>\u2705<\/td><td>\u2705<\/td><td>\u2705<\/td><\/tr><tr><td><strong>LitmusChaos<\/strong><\/td><td>Kubernetes chaos<\/td><td>\u2705<\/td><td>\u2705<\/td><td>\u2705<\/td><\/tr><tr><td><strong>Chaos Mesh<\/strong><\/td><td>Kubernetes chaos<\/td><td>\u2705<\/td><td>\u2705<\/td><td>\u2705<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">When to Choose Chaos Monkey<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You use <strong>VMs or cloud-native infrastructure<\/strong>.<\/li>\n\n\n\n<li>You want a <strong>lightweight, code-driven<\/strong> chaos tool.<\/li>\n\n\n\n<li>Your goal is <strong>random termination<\/strong>, not broader fault simulation.<\/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\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Chaos Monkey is a foundational tool in the DevSecOps resilience toolbox. By simulating instance-level failures, it allows teams to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Validate disaster recovery plans<\/li>\n\n\n\n<li>Strengthen fault tolerance<\/li>\n\n\n\n<li>Enhance operational readiness<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Future Trends<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Integration with <strong>AI\/ML<\/strong> for dynamic failure prediction.<\/li>\n\n\n\n<li>Wider use in <strong>serverless and edge computing<\/strong>.<\/li>\n\n\n\n<li>Chaos-as-a-Service platforms simplifying broader adoption.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n","protected":false},"excerpt":{"rendered":"<p>Introduction &amp; Overview What is Chaos Monkey? Chaos Monkey is an open-source tool developed by Netflix that randomly terminates virtual [&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-439","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>Chaos Monkey 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\/chaos-monkey-in-devsecops\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Chaos Monkey in DevSecOps - SRE School\" \/>\n<meta property=\"og:description\" content=\"Introduction &amp; Overview What is Chaos Monkey? Chaos Monkey is an open-source tool developed by Netflix that randomly terminates virtual [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/\" \/>\n<meta property=\"og:site_name\" content=\"SRE School\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-24T08:19:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-05T07:29:42+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\/chaos-monkey-in-devsecops\/\",\"url\":\"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/\",\"name\":\"Chaos Monkey in DevSecOps - SRE School\",\"isPartOf\":{\"@id\":\"https:\/\/sreschool.com\/blog\/#website\"},\"datePublished\":\"2025-06-24T08:19:14+00:00\",\"dateModified\":\"2026-05-05T07:29:42+00:00\",\"author\":{\"@id\":\"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db\"},\"breadcrumb\":{\"@id\":\"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sreschool.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chaos Monkey 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":"Chaos Monkey 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\/chaos-monkey-in-devsecops\/","og_locale":"en_US","og_type":"article","og_title":"Chaos Monkey in DevSecOps - SRE School","og_description":"Introduction &amp; Overview What is Chaos Monkey? Chaos Monkey is an open-source tool developed by Netflix that randomly terminates virtual [&hellip;]","og_url":"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/","og_site_name":"SRE School","article_published_time":"2025-06-24T08:19:14+00:00","article_modified_time":"2026-05-05T07:29:42+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\/chaos-monkey-in-devsecops\/","url":"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/","name":"Chaos Monkey in DevSecOps - SRE School","isPartOf":{"@id":"https:\/\/sreschool.com\/blog\/#website"},"datePublished":"2025-06-24T08:19:14+00:00","dateModified":"2026-05-05T07:29:42+00:00","author":{"@id":"https:\/\/sreschool.com\/blog\/#\/schema\/person\/6a53e3870889dd6a65b2e04b7bc3d7db"},"breadcrumb":{"@id":"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/sreschool.com\/blog\/chaos-monkey-in-devsecops\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sreschool.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Chaos Monkey 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\/439","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=439"}],"version-history":[{"count":1,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/439\/revisions"}],"predecessor-version":[{"id":440,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/posts\/439\/revisions\/440"}],"wp:attachment":[{"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/media?parent=439"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/categories?post=439"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sreschool.com\/blog\/wp-json\/wp\/v2\/tags?post=439"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}