{"id":2273,"date":"2016-11-16T23:22:54","date_gmt":"2016-11-16T23:22:54","guid":{"rendered":"http:\/\/pariswells.com\/blog\/?p=2273"},"modified":"2023-06-08T09:01:20","modified_gmt":"2023-06-08T09:01:20","slug":"iis-performance-counter-total-locked-errors-how-to-detect-locked-files","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files","title":{"rendered":"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignleft\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"77\" src=\"http:\/\/pariswells.com\/blog\/wp-content\/uploads\/2015\/12\/solarwinds-inc-logo1-300x77.jpg\" alt=\"solarwinds-inc-logo[1]\" class=\"wp-image-1825 img-responsive\" srcset=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2015\/12\/solarwinds-inc-logo1-300x77.jpg 300w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2015\/12\/solarwinds-inc-logo1-768x197.jpg 768w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2015\/12\/solarwinds-inc-logo1-1024x263.jpg 1024w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2015\/12\/solarwinds-inc-logo1.jpg 1149w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">We had some alerts coming up for an IIS site in Solarwinds which read the value for this&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><br><strong>Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Per Microsoft Description of the alert :&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Number of requests that could not be satisfied by the server because the requested document was locked (since service startup).Generally reported as HTTP error 423.<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There is no other way to find out which files were locked apart from Parsing the IIS Log Files<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>How to do this?<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Download and install these both<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.microsoft.com\/en-us\/download\/confirmation.aspx?id=24659\">https:\/\/www.microsoft.com\/en-us\/download\/confirmation.aspx?id=24659<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/techcommunity.microsoft.com\/t5\/exchange-team-blog\/introducing-log-parser-studio\/ba-p\/601131\">https:\/\/techcommunity.microsoft.com\/t5\/exchange-team-blog\/introducing-log-parser-studio\/ba-p\/601131<\/a> -> Click on LPSV2.D2.zip<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/techcommunity.microsoft.com\/gxcuf89792\/attachments\/gxcuf89792\/Exchange\/16744\/1\/LPSV2.D2.zip\"><\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once done , open up Studio and&nbsp;insert the&nbsp;IIS Log Files. (&nbsp;<a href=\"https:\/\/www.iis.net\/configreference\/system.applicationhost\/sites\/sitedefaults\/logfile\">Click here for how to find these<\/a>&nbsp;)&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure the&nbsp;Log type is set to&nbsp;IISW3CLOG&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Use the Query below to Query all the 423 Errors<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The list you are presented should show you all the files that have been locked which you can inspect and up the threshold if needed or increase the value of this Threshold!<\/p>\n\n\n<p>\/* All 423 errors to any IIS\/.NET Web Service *\/<\/p>\n<p>SELECT cs-uri-stem as Uri,<\/p>\n<p>sc-status as HttpStatus,<\/p>\n<p>sc-substatus as SubStatus,<\/p>\n<p>sc-win32-status as Win32Status,<\/p>\n<p>       COUNT(*) AS Total<\/p>\n<p>FROM &#8216;[LOGFILEPATH]&#8217;<\/p>\n<p>WHERE (sc-status = 423)<\/p>\n<p>GROUP BY Uri, HttpStatus, SubStatus, Win32Status<\/p>\n<p>ORDER BY Total DESC<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We had some alerts coming up for an IIS site in Solarwinds which read the value for this&nbsp; Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[1659,1660,1401,1658,1663,1662,1661,1267,1664],"class_list":["post-2273","post","type-post","status-publish","format-standard","hentry","category-random","tag-how-to-find-locked-files","tag-http-error-423","tag-iis","tag-locked","tag-locked-files","tag-log-files","tag-parse","tag-solarwinds","tag-total-locked-files"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"IIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-11-16T23:22:54+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-06-08T09:01:20+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"IIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#article\",\"name\":\"IIS Performance Counter \\u2013 Total Locked Errors \\u2013 How to detect locked files | Welcome to Pariswells.com\",\"headline\":\"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/12\\\/solarwinds-inc-logo1.jpg\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files\\\/#articleImage\",\"width\":1149,\"height\":295},\"datePublished\":\"2016-11-16T23:22:54+00:00\",\"dateModified\":\"2023-06-08T09:01:20+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#webpage\"},\"articleSection\":\"Random, how to find locked files, HTTP error 423, IIS, locked, locked files, log files, parse, Solarwinds, total locked files\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"name\":\"Random\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"position\":2,\"name\":\"Random\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#listItem\",\"name\":\"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#listItem\",\"position\":3,\"name\":\"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"name\":\"Random\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files\",\"name\":\"IIS Performance Counter \\u2013 Total Locked Errors \\u2013 How to detect locked files | Welcome to Pariswells.com\",\"description\":\"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2016-11-16T23:22:54+00:00\",\"dateModified\":\"2023-06-08T09:01:20+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"IIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files | Welcome to Pariswells.com","description":"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests","canonical_url":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#article","name":"IIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files | Welcome to Pariswells.com","headline":"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2015\/12\/solarwinds-inc-logo1.jpg","@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files\/#articleImage","width":1149,"height":295},"datePublished":"2016-11-16T23:22:54+00:00","dateModified":"2023-06-08T09:01:20+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#webpage"},"articleSection":"Random, how to find locked files, HTTP error 423, IIS, locked, locked files, log files, parse, Solarwinds, total locked files"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","name":"Random"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","position":2,"name":"Random","item":"https:\/\/pariswells.com\/blog\/category\/random","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#listItem","name":"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#listItem","position":3,"name":"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","name":"Random"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#webpage","url":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files","name":"IIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files | Welcome to Pariswells.com","description":"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2016-11-16T23:22:54+00:00","dateModified":"2023-06-08T09:01:20+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"IIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files | Welcome to Pariswells.com","og:description":"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests","og:url":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files","article:published_time":"2016-11-16T23:22:54+00:00","article:modified_time":"2023-06-08T09:01:20+00:00","twitter:card":"summary","twitter:title":"IIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files | Welcome to Pariswells.com","twitter:description":"We had some alerts coming up for an IIS site in Solarwinds which read the value for this Win32_PerfFormattedData_W3SVC_WebService(SITECODE)\\TotalLockedErrors And alerted us when above 0. This is a Custom Performance Counter Monitor which uses WMI to get the counter by reading the IIS Log Files. Per Microsoft Description of the alert : Number of requests"},"aioseo_meta_data":{"post_id":"2273","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"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":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"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":"","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 05:39:32","updated":"2023-06-08 09:06:11","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/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:\/\/pariswells.com\/blog\/category\/random\" title=\"Random\">Random<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tIIS Performance Counter \u2013 Total Locked Errors \u2013 How to detect locked files\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Random","link":"https:\/\/pariswells.com\/blog\/category\/random"},{"label":"IIS Performance Counter &#8211; Total Locked Errors &#8211; How to detect locked files","link":"https:\/\/pariswells.com\/blog\/random\/iis-performance-counter-total-locked-errors-how-to-detect-locked-files"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/2273","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=2273"}],"version-history":[{"count":4,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/2273\/revisions"}],"predecessor-version":[{"id":6969,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/2273\/revisions\/6969"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=2273"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=2273"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=2273"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}