<?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: VIEW n events pear second in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547920#M8961</link>
    <description>&lt;P&gt;Thanks for respond but&amp;nbsp; I see to look more 40 events pear second:&lt;/P&gt;&lt;P&gt;| dedup id | eval seconds=round(_time,0)&lt;BR /&gt;| streamstats count by seconds | where count &amp;lt;= 40 | timechart span=1s count&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gbriones_0-1618416601195.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13769i894EFAC89ED2F9A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gbriones_0-1618416601195.png" alt="gbriones_0-1618416601195.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;gbriones_0-1618416601195.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 14 Apr 2021 16:11:06 GMT</pubDate>
    <dc:creator>gbriones</dc:creator>
    <dc:date>2021-04-14T16:11:06Z</dc:date>
    <item>
      <title>VIEW n events pear second</title>
      <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547916#M8959</link>
      <description>&lt;P&gt;I need&amp;nbsp; to show first 40 events pear seconds in the range 15 minutes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 15:51:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547916#M8959</guid>
      <dc:creator>gbriones</dc:creator>
      <dc:date>2021-04-14T15:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: VIEW n events pear second</title>
      <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547917#M8960</link>
      <description>&lt;P&gt;Assuming your search is over a 15 minute period, round time to seconds, and count events by second, then only keep the first 40 per second&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;... | eval seconds=round(_time,0)
| streamstats count by seconds
| where count &amp;lt;= 40&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 14 Apr 2021 15:59:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547917#M8960</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-14T15:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: VIEW n events pear second</title>
      <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547920#M8961</link>
      <description>&lt;P&gt;Thanks for respond but&amp;nbsp; I see to look more 40 events pear second:&lt;/P&gt;&lt;P&gt;| dedup id | eval seconds=round(_time,0)&lt;BR /&gt;| streamstats count by seconds | where count &amp;lt;= 40 | timechart span=1s count&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gbriones_0-1618416601195.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/13769i894EFAC89ED2F9A9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gbriones_0-1618416601195.png" alt="gbriones_0-1618416601195.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;gbriones_0-1618416601195.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 16:11:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547920#M8961</guid>
      <dc:creator>gbriones</dc:creator>
      <dc:date>2021-04-14T16:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: VIEW n events pear second</title>
      <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547921#M8962</link>
      <description>&lt;P&gt;Does sorting by time first help?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;... | sort _time
| eval seconds=round(_time,0)
| streamstats count by seconds
| where count &amp;lt;= 40&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 14 Apr 2021 16:17:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547921#M8962</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-14T16:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: VIEW n events pear second</title>
      <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547923#M8963</link>
      <description>&lt;P&gt;keeps showing results greater than 40 &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 16:30:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547923#M8963</guid>
      <dc:creator>gbriones</dc:creator>
      <dc:date>2021-04-14T16:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: VIEW n events pear second</title>
      <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547924#M8964</link>
      <description>&lt;P&gt;For example, if 100 events fell in one second, I need to only take the first 40 and continue with the next second&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 16:45:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547924#M8964</guid>
      <dc:creator>gbriones</dc:creator>
      <dc:date>2021-04-14T16:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: VIEW n events pear second</title>
      <link>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547925#M8965</link>
      <description>&lt;LI-CODE lang="markup"&gt;... | sort _time
| eval seconds=floor(_time)
| streamstats count by seconds
| where count &amp;lt;= 40&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 14 Apr 2021 16:48:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/VIEW-n-events-pear-second/m-p/547925#M8965</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-14T16:48:27Z</dc:date>
    </item>
  </channel>
</rss>

