<?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: Want to see data by host in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164520#M33367</link>
    <description>&lt;P&gt;Good thanks&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jun 2015 12:11:47 GMT</pubDate>
    <dc:creator>chimell</dc:creator>
    <dc:date>2015-06-16T12:11:47Z</dc:date>
    <item>
      <title>Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164512#M33359</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;In the below given query i want to see the data by host but unable to see. Kindly suggest&lt;/P&gt;

&lt;P&gt;index=sc-perfmon (counter="Avg. Disk sec/Read" OR counter="Avg. Disk sec/Write" ) by host | timechart avg(Value) by counter&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2015 08:46:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164512#M33359</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-16T08:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164513#M33360</link>
      <description>&lt;P&gt;HI TRY THIS&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=sc-perfmon (counter="Avg. Disk sec/Read" OR counter="Avg. Disk sec/Write" )  | timechart avg(Value)  by host
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Jun 2015 08:50:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164513#M33360</guid>
      <dc:creator>stephane_cyrill</dc:creator>
      <dc:date>2015-06-16T08:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164514#M33361</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;

&lt;P&gt;Thanks for the reply but if I did it by host only then query runs and it is showing data by host. Then when I will click on show events under it, it will show data for further parameter (Avg. Disk sec/Read and Avg. Disk sec/Write)but what I want that it will show data hostwise for both (counter="Avg. Disk sec/Read" OR counter="Avg. Disk sec/Write") counters  in output.&lt;/P&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;P&gt;Second query is not running.. it is giving an error.&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2015 09:22:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164514#M33361</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-16T09:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164515#M33362</link>
      <description>&lt;P&gt;Hi  sunnyparmar&lt;BR /&gt;
Try this search code&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|set union [search index=sc-perfmon counter="Avg. Disk sec/Read"| timechart avg(Value) by host] [ search index=sc-perfmon counter="Avg. Disk sec/Write" | timechart avg(Value) by host]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Jun 2015 10:48:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164515#M33362</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-06-16T10:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164516#M33363</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;

&lt;P&gt;thanks for the reply but it is given below error when I am running the below query &lt;/P&gt;

&lt;P&gt;index=sc-perfmon (counter="Avg. Disk sec/Read" OR counter="Avg. Disk sec/Write" )  | set union [search index=sc-perfmon counter="Avg. Disk sec/Read"| timechart avg(Value) by host] [ search index=sc-perfmon counter="Avg. Disk sec/Write" | timechart avg(Value) by host]&lt;/P&gt;

&lt;P&gt;ERROR&lt;/P&gt;

&lt;P&gt;Error in 'set' command: This command must be the first command of a search. &lt;/P&gt;

&lt;P&gt;Thanks &amp;amp; Regards&lt;BR /&gt;
Sunny&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2015 11:04:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164516#M33363</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-16T11:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164517#M33364</link>
      <description>&lt;P&gt;Don't add something to the search code that i gave you just run it&lt;BR /&gt;
it works well will my data&lt;BR /&gt;
Delete  index=sc-perfmon (counter="Avg. Disk sec/Read" OR counter="Avg. Disk sec/Write" ) and re-run&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2015 11:08:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164517#M33364</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-06-16T11:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164518#M33365</link>
      <description>&lt;P&gt;Note that the search which contain a &lt;STRONG&gt;set&lt;/STRONG&gt; command always begin with &lt;STRONG&gt;| set&lt;/STRONG&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2015 11:12:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164518#M33365</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-06-16T11:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164519#M33366</link>
      <description>&lt;P&gt;Ultimate.. it works...thanks once again&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2015 11:20:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164519#M33366</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-16T11:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Want to see data by host</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164520#M33367</link>
      <description>&lt;P&gt;Good thanks&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2015 12:11:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Want-to-see-data-by-host/m-p/164520#M33367</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-06-16T12:11:47Z</dc:date>
    </item>
  </channel>
</rss>

