<?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: How to search for a list of hosts and the count of events that have been indexed per day for each host? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163463#M46409</link>
    <description>&lt;P&gt;If you prefer the other way, (date at columns, rows as hosts )&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt; mysearch &amp;gt;  | bucket _time span=1d  
|convert ctime(_time) AS date timeformat="%Y/%m/%d" 
| chart count over host by date
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 22 Dec 2014 17:44:53 GMT</pubDate>
    <dc:creator>yannK</dc:creator>
    <dc:date>2014-12-22T17:44:53Z</dc:date>
    <item>
      <title>How to search for a list of hosts and the count of events that have been indexed per day for each host?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163460#M46406</link>
      <description>&lt;P&gt;I am sure that this has been asked and answered but I cant find a format that gives me what I am looking for.&lt;/P&gt;

&lt;P&gt;I would like to get a list of hosts and the count of events per day from that host that have been indexed.  Essentially I would like to take this to management and show ROI that looks at the millions of events each day from these hosts that have been indexed.&lt;/P&gt;

&lt;P&gt;So it would show&lt;/P&gt;

&lt;P&gt;Hosts         12/1      12/2     12/3    12/4  (last 7 or 30 days)&lt;BR /&gt;
Host1        xxxx     xxxx     xxxx    xxxx&lt;BR /&gt;
Host 2       xxxx     xxxx     xxxx    xxxx&lt;BR /&gt;
Firewall    xxxx     xxxx      xxxx    xxxx&lt;BR /&gt;
etc&lt;/P&gt;

&lt;P&gt;xxxx = number of events indexed&lt;/P&gt;

&lt;P&gt;Any help is appreciated - thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2014 15:38:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163460#M46406</guid>
      <dc:creator>dolejh76</dc:creator>
      <dc:date>2014-12-22T15:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to search for a list of hosts and the count of events that have been indexed per day for each host?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163461#M46407</link>
      <description>&lt;P&gt;Hi dolejh76,&lt;/P&gt;

&lt;P&gt;try something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search here | timechart span=1d count by host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;hope it helps ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2014 15:42:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163461#M46407</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2014-12-22T15:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to search for a list of hosts and the count of events that have been indexed per day for each host?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163462#M46408</link>
      <description>&lt;P&gt;That helped thanks - one more for you - what about size in KB for the same data?  This way I can show how much of our license each host is chewing up per day?&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
John&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2014 17:19:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163462#M46408</guid>
      <dc:creator>dolejh76</dc:creator>
      <dc:date>2014-12-22T17:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to search for a list of hosts and the count of events that have been indexed per day for each host?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163463#M46409</link>
      <description>&lt;P&gt;If you prefer the other way, (date at columns, rows as hosts )&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt; mysearch &amp;gt;  | bucket _time span=1d  
|convert ctime(_time) AS date timeformat="%Y/%m/%d" 
| chart count over host by date
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Dec 2014 17:44:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163463#M46409</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2014-12-22T17:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to search for a list of hosts and the count of events that have been indexed per day for each host?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163464#M46410</link>
      <description>&lt;P&gt;Sure, on your license master search the internal index for the source &lt;CODE&gt;license_usage.log&lt;/CODE&gt; like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source="*license_usage.log" | timechart span=1d sum(eval(b/1024)) AS KB by h | rename h AS host
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2014 22:36:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163464#M46410</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2014-12-22T22:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to search for a list of hosts and the count of events that have been indexed per day for each host?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163465#M46411</link>
      <description>&lt;P&gt;I like this report - unfortunately... there is a NULL field that has a considerable amount of data usage?  Any idea what that would be?  At this point we are ONLY pulling in wineventlogs and AD data - so it shouldn't be this high...&lt;/P&gt;

&lt;P&gt;Looks like there is an "OTHER" Field as well....  so what is "OTHER" and "NULL"&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
JD&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2014 17:16:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163465#M46411</guid>
      <dc:creator>dolejh76</dc:creator>
      <dc:date>2014-12-24T17:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to search for a list of hosts and the count of events that have been indexed per day for each host?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163466#M46412</link>
      <description>&lt;P&gt;see the docs about &lt;CODE&gt;timechart tc options&lt;/CODE&gt; &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.1/SearchReference/Timechart#tc_options"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.1/SearchReference/Timechart#tc_options&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2014 09:18:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-for-a-list-of-hosts-and-the-count-of-events-that/m-p/163466#M46412</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2014-12-26T09:18:02Z</dc:date>
    </item>
  </channel>
</rss>

