<?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: Event Count by Average Overtime in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676174#M231293</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/264512"&gt;@TwitchyB&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You can try below;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="Index 1" OR index="Index 2" OR index="Index 3"
| timechart count by index&lt;/LI-CODE&gt;</description>
    <pubDate>Wed, 31 Jan 2024 21:45:08 GMT</pubDate>
    <dc:creator>scelikok</dc:creator>
    <dc:date>2024-01-31T21:45:08Z</dc:date>
    <item>
      <title>Event Count by Average Overtime</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676172#M231291</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TwitchyB_0-1706733400544.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29187i2F1E6020E9AEDBE7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TwitchyB_0-1706733400544.png" alt="TwitchyB_0-1706733400544.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hello, I'm starting out on my splunk journey and have been tasked with figuring out a dashboard for my executives. I created a layout for a dashboard and had the idea of creating a chart, but have been struggling with the logic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm looking to do is have a the count/average count over time by time so I have a chart of percentages of the day against their average thruput. I had a few ideas for the search but none seemed to work.&lt;BR /&gt;&lt;BR /&gt;could someone give me some direction please on what I've gotten so far? (its definitely wrong)&lt;BR /&gt;&lt;BR /&gt;index=*&lt;BR /&gt;| where index="Index 1" OR&amp;nbsp;index="Index 2" OR&amp;nbsp;index="Index 3"&lt;BR /&gt;| eval Count=sum(count(index)) / "something something something to get the average"&lt;BR /&gt;| timechartcount by Count&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 13:33:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676172#M231291</guid>
      <dc:creator>TwitchyB</dc:creator>
      <dc:date>2024-02-01T13:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Event Count by Average Overtime</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676174#M231293</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/264512"&gt;@TwitchyB&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You can try below;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="Index 1" OR index="Index 2" OR index="Index 3"
| timechart count by index&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 31 Jan 2024 21:45:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676174#M231293</guid>
      <dc:creator>scelikok</dc:creator>
      <dc:date>2024-01-31T21:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Event Count by Average Overtime</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676236#M231301</link>
      <description>&lt;P&gt;Thank you for your reply. I've sort of gotten that far, but where I'm really struggling is trying to make each index their percentage of their respective thruput, sorry if I didn't clarify that in the question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 13:32:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676236#M231301</guid>
      <dc:creator>TwitchyB</dc:creator>
      <dc:date>2024-02-01T13:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Event Count by Average Overtime</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676448#M231362</link>
      <description>&lt;P&gt;Percentage as the sum of values in each time bucket?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index IN ("Index 1", "Index 2", "Index 3")
| timechart count by index
| addtotals
| foreach *
    [eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt; = if(Total == 0, 0, &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt; / Total * 100)]
| fields - Total&lt;/LI-CODE&gt;&lt;P&gt;As &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/206061"&gt;@scelikok&lt;/a&gt;&amp;nbsp;indicates, move index filter into index search is more efficient. (The above is an alternative syntax.)&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2024 00:38:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Event-Count-by-Average-Overtime/m-p/676448#M231362</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2024-02-03T00:38:32Z</dc:date>
    </item>
  </channel>
</rss>

