<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How do we know whether typing queues are blocked or not? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-know-whether-typing-queues-are-blocked-or-not/m-p/586347#M103085</link>
    <description>&lt;P class="lia-align-left"&gt;Hi All,&lt;/P&gt;
&lt;P class="lia-align-left"&gt;How do we know whether typing queues are blocked or not?&lt;/P&gt;
&lt;P class="lia-align-left"&gt;Is it from Internal logs?&lt;/P&gt;
&lt;P class="lia-align-left"&gt;From the backend of the server, is it possible to find the queue blocks?&lt;/P&gt;</description>
    <pubDate>Thu, 24 Feb 2022 14:39:59 GMT</pubDate>
    <dc:creator>VijaySrrie</dc:creator>
    <dc:date>2022-02-24T14:39:59Z</dc:date>
    <item>
      <title>How do we know whether typing queues are blocked or not?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-know-whether-typing-queues-are-blocked-or-not/m-p/586347#M103085</link>
      <description>&lt;P class="lia-align-left"&gt;Hi All,&lt;/P&gt;
&lt;P class="lia-align-left"&gt;How do we know whether typing queues are blocked or not?&lt;/P&gt;
&lt;P class="lia-align-left"&gt;Is it from Internal logs?&lt;/P&gt;
&lt;P class="lia-align-left"&gt;From the backend of the server, is it possible to find the queue blocks?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 14:39:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-we-know-whether-typing-queues-are-blocked-or-not/m-p/586347#M103085</guid>
      <dc:creator>VijaySrrie</dc:creator>
      <dc:date>2022-02-24T14:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: typing queues are blocked</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-know-whether-typing-queues-are-blocked-or-not/m-p/586355#M103086</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/164779"&gt;@VijaySrrie&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;yes from Internal logs you can check for blocking queues ,&amp;nbsp;especially from&amp;nbsp;metrics.log&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;1. you can check blocked quques from&amp;nbsp; Monioting Console&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Indexing-&amp;gt;Performance-&amp;gt;Indexing Performance : Instance.&lt;BR /&gt;&lt;BR /&gt;2. from CLI uisng&amp;nbsp;metrics.log&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;more&amp;nbsp;metrics.log | grep -i&amp;nbsp;name=typingqueue&lt;BR /&gt;&lt;BR /&gt;you can look for&amp;nbsp;blocked=true messages&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;FYI Queue Order&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;1.parsingQueue&lt;BR /&gt;2.aggQueue/merginig&lt;BR /&gt;3.typingQueue&lt;BR /&gt;4.indexQueue&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 05:15:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-we-know-whether-typing-queues-are-blocked-or-not/m-p/586355#M103086</guid>
      <dc:creator>SanjayReddy</dc:creator>
      <dc:date>2022-02-24T05:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: typing queues are blocked</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-we-know-whether-typing-queues-are-blocked-or-not/m-p/586361#M103088</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/164779"&gt;@VijaySrrie&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you can find blocked queues is MOnitoring Console at [Settings -- Monitoring Console -- Indexing -- Indexing Performance: Instance]&lt;/P&gt;&lt;P&gt;or running a search like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal blocked=true 
| stats count BY host&lt;/LI-CODE&gt;&lt;P&gt;or this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal  source=*metrics.log sourcetype=splunkd group=queue 
| eval name=case(name=="aggqueue","2 - Aggregation Queue",
 name=="indexqueue", "4 - Indexing Queue",
 name=="parsingqueue", "1 - Parsing Queue",
 name=="typingqueue", "3 - Typing Queue",
 name=="splunktcpin", "0 - TCP In Queue",
 name=="tcpin_cooked_pqueue", "0 - TCP In Queue") 
| eval max=if(isnotnull(max_size_kb),max_size_kb,max_size) 
| eval curr=if(isnotnull(current_size_kb),current_size_kb,current_size) 
| eval fill_perc=round((curr/max)*100,2) 
| bin _time span=1m
| stats Median(fill_perc) AS "fill_percentage" by host, _time, name 
| where (fill_percentage&amp;gt;70 AND name!="4 - Indexing Queue") OR (fill_percentage&amp;gt;70 AND name="4 - Indexing Queue"&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 06:42:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-we-know-whether-typing-queues-are-blocked-or-not/m-p/586361#M103088</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-02-24T06:42:47Z</dc:date>
    </item>
  </channel>
</rss>

