<?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 generate a line chart for disk space by server and hard drive? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267188#M80383</link>
    <description>&lt;P&gt;Regular events from perfmon for example:&lt;/P&gt;

&lt;P&gt;collection="Free Disk Space"&lt;BR /&gt;
object=LogicalDisk&lt;BR /&gt;
counter="% Free Space"&lt;BR /&gt;
instance=C:&lt;BR /&gt;
Value=30.601598715187794&lt;BR /&gt;
host =  server1&lt;/P&gt;

&lt;P&gt;collection="Free Disk Space"&lt;BR /&gt;
object=LogicalDisk&lt;BR /&gt;
counter="% Free Space"&lt;BR /&gt;
instance=C:&lt;BR /&gt;
Value=63.5187794&lt;BR /&gt;
host =  server2&lt;/P&gt;

&lt;P&gt;server1 has 3 drive letters C:, E:, F:.&lt;BR /&gt;
server 2 has 1 drive letter C:&lt;BR /&gt;
server 3 has 3 drive letters C:, D:, E:&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2017 17:23:26 GMT</pubDate>
    <dc:creator>jsndvl11</dc:creator>
    <dc:date>2017-02-01T17:23:26Z</dc:date>
    <item>
      <title>How to generate a line chart for disk space by server and hard drive?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267186#M80381</link>
      <description>&lt;P&gt;I'm new to Splunk and need some help with a chart for disk space usage.  I'm getting the data already in Splunk Light and would like to do a line chart that displays ALL servers and ALL drives in the same chart.  &lt;/P&gt;

&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 16:41:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267186#M80381</guid>
      <dc:creator>jsndvl11</dc:creator>
      <dc:date>2017-02-01T16:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a line chart for disk space by server and hard drive?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267187#M80382</link>
      <description>&lt;P&gt;Sample events please.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 17:12:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267187#M80382</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-01T17:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a line chart for disk space by server and hard drive?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267188#M80383</link>
      <description>&lt;P&gt;Regular events from perfmon for example:&lt;/P&gt;

&lt;P&gt;collection="Free Disk Space"&lt;BR /&gt;
object=LogicalDisk&lt;BR /&gt;
counter="% Free Space"&lt;BR /&gt;
instance=C:&lt;BR /&gt;
Value=30.601598715187794&lt;BR /&gt;
host =  server1&lt;/P&gt;

&lt;P&gt;collection="Free Disk Space"&lt;BR /&gt;
object=LogicalDisk&lt;BR /&gt;
counter="% Free Space"&lt;BR /&gt;
instance=C:&lt;BR /&gt;
Value=63.5187794&lt;BR /&gt;
host =  server2&lt;/P&gt;

&lt;P&gt;server1 has 3 drive letters C:, E:, F:.&lt;BR /&gt;
server 2 has 1 drive letter C:&lt;BR /&gt;
server 3 has 3 drive letters C:, D:, E:&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 17:23:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267188#M80383</guid>
      <dc:creator>jsndvl11</dc:creator>
      <dc:date>2017-02-01T17:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a line chart for disk space by server and hard drive?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267189#M80384</link>
      <description>&lt;P&gt;Depends upon what you want to plot as x-axis value and what as series, try something like this (check the sourcetype name is correct or not)&lt;/P&gt;

&lt;P&gt;host on x-axis, and one line for each drive&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=foo sourcetype="Perfmon:Logical Disk" 
| chart avg(Value) over host by instance limit=0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;drive on x-axis, and one line for each host&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=foo sourcetype="Perfmon:Logical Disk" 
| chart avg(Value) over instance by host limit=0 | rename instance as drive
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Feb 2017 17:32:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267189#M80384</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-01T17:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a line chart for disk space by server and hard drive?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267190#M80385</link>
      <description>&lt;P&gt;yes, please post what you have (code and a sample event) so we can be of most help.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 17:37:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267190#M80385</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-02-01T17:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to generate a line chart for disk space by server and hard drive?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267191#M80386</link>
      <description>&lt;P&gt;Thanks for your help.  This is what I was looking for.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 18:06:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-generate-a-line-chart-for-disk-space-by-server-and-hard/m-p/267191#M80386</guid>
      <dc:creator>jsndvl11</dc:creator>
      <dc:date>2017-02-01T18:06:51Z</dc:date>
    </item>
  </channel>
</rss>

