{"id":19256,"date":"2015-04-24T09:50:26","date_gmt":"2015-04-24T04:20:26","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=19256"},"modified":"2015-04-28T12:37:00","modified_gmt":"2015-04-28T07:07:00","slug":"monitoring-nginx-connections","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/","title":{"rendered":"Monitoring Nginx Connections"},"content":{"rendered":"<p>The Nginx web server comes with a bundled module &#8220;HttpStubStatusModule&#8221;. By enabling this module we will get some insight of our nginx connections. This module provides the following information.<br \/>\n<strong><\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">Active Connections<\/h3>\n<h3 style=\"text-align: justify;color: #ff9900\">Connection Status (Accepted \/ Handled)<\/h3>\n<h3 style=\"text-align: justify;color: #ff9900\">Connection Request \/ Second<\/h3>\n<p><\/strong><\/p>\n<p><strong>Enable Module<\/strong><br \/>\nTo get connection stats, we need to enable the status module on <strong>nginx VirtualHost<\/strong> file by adding below localtion block.<br \/>\n[js]<br \/>\nlocation \/nginx_status {<br \/>\n        # Turn on stats<br \/>\n        stub_status on;<br \/>\n        allow 127.0.0.1;<br \/>\n        deny all;<br \/>\n}<\/p>\n<p>Replace 127.0.0.1 with the IP from which you wants to access \/nginx_status<br \/>\n[\/js]<br \/>\n[js]$ sudo service nginx reload [\/js]<br \/>\n[js]$ curl localhost\/nginx_status [\/js]<\/p>\n<p>[js]<br \/>\nActive connections: 32<br \/>\nserver accepts handled requests<br \/>\n48932 48932 2594381<br \/>\nReading: 0 Writing: 2 Waiting: 30<br \/>\n[\/js]<\/p>\n<p>Let&#8217;s break down the above parts.<\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">1. Active Connections (Number of Active Connection): <\/h3>\n<p> This will give all open connections. This doesn&#8217;t mean number of users on site.<\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">2. Server accepts handled requests:<\/h3>\n<p>We have three values for this.<br \/>\n<em><br \/>\nFirst Column: 48392 ( Total Accepted Connection by Web Server )<br \/>\nSecond Column: 48932 ( Total Connections handled by Web  Server )<br \/>\nThird Column :  2594381 ( Number of handled requests )<br \/>\n<\/em><\/p>\n<p>If we divide third column by second column, we&#8217;ll get the number of requests \/ second<\/p>\n<p>Hence, <\/p>\n<h6 style=\"text-align: justify;color: #ff9900\">Number of Requests\/Second = 2595381 \/ 48392 =  53.63 <\/h6>\n<p> requests is being served per second by nginx.<\/p>\n<p>You can also use the below script and execute it as a cron and check Connection Status on a timely basis.<\/p>\n<p>[js]<\/p>\n<p>#!\/bin\/bash<\/p>\n<p>numberOfActiveConnections=&quot;&quot;<br \/>\nnumberOfTotalAcceptedConnections=&quot;&quot;<br \/>\nnumberOfTotalhandledConnections=&quot;&quot;<\/p>\n<p>#Number of Requests \/ Second<br \/>\nnumberOfRequestsPerSecond=&quot;&quot;<\/p>\n<p>nginxPath=&#8217;nginx_status&#8217;<\/p>\n<p>ApplicationURL=&#8217; List of IPAddress\/DomainName separated by Space &#8216;<\/p>\n<p>echo $ApplicationURL<\/p>\n<p>for URL in ${ApplicationURL[@]};do<\/p>\n<p>    file=&quot;$URL&quot;<br \/>\n    echo &quot;Getting Nginx Status Page of $URL&quot;<\/p>\n<p>    curl -s $URL\/$nginxPath -o $file<\/p>\n<p>    numberOfActiveConnections=$(cat $file  | awk &#8216;\/Active \/&#8217; | awk &#8216;{print $3}&#8217;)<br \/>\n    echo &quot;$file : Active Connection $numberOfActiveConnections&quot;<\/p>\n<p>    numberOfTotalAcceptedConnections=$(cat $file | grep -A 1 server | tail -1 | awk &#8216;{print $1}&#8217;)<br \/>\n    echo &quot;$file : Total Accepted Connection $numberOfTotalAcceptedConnections&quot;<\/p>\n<p>    numberOfTotalhandledConnections=$(cat $file | grep -A 1 server | tail -1 | awk &#8216;{print $2}&#8217;)<br \/>\n    echo &quot;$file : Total Handled Connection $numberOfTotalhandledConnections&quot;<\/p>\n<p>    echo &quot;Number of Accepted and Handle remains same most of the time.&quot;<br \/>\n    totalRequests=$(cat $file | grep -A 1 server | tail -1 | awk &#8216;{print $3}&#8217;)<\/p>\n<p>    numberOfRequestsPerSecond=$(echo &#8216;scale=2;&#8217;$totalRequests\/$numberOfTotalAcceptedConnections | bc -l)<br \/>\n    echo &quot;Currently Server is serving $numberOfRequestsPerSecond \/ second.&quot;<\/p>\n<p>    echo &quot;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&quot;<\/p>\n<p>done<\/p>\n<p>[\/js]<\/p>\n<p>Output will be like: <\/p>\n<p><strong>Getting Nginx Status Page of Application URL<br \/>\nApplication URL : Active Connection 39<br \/>\nApplication URL : Total Accepted Connection 62032<br \/>\nApplication URL : Total Handled Connection 59739<br \/>\nNumber of Accepted and Handle remains same most of the time.<br \/>\nCurrently Server is serving 43.02 \/ second.<br \/>\n<\/strong><br \/>\nLeave a comment if you have any questions regarding this article.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Nginx web server comes with a bundled module &#8220;HttpStubStatusModule&#8221;. By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx [&hellip;]<\/p>\n","protected":false},"author":100,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":51,"footnotes":""},"categories":[1],"tags":[519,1499,1336],"class_list":["post-19256","post","type-post","status-publish","format-standard","hentry","category-technology","tag-bash-script","tag-monitoring","tag-nginx"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"The Nginx web server comes with a bundled module &quot;HttpStubStatusModule&quot;. By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vikash Jha\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Monitoring Nginx Connections | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"The Nginx web server comes with a bundled module &quot;HttpStubStatusModule&quot;. By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Monitoring Nginx Connections | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"The Nginx web server comes with a bundled module &quot;HttpStubStatusModule&quot;. By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#article\",\"name\":\"Monitoring Nginx Connections | TO THE NEW Blog\",\"headline\":\"Monitoring Nginx Connections\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-04-24T09:50:26+05:30\",\"dateModified\":\"2015-04-28T12:37:00+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#webpage\"},\"articleSection\":\"Technology, bash script, Monitoring, nginx\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#listItem\",\"name\":\"Monitoring Nginx Connections\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#listItem\",\"position\":3,\"name\":\"Monitoring Nginx Connections\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/\",\"name\":\"Vikash Jha\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vikash Jha\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/\",\"name\":\"Monitoring Nginx Connections | TO THE NEW Blog\",\"description\":\"The Nginx web server comes with a bundled module \\\"HttpStubStatusModule\\\". By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \\\/ Handled) Connection Request \\\/ Second Enable Module To get connection stats, we need to enable the status module on nginx\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/monitoring-nginx-connections\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"datePublished\":\"2015-04-24T09:50:26+05:30\",\"dateModified\":\"2015-04-28T12:37:00+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Monitoring Nginx Connections | TO THE NEW Blog","description":"The Nginx web server comes with a bundled module \"HttpStubStatusModule\". By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx","canonical_url":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#article","name":"Monitoring Nginx Connections | TO THE NEW Blog","headline":"Monitoring Nginx Connections","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vikash-jha\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2015-04-24T09:50:26+05:30","dateModified":"2015-04-28T12:37:00+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#webpage"},"articleSection":"Technology, bash script, Monitoring, nginx"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#listItem","name":"Monitoring Nginx Connections"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#listItem","position":3,"name":"Monitoring Nginx Connections","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/vikash-jha\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/vikash-jha\/","name":"Vikash Jha","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vikash Jha"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/","name":"Monitoring Nginx Connections | TO THE NEW Blog","description":"The Nginx web server comes with a bundled module \"HttpStubStatusModule\". By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vikash-jha\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/vikash-jha\/#author"},"datePublished":"2015-04-24T09:50:26+05:30","dateModified":"2015-04-28T12:37:00+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Monitoring Nginx Connections | TO THE NEW Blog","og:description":"The Nginx web server comes with a bundled module &quot;HttpStubStatusModule&quot;. By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx","og:url":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Monitoring Nginx Connections | TO THE NEW Blog","twitter:description":"The Nginx web server comes with a bundled module &quot;HttpStubStatusModule&quot;. By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted \/ Handled) Connection Request \/ Second Enable Module To get connection stats, we need to enable the status module on nginx","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"19256","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 21:30:32","updated":"2024-02-29 09:04:41","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMonitoring Nginx Connections\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Monitoring Nginx Connections","link":"https:\/\/tothenewco.pro\/blog\/monitoring-nginx-connections\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/19256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/100"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=19256"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/19256\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=19256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=19256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=19256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}