{"id":512,"date":"2013-01-23T18:22:39","date_gmt":"2013-01-23T23:22:39","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/23\/view-level-of-traffic-with-apache-access-log\/"},"modified":"2021-08-16T23:23:47","modified_gmt":"2021-08-17T03:23:47","slug":"view-level-of-traffic-with-apache-access-log","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/","title":{"rendered":"View level of traffic with Apache access log"},"content":{"rendered":"<p>In this article I&#8217;ll be teaching you how to use the <strong>Apache access logs<\/strong> on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving.<\/p>\n<p>If you&#8217;d like to know what&#8217;s been going on with your server and the visitors that are coming to your websites the Apache access logs provide a wealth of information for this. Apache is the open source web server software that runs on most Linux servers, and every request that goes to one of your websites is logged into an access log to detail vistor activity.<\/p>\n<p>If you&#8217;ve been having problems with the load average on your server spiking by either following the steps in my guide on <a href=\"\/support\/server\/server-usage\/create-server-load-monitoring-bash-script\/\" target=\"_blank\" rel=\"noopener noreferrer\">creating a server load monitoring script<\/a>, or by using some <a href=\"\/support\/server\/server-usage\/advanced-server-load-monitoring\/\" target=\"_blank\" rel=\"noopener noreferrer\">advanced server load monitoring<\/a> tactics, then reviewing your Apache access logs is a good thing to do.<\/p>\n<p>I already covered in my article on <a href=\"\/support\/server\/server-usage\/determine-cause-of-server-usage-spike\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to determine cause of a server usage spike<\/a> how you can track down a specific time range in your Apache access log to correlate it with a recent server load spike. In this particular article I&#8217;m going to focus more broadly on reviewing the entire Apache access log for your website rather than just a small portion of it.<\/p>\n<p class=\"alert\">In order to follow along with the steps in this article, you&#8217;d need either a VPS or dedicated server so that you have SSH access to the server to run the commands we&#8217;ll be covering.<\/p>\n<h2>View number of requests by time from Apache access log<\/h2>\n<p>One of the best ways to get a quick overview of your traffic is by splitting up the requests by how frequently they are happening. Using the steps below I&#8217;ll show you how you can view the number of requests per day, per hour, and per minute from your access logs.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\" target=\"\u00ef\u00bf\u00bd_blank\u00ef\u00bf\u00bd\" rel=\"noopener noreferrer\">Login to your server via SSH<\/a>.<\/li>\n<li>Navigate to your <strong>\/access-logs<\/strong> directory with the following command, in this example our username is <strong>userna5<\/strong>:<br \/>\n<code>cd ~userna5\/access-logs<\/code><\/li>\n<li>Run the following command to view what Apache access logs are currently in the directory:<br \/>\n<code>ls -lahtr<\/code><br \/>\nYou should get back a listing similar to this:<br \/>\n<code>drwxr-xr-x 3 root at0m 4.0K Dec 31 16:47 .<br \/>\ndrwx--x--x 9 root wheel 4.0K Jan 4 06:01 ..<br \/>\n-rw-r----- 2 root at0m 15K Jan 9 05:09 ftp.example.com-ftp_log<br \/>\n-rw-r----- 2 root at0m 3M Jan 23 13:10 example.com<\/code><\/li>\n<h3>View Apache requests per day<\/h3>\n<li>Run the following command to see requests per day:<br \/>\n<code>awk '{print $4}' example.com | cut -d: -f1 | uniq -c<\/code><br \/>\n<strong>Code breakdown:<\/strong><\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk &#8216;{print $4}&#8217; example.com<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command to print out the <strong>$4<\/strong>th column of data from the Apache access log which is the time stamp.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">cut -d: -f1 | uniq -c<\/th>\n<td style=\"padding: 15px;\">Use the <strong>cut<\/strong> command with the <strong>-d<\/strong>elimter set to a colon <strong>:<\/strong> and grab the <strong>-f<\/strong>ield of data that shows up <strong>1<\/strong>st before the delimiter. Then use the <strong>uniq -c<\/strong> command to uniquely count up the hits.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>You should get back something like this:<br \/>\n<code>6095 [20\/Jan\/2013<br \/>\n7281 [21\/Jan\/2013<br \/>\n6517 [22\/Jan\/2013<br \/>\n5278 [23\/Jan\/2013<\/code><\/li>\n<h3>View Apache requests per hour<\/h3>\n<li>Run the following command to see requests per hour:<br \/>\n<code>grep \"23\/Jan\" progolfdeal.com | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2\":00\"}' | sort -n | uniq -c<\/code><br \/>\n<strong>Code breakdown:<\/strong><\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">grep &#8220;23\/Jan&#8221; progolfdeal.com<\/th>\n<td style=\"padding: 15px;\">Use the <strong>grep<\/strong> command to only show hits from today from the Apache access log.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">cut -d[ -f2 | cut -d] -f1<\/th>\n<td style=\"padding: 15px;\">Use the <strong>cut<\/strong> command with the <strong>-d<\/strong>elimter set to an opening bracket <strong>[<\/strong> and print out the <strong>-f<\/strong>ield of data that shows up <strong>2<\/strong>nd, then use the <strong>cut<\/strong> command again with the <strong>-d<\/strong>elimter set to a closing bracket <strong>]<\/strong> and print out the <strong>-f<\/strong>ield of data that shows up <strong>1<\/strong>st which gives us just the time stamp.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk -F: &#8216;{print $2&#8243;:00&#8243;}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command with the <strong>-F<\/strong>ield delimiter set to a colon <strong>:<\/strong>, then print out the <strong>$2<\/strong>nd column of data which is the hour, and append <strong>&#8220;:00&#8221;<\/strong> to the end of it.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">sort -n | uniq -c<\/th>\n<td style=\"padding: 15px;\">Finally sort the hours numerically, and then uniquely count them up.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>You should get back something like this:<br \/>\n<code>200 00:00<br \/>\n417 01:00<br \/>\n244 02:00<br \/>\n242 03:00<br \/>\n344 04:00<br \/>\n402 05:00<br \/>\n522 06:00<br \/>\n456 07:00<br \/>\n490 08:00<br \/>\n438 09:00<br \/>\n430 10:00<br \/>\n357 11:00<br \/>\n284 12:00<br \/>\n391 13:00<br \/>\n163 14:00<\/code><\/li>\n<h3>View Apache requests per minute<\/h3>\n<li>Run the following command to see requests per minute:<br \/>\n<code>grep \"23\/Jan\/2013:06\" example.com | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2\":\"$3}' |<br \/>\nsort -nk1 -nk2 | uniq -c | awk '{ if ($1 &gt; 10) print $0}'<\/code><br \/>\n<strong>Code breakdown:<\/strong><\/p>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">grep &#8220;23\/Jan\/2013:06&#8221; example.com<\/th>\n<td style=\"padding: 15px;\">Use the <strong>grep<\/strong> command to only show hits from today during the <strong>06<\/strong>th hour from our Apache access log.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">cut -d[ -f2 | cut -d] -f1<\/th>\n<td style=\"padding: 15px;\">Use the <strong>cut<\/strong> command with the <strong>-d<\/strong>elimter set to an opening bracket <strong>[<\/strong> and print out the <strong>-f<\/strong>ield of data that shows up <strong>2<\/strong>nd, then use the <strong>cut<\/strong> command again with the <strong>-d<\/strong>elimter set to a closing bracket <strong>]<\/strong> and print out the <strong>-f<\/strong>ield of data that shows up <strong>1<\/strong>st which gives us just the time stamp.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk -F: &#8216;{print $2&#8243;:&#8221;$3}&#8217;<\/th>\n<td style=\"padding: 15px;\">Use the <strong>awk<\/strong> command with the <strong>-F<\/strong>ield delimiter set to a colon <strong>:<\/strong>, then print out the <strong>$2<\/strong>nd column which is the hour, follwed by the <strong>$3<\/strong>th colum which is the minute.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">sort -nk1 -nk2 | uniq -c<\/th>\n<td style=\"padding: 15px;\">Sort the hits numerically by the <strong>1<\/strong>st column which is the hour, then by the <strong>2<\/strong>nd column which is the minute.<\/td>\n<\/tr>\n<tr>\n<th style=\"width: 55%; padding: 15px;\">awk &#8216;{ if ($1 &gt; 10) print $0}&#8217;<\/th>\n<td style=\"padding: 15px;\">Finally use the <strong>awk<\/strong> command with an <strong>if<\/strong> statment to only print out data when the <strong>$1<\/strong>st colum which is the number of hits in a minute is greater than <strong>10<\/strong>.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>You should get back something similar to this:<\/p>\n<p><code>12 06:10<br \/>\n11 06:11<br \/>\n16 06:12<br \/>\n13 06:20<br \/>\n11 06:21<br \/>\n12 06:28<br \/>\n12 06:30<br \/>\n16 06:31<br \/>\n14 06:39<br \/>\n11 06:40<br \/>\n15 06:52<br \/>\n32 06:53<br \/>\n43 06:54<br \/>\n14 06:55<\/code><\/li>\n<\/ol>\n<p>You should now know how to get the level of traffic on your website, either daily, hourly, or by the minute using the Apache access log.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I&#8217;ll be teaching you how to use the Apache access logs on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving. If you&#8217;d like to know what&#8217;s been going on with your server and the visitors that are coming to your websites the<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4355],"tags":[],"class_list":["post-512","post","type-post","status-publish","format-standard","hentry","category-apache"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>View level of traffic with Apache access log | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;ll be teaching you how to use the Apache access logs on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"View level of traffic with Apache access log | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;ll be teaching you how to use the Apache access logs on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-01-23T23:22:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:23:47+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"View level of traffic with Apache access log\",\"datePublished\":\"2013-01-23T23:22:39+00:00\",\"dateModified\":\"2021-08-17T03:23:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\"},\"wordCount\":843,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Apache\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\",\"name\":\"View level of traffic with Apache access log | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-01-23T23:22:39+00:00\",\"dateModified\":\"2021-08-17T03:23:47+00:00\",\"description\":\"In this article I'll be teaching you how to use the Apache access logs on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"View level of traffic with Apache access log\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"View level of traffic with Apache access log | InMotion Hosting","description":"In this article I'll be teaching you how to use the Apache access logs on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving.","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:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/","og_locale":"en_US","og_type":"article","og_title":"View level of traffic with Apache access log | InMotion Hosting","og_description":"In this article I'll be teaching you how to use the Apache access logs on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-23T23:22:39+00:00","article_modified_time":"2021-08-17T03:23:47+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"View level of traffic with Apache access log","datePublished":"2013-01-23T23:22:39+00:00","dateModified":"2021-08-17T03:23:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/"},"wordCount":843,"commentCount":2,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Apache"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/","name":"View level of traffic with Apache access log | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-01-23T23:22:39+00:00","dateModified":"2021-08-17T03:23:47+00:00","description":"In this article I'll be teaching you how to use the Apache access logs on your VPS (Virtual Private Server) or dedicated server to inspect the levels of traffic your websites are receiving.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/apache\/view-level-of-traffic-with-apache-access-log\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"View level of traffic with Apache access log"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/512","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=512"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/512\/revisions"}],"predecessor-version":[{"id":85034,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/512\/revisions\/85034"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=512"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=512"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=512"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}