<?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 How do you calculate the total disk size in MB? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401586#M174432</link>
    <description>&lt;P&gt;hello,&lt;/P&gt;

&lt;P&gt;I use this query in order to calculate the remaining space in percent.&lt;/P&gt;

&lt;P&gt;I also need to calculate the disk size from this source type.&lt;/P&gt;

&lt;P&gt;How do I find the disk size from the counter Freespace and Free MB please?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=perfom sourcetype=perfmon:logicaldisk | where Value &amp;lt;15 
| dedup host 
| eval time = strftime(_time, "%m/%d/%Y %H:%M") | eval Value = round(Value, 1). " %" | rename Value as Free_Space 
| table time host Free_Space | sort -Free_Space limit=10
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 23 Nov 2018 07:06:04 GMT</pubDate>
    <dc:creator>jip31</dc:creator>
    <dc:date>2018-11-23T07:06:04Z</dc:date>
    <item>
      <title>How do you calculate the total disk size in MB?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401586#M174432</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;

&lt;P&gt;I use this query in order to calculate the remaining space in percent.&lt;/P&gt;

&lt;P&gt;I also need to calculate the disk size from this source type.&lt;/P&gt;

&lt;P&gt;How do I find the disk size from the counter Freespace and Free MB please?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=perfom sourcetype=perfmon:logicaldisk | where Value &amp;lt;15 
| dedup host 
| eval time = strftime(_time, "%m/%d/%Y %H:%M") | eval Value = round(Value, 1). " %" | rename Value as Free_Space 
| table time host Free_Space | sort -Free_Space limit=10
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Nov 2018 07:06:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401586#M174432</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2018-11-23T07:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate the total disk size in MB?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401587#M174433</link>
      <description>&lt;P&gt;You can do &lt;CODE&gt;eval Value= Value/1024/1024&lt;/CODE&gt;, that will be in MB, and one more Value/1024/1024/1024 will be GB.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=perfom sourcetype=perfmon:logicaldisk | where Value &amp;lt;15 
 | dedup host 
 | eval time = strftime(_time, "%m/%d/%Y %H:%M") 
 | eval Value= Value/1024/1024
 | eval Value = round(Value, 1). " %" 
 | rename Value as Free_Space 
 | table time host Free_Space | sort -Free_Space limit=10
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Nov 2018 08:36:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401587#M174433</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2018-11-23T08:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate the total disk size in MB?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401588#M174434</link>
      <description>&lt;P&gt;thanks but it's not what I want&lt;BR /&gt;
i want to know if its possible to find the size disk in MB from the fcounter free space and free mb&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 09:21:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401588#M174434</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2018-11-23T09:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do you calculate the total disk size in MB?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401589#M174435</link>
      <description>&lt;P&gt;i want to know if its possible to find the size disk in MB from the fcounter free space and free mb /// i am not sure how to do that. if you let us know the logic, then we can write the query.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 09:57:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-calculate-the-total-disk-size-in-MB/m-p/401589#M174435</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2018-11-23T09:57:37Z</dc:date>
    </item>
  </channel>
</rss>

