<?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 splunk SPL in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499343#M139059</link>
    <description>&lt;P&gt;my search | stats count(eval(Code="3011648")) as "Incorrect login code"  I am counting incorrect login code  from this I want to divide count by week Monday Tuesday Wednesday Thursday Friday Saturday and Sunday in Realtime I want to count last seven days in a dashboard&lt;/P&gt;

&lt;P&gt;Can some one help me please&lt;/P&gt;</description>
    <pubDate>Tue, 08 Oct 2019 20:43:24 GMT</pubDate>
    <dc:creator>vikram1583</dc:creator>
    <dc:date>2019-10-08T20:43:24Z</dc:date>
    <item>
      <title>splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499343#M139059</link>
      <description>&lt;P&gt;my search | stats count(eval(Code="3011648")) as "Incorrect login code"  I am counting incorrect login code  from this I want to divide count by week Monday Tuesday Wednesday Thursday Friday Saturday and Sunday in Realtime I want to count last seven days in a dashboard&lt;/P&gt;

&lt;P&gt;Can some one help me please&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 20:43:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499343#M139059</guid>
      <dc:creator>vikram1583</dc:creator>
      <dc:date>2019-10-08T20:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499344#M139060</link>
      <description>&lt;P&gt;Try this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;my search Code="3011648" earliest=-7d | stats count as "Incorrect login code" by date_wday
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Oct 2019 21:55:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499344#M139060</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-10-08T21:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499345#M139061</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;P&gt;your search&lt;BR /&gt;
|bin _time span=1d&lt;BR /&gt;
| stats count(eval(like(Code, "3011648"))) as Incorrect_Login by _time&lt;/P&gt;

&lt;P&gt;I would avoid real time searches&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:25:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499345#M139061</guid>
      <dc:creator>jdhunter</dc:creator>
      <dc:date>2020-09-30T02:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499346#M139062</link>
      <description>&lt;P&gt;Thanks for the Response Its working But days are not coming in an order I want it in an order like Monday Tuesday Wednesday ------- sunday&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 22:35:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499346#M139062</guid>
      <dc:creator>vikram1583</dc:creator>
      <dc:date>2019-10-08T22:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499347#M139063</link>
      <description>&lt;P&gt;So sort them.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;my search Code="3011648" earliest=-7d | stats count as "Incorrect login code" by date_wday
| eval sorter = case(date_wday="Monday",1, date_wday="Tuesday",2, date_wday="Wednesday",3, date_wday="Thursday",4, date_wday="Friday",5, date_wday="Saturday",6, date_wday="Sunday",7)
| sort sorter | fields - sorter
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Oct 2019 23:56:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499347#M139063</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2019-10-08T23:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499348#M139064</link>
      <description>&lt;P&gt;Not working&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 00:00:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/splunk-SPL/m-p/499348#M139064</guid>
      <dc:creator>vikram1583</dc:creator>
      <dc:date>2019-10-09T00:00:43Z</dc:date>
    </item>
  </channel>
</rss>

