<?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: Disk Space Free over time - Multiple instances, multiple server hosts in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312962#M93676</link>
    <description>&lt;P&gt;So that just changes which values I am getting for the search -- It still refuses to show me that information spanned over time due to the fact there are 4 data inputs for the charts. _time, host, instance, and value - I want Host to be the header to the field, instance to be the lines, value to be one axis and time the other.. &lt;/P&gt;</description>
    <pubDate>Fri, 14 Jul 2017 12:29:41 GMT</pubDate>
    <dc:creator>Seenon01</dc:creator>
    <dc:date>2017-07-14T12:29:41Z</dc:date>
    <item>
      <title>Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312960#M93674</link>
      <description>&lt;P&gt;I am working on a chart that would show all servers with each of their hard drives mapping their drive space over a time period. I would like to get this into a trellis charting where each trellis show the server and each line represents the space free over time.&lt;/P&gt;

&lt;P&gt;I keep running into problems with this as I can only manage to get a average of the disk space free into each report on each drive. &lt;BR /&gt;
example:&lt;BR /&gt;
Server1&lt;BR /&gt;
Drives C;D;E;F;Y&lt;/P&gt;

&lt;P&gt;Server2&lt;BR /&gt;
Drives C;F;Y;Z&lt;/P&gt;

&lt;P&gt;Server3&lt;BR /&gt;
Drive B;C;F;Y;Z&lt;/P&gt;

&lt;P&gt;My query below gives me all the information I want except that it will not map the drivespace over time - hoping for some help.&lt;/P&gt;

&lt;P&gt;sourcetype="perfmon:logicaldisk"  |bucket _time span=10m&lt;BR /&gt;
 | chart avg(Value) over instance by host limit=0 | rename instance as drive&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2017 17:40:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312960#M93674</guid>
      <dc:creator>Seenon01</dc:creator>
      <dc:date>2017-07-13T17:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312961#M93675</link>
      <description>&lt;P&gt;You can try to switch from avg(Value) to min(Value) to minimum available disc space or last(Value) for final available disc space for each time span (10 min in your case)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="perfmon:logicaldisk"
| chart span=10m last(Value) over instance by host limit=0 
| rename instance as drive
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Jul 2017 06:48:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312961#M93675</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-07-14T06:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312962#M93676</link>
      <description>&lt;P&gt;So that just changes which values I am getting for the search -- It still refuses to show me that information spanned over time due to the fact there are 4 data inputs for the charts. _time, host, instance, and value - I want Host to be the header to the field, instance to be the lines, value to be one axis and time the other.. &lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 12:29:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312962#M93676</guid>
      <dc:creator>Seenon01</dc:creator>
      <dc:date>2017-07-14T12:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312963#M93677</link>
      <description>&lt;P&gt;Try &lt;CODE&gt;timechart&lt;/CODE&gt;.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="perfmon:logicaldisk" | rename instance as drive | timechart span=10m min(Value) by host,drive
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Jul 2017 12:47:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312963#M93677</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2017-07-14T12:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312964#M93678</link>
      <description>&lt;P&gt;when adding drive after host timechart will not plot - timechart will does not allow multi field values, even using xyseries I cannot feed in all the information needed.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 15:59:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312964#M93678</guid>
      <dc:creator>Seenon01</dc:creator>
      <dc:date>2017-07-14T15:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312965#M93679</link>
      <description>&lt;P&gt;Sorry about that.  Must have been too early in the morning.  How about &lt;CODE&gt;chart span=15m min(Value) over _time by host instance&lt;/CODE&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 16:38:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312965#M93679</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2017-07-14T16:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312966#M93680</link>
      <description>&lt;P&gt;Same issue - cannot add another value past host.. this is my whole issue &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 16:55:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312966#M93680</guid>
      <dc:creator>Seenon01</dc:creator>
      <dc:date>2017-07-14T16:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312967#M93681</link>
      <description>&lt;P&gt;So still working on this one - would this be the purpose of a pivot ? Do not have much experience with them and I am thinking I may need to set that up in order to show the information I need in a logical way. &lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2017 13:16:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312967#M93681</guid>
      <dc:creator>Seenon01</dc:creator>
      <dc:date>2017-07-18T13:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Space Free over time - Multiple instances, multiple server hosts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312968#M93682</link>
      <description>&lt;P&gt;I have pretty much solved my issue - unless someone can figure out a way to get this to be a bit more smooth - This basically seperates host/drive by its own field - not optimal but it will work for the time being.&lt;/P&gt;

&lt;P&gt;source="perfmon:logicaldisk"  OR source="perfmon:sqlserverhost:logicaldisk" AND counter = "Free Megabytes" |bucket _time span=1d | eval HostDrive = host . ":"  . instance |chart last(Value) over _time by HostDrive where count in top100&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2017 17:19:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Disk-Space-Free-over-time-Multiple-instances-multiple-server/m-p/312968#M93682</guid>
      <dc:creator>Seenon01</dc:creator>
      <dc:date>2017-07-18T17:19:26Z</dc:date>
    </item>
  </channel>
</rss>

