<?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 Re: Splunk search for each month in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-for-each-month/m-p/519420#M146300</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=itsm
| bin span=1mon _time
| eval month_Year = strftime(_time,"%b-%y")
| chart count over Class by month_Year&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Sep 2020 12:36:46 GMT</pubDate>
    <dc:creator>thambisetty</dc:creator>
    <dc:date>2020-09-14T12:36:46Z</dc:date>
    <item>
      <title>Splunk search for each month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-for-each-month/m-p/519416#M146296</link>
      <description>&lt;P&gt;HI All,&lt;/P&gt;&lt;P&gt;Need help in preparing a tabular form.&lt;/P&gt;&lt;P&gt;Data am having :&amp;nbsp;&lt;/P&gt;&lt;P&gt;using the Index am getting below table.&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%"&gt;Class&lt;/TD&gt;&lt;TD width="50%"&gt;Count&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%"&gt;NODEDOWN&lt;/TD&gt;&lt;TD width="50%"&gt;520&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%"&gt;BGPDOWN&lt;/TD&gt;&lt;TD width="50%"&gt;320&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%"&gt;ISISALERT&lt;/TD&gt;&lt;TD width="50%"&gt;130&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query am using&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=itsm
stats count by Class&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Last 60 days data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Requirement:&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want month wise data. I used timewrap and timechart.&amp;nbsp; But the data am getting is not the correct format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected format output.&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="25%"&gt;Class&lt;/TD&gt;&lt;TD width="25%"&gt;Jul-20&lt;/TD&gt;&lt;TD width="25%"&gt;Aug-20&lt;/TD&gt;&lt;TD width="25%"&gt;Sep-20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%"&gt;NODEDOWN&lt;/TD&gt;&lt;TD width="25%"&gt;250&lt;/TD&gt;&lt;TD width="25%"&gt;250&lt;/TD&gt;&lt;TD width="25%"&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%"&gt;BGPDOWN&lt;/TD&gt;&lt;TD width="25%"&gt;150&lt;/TD&gt;&lt;TD width="25%"&gt;150&lt;/TD&gt;&lt;TD width="25%"&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%"&gt;ISISALERT&lt;/TD&gt;&lt;TD width="25%"&gt;50&lt;/TD&gt;&lt;TD width="25%"&gt;50&lt;/TD&gt;&lt;TD width="25%"&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me this format,&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it search for 1 year data. all 12 months in tabular data.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 12:17:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-for-each-month/m-p/519416#M146296</guid>
      <dc:creator>jerinvarghese</dc:creator>
      <dc:date>2020-09-14T12:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk search for each month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-for-each-month/m-p/519420#M146300</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=itsm
| bin span=1mon _time
| eval month_Year = strftime(_time,"%b-%y")
| chart count over Class by month_Year&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 12:36:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-for-each-month/m-p/519420#M146300</guid>
      <dc:creator>thambisetty</dc:creator>
      <dc:date>2020-09-14T12:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk search for each month</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-for-each-month/m-p/519439#M146307</link>
      <description>&lt;P&gt;HI,&amp;nbsp;&lt;/P&gt;&lt;P&gt;My order is coming as below. how can i make it on order.&lt;/P&gt;&lt;P&gt;I tried above qury and that provides me output, but all the order is in alphabetical order not in the month wise order. its not useful data. Please help me get it in month wise order&lt;/P&gt;&lt;TABLE width="277"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="85"&gt;Class&lt;/TD&gt;&lt;TD width="64"&gt;Aug-20&lt;/TD&gt;&lt;TD width="64"&gt;Jul-20&lt;/TD&gt;&lt;TD width="64"&gt;Sep-20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;NODEDOWN&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 15 Sep 2020 11:44:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-for-each-month/m-p/519439#M146307</guid>
      <dc:creator>jerinvarghese</dc:creator>
      <dc:date>2020-09-15T11:44:42Z</dc:date>
    </item>
  </channel>
</rss>

