<?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: Indexed Events Per Minute in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158686#M185895</link>
    <description>&lt;P&gt;@ahjmcaleer, down voting a over three years old post is pretty harsh .... but I'm also here to help, so find the most recent link here &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.5.1/SearchReference/Eventstats"&gt;http://docs.splunk.com/Documentation/Splunk/6.5.1/SearchReference/Eventstats&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I'm looking forward for your upvote &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jan 2017 18:44:44 GMT</pubDate>
    <dc:creator>MuS</dc:creator>
    <dc:date>2017-01-04T18:44:44Z</dc:date>
    <item>
      <title>Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158672#M185881</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;is it possible to write a search, that shows the total count of events by indextime (span=1m)?&lt;/P&gt;

&lt;P&gt;Best&lt;/P&gt;

&lt;P&gt;Heinz&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 17:01:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158672#M185881</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2013-11-27T17:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158673#M185882</link>
      <description>&lt;P&gt;Hi HeinzWaescher,&lt;/P&gt;

&lt;P&gt;Could it be you are looking for &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0/SearchReference/Eventcount"&gt;eventcount&lt;/A&gt; ?&lt;/P&gt;

&lt;P&gt;Cheers, MuS&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 17:05:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158673#M185882</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2013-11-27T17:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158674#M185883</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I already had a look at this, but don't know how to achieve me goal with it&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 17:08:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158674#M185883</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2013-11-27T17:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158675#M185884</link>
      <description>&lt;P&gt;Maybe something like&lt;/P&gt;

&lt;P&gt;YourSearch | bucket _indextime span=1m | stats count by _indextime&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 17:35:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158675#M185884</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2013-11-27T17:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158676#M185885</link>
      <description>&lt;P&gt;Try this: &lt;STRONG&gt;UPDATED&lt;/STRONG&gt; with a search that works.  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=main |  eval indexed_time=strftime(_indextime, "%+") | timechart span="1m" count(indexed_time)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Nov 2013 17:37:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158676#M185885</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-11-27T17:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158677#M185886</link>
      <description>&lt;P&gt;FYI, &lt;CODE&gt;_indextime=*&lt;/CODE&gt; is unnecessary as &lt;STRONG&gt;all&lt;/STRONG&gt; events have the &lt;CODE&gt;_indextime&lt;/CODE&gt; field&lt;/P&gt;

&lt;P&gt;The &lt;CODE&gt;sort&lt;/CODE&gt; and the &lt;CODE&gt;table&lt;/CODE&gt; commands are likewise unneeded, as &lt;CODE&gt;stats&lt;/CODE&gt; already does these functions.&lt;/P&gt;

&lt;P&gt;Otherwise, this is fine.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 17:46:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158677#M185886</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-11-27T17:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158678#M185887</link>
      <description>&lt;P&gt;Thanks, learn something new every day.  Also, learned that this search I posted give the wrong results...  Updating it now.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2013 17:58:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158678#M185887</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-11-27T17:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158679#M185888</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;but this search is using _time and not the indextime, right? And _time is using a timestamp of the event.&lt;BR /&gt;
So for my purposes the timechart should use the indextime.&lt;/P&gt;

&lt;P&gt;Could this be a correct approach?  &lt;/P&gt;

&lt;P&gt;index=* | rename _indextime AS _time | timechart span=1min count | sort 0 - _time&lt;/P&gt;

&lt;P&gt;I get results, but have to option to check them back&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2013 08:53:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158679#M185888</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2013-11-28T08:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158680#M185889</link>
      <description>&lt;P&gt;Hi Heinz, now that I'm able to test things I would suggest that you use something like this:&lt;/P&gt;

&lt;P&gt;index=* | bucket span=1m _indextime | eval myTime=strftime(_indextime, "%+") | chart count by myTime&lt;/P&gt;

&lt;P&gt;timechart uses _time underneeth and with chart you can define 'over' and 'by' clauses.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:23:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158680#M185889</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2020-09-28T15:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158681#M185890</link>
      <description>&lt;P&gt;I don't think calling _indextime _time is going to change the time used by timechart.&lt;BR /&gt;
I think what you want to do is extract the minute from the _indextime field, and then count by that minute.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2013 15:17:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158681#M185890</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-11-28T15:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158682#M185891</link>
      <description>&lt;P&gt;hey,&lt;/P&gt;

&lt;P&gt;renaming _time works. just try out a very simple search:&lt;/P&gt;

&lt;P&gt;your search | eval _time=now() | timechart count&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2013 17:26:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158682#M185891</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2013-11-28T17:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158683#M185892</link>
      <description>&lt;P&gt;Hey MuS,&lt;/P&gt;

&lt;P&gt;thanks for the new input. This search works fine and gives the same results as the search I tried out earlier:&lt;/P&gt;

&lt;P&gt;index=* | rename _indextime AS _time | timechart span=1min count | sort 0 - _time&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2013 18:14:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158683#M185892</guid>
      <dc:creator>HeinzWaescher</dc:creator>
      <dc:date>2013-11-28T18:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158684#M185893</link>
      <description>&lt;P&gt;Cool, so you're all set then?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2013 18:43:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158684#M185893</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2013-11-28T18:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158685#M185894</link>
      <description>&lt;P&gt;I downvoted this post because the link no longer works.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 18:34:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158685#M185894</guid>
      <dc:creator>ahjmcaleer</dc:creator>
      <dc:date>2017-01-04T18:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Indexed Events Per Minute</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158686#M185895</link>
      <description>&lt;P&gt;@ahjmcaleer, down voting a over three years old post is pretty harsh .... but I'm also here to help, so find the most recent link here &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.5.1/SearchReference/Eventstats"&gt;http://docs.splunk.com/Documentation/Splunk/6.5.1/SearchReference/Eventstats&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I'm looking forward for your upvote &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 18:44:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Indexed-Events-Per-Minute/m-p/158686#M185895</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2017-01-04T18:44:44Z</dc:date>
    </item>
  </channel>
</rss>

