<?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 to show Disk Space in Pie Chart in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138511#M8329</link>
    <description>&lt;P&gt;I have my own PC for which I have to show the used disk space value in Pie chart on splunk.. I have something query like this where I have 2 counters. One is "Free Megabytes"  and another is "% Free Space" but from where it takes the used disk space as from perfmon logs i am not able to locate used disk space value.&lt;/P&gt;

&lt;P&gt;index=sc-perfmon sourcetype="Perfmon*" counter="Free Megabytes" OR "% Free Space" | stats count by counter&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
    <pubDate>Mon, 08 Jun 2015 08:21:07 GMT</pubDate>
    <dc:creator>sunnyparmar</dc:creator>
    <dc:date>2015-06-08T08:21:07Z</dc:date>
    <item>
      <title>How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138511#M8329</link>
      <description>&lt;P&gt;I have my own PC for which I have to show the used disk space value in Pie chart on splunk.. I have something query like this where I have 2 counters. One is "Free Megabytes"  and another is "% Free Space" but from where it takes the used disk space as from perfmon logs i am not able to locate used disk space value.&lt;/P&gt;

&lt;P&gt;index=sc-perfmon sourcetype="Perfmon*" counter="Free Megabytes" OR "% Free Space" | stats count by counter&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 08:21:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138511#M8329</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-08T08:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138512#M8330</link>
      <description>&lt;P&gt;Hello! Your  counter field does not include Free Space values. You must specify  &lt;CODE&gt;counter="% Free Space"&lt;/CODE&gt; in your search criteria.&lt;BR /&gt;
Here  you go!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=sc-perfmon sourcetype="Perfmon*" (counter="Free Megabytes" OR counter="% Free Space" )| stats count by counter
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 09:22:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138512#M8330</guid>
      <dc:creator>stephanefotso</dc:creator>
      <dc:date>2015-06-08T09:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138513#M8331</link>
      <description>&lt;P&gt;Hi Anik&lt;/P&gt;

&lt;P&gt;I was doing something like this:&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=test sourcetype=WinHostMon source=disk host=$field_server$ Name="D:" |  timechart eval(sum(TotalSpaceKB) / 1048576) as Total_Space, eval(sum(FreeSpaceKB) / 1048576) as Free_Space | eval consumed_space = Total_Space - Free_Space&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;This one just displays the D-Disk but it works fine as a Graph. With this I get one Color "Total_Space", one "Free_Space" and one "consumed_space".&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:08:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138513#M8331</guid>
      <dc:creator>lukas_loder</dc:creator>
      <dc:date>2020-09-28T20:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138514#M8332</link>
      <description>&lt;P&gt;Note. Please you have to know how to comment an answer. You was suppose to write your requirement above as a comment for my answer. Thanks&lt;/P&gt;

&lt;P&gt;Now lets turn back. &lt;/P&gt;

&lt;P&gt;I think you must evaluate  the &lt;STRONG&gt;used space values&lt;/STRONG&gt; or you can simply do somethink like this, if you just need &lt;STRONG&gt;used space values&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=sc-perfmon sourcetype="Perfmon*" NOT (counter="Free Megabytes" OR counter="% Free Space" )| stats count as "used spaces"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;with the evaluation, here you go:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=sc-perfmon sourcetype="Perfmon*"|eventstats count as total_space|stats count(eval(counter="Free Megabytes")) as free_megabit  count(eval(counter="% Free Space" )) as "free"|eval free_space=free_megabit +free| eval used_space=total_space - free_space|table total_space free_space used_space
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 09:56:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138514#M8332</guid>
      <dc:creator>stephanefotso</dc:creator>
      <dc:date>2015-06-08T09:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138515#M8333</link>
      <description>&lt;P&gt;Hi Lukas,&lt;/P&gt;

&lt;P&gt;Thanks for replying but My query is something like this but still it is not showing the result so could you please find out where I am doing wrong?&lt;/P&gt;

&lt;P&gt;index=sc-perfmon sourcetype="Perfmon*" source=Perfmon:FreeDiskSpace host=BWIN7136 Name="D:" | timechart eval(sum(TotalSpaceKB) / 1048576) as Total_Space, eval(sum(FreeSpaceKB) / 1048576) as Free_Space | eval consumed_space = Total_Space - Free_Space&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:08:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138515#M8333</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2020-09-28T20:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138516#M8334</link>
      <description>&lt;P&gt;thanks for the guidance but with the below given query my splunk is showing only (free space) parameter. Total space and used space it is showing blank..&lt;/P&gt;

&lt;P&gt;index=sc-perfmon sourcetype="Perfmon*"|eventstats count as total_space|stats count(eval(counter="Free Megabytes")) as free_megabit  count(eval(counter="% Free Space" )) as "free"|eval free_space=free_megabit +free| eval used_space=total_space - free_space|table total_space free_space used_space&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:08:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138516#M8334</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2020-09-28T20:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138517#M8335</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;

&lt;P&gt;however I able to run the query by editing some fields. I am updating the query below but still total space and free space columns showing nothing. Query is -&lt;/P&gt;

&lt;P&gt;index=sc-perfmon sourcetype="Perfmon* " source="Perfmon:FreeDiskSpace" "instance=c"  | timechart eval(sum(TotalSpaceKB) / 1048576) as Total_Space, eval(sum(FreeSpaceKB) / 1048576) as Free_Space | eval consumed_space = Total_Space - Free_Space&lt;/P&gt;

&lt;P&gt;Please tell where I am wrong??&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:09:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138517#M8335</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2020-09-28T20:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138518#M8336</link>
      <description>&lt;P&gt;update it like this and let me know again.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=sc-perfmon sourcetype="Perfmon*"|stats count as total_space count(eval(counter="Free Megabytes")) as free_megabit count(eval(counter="% Free Space" )) as "free"|eval free_space=free_megabit +free| eval used_space=total_space - free_space|table total_space free_space used_space
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jun 2015 11:19:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138518#M8336</guid>
      <dc:creator>stephanefotso</dc:creator>
      <dc:date>2015-06-08T11:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138519#M8337</link>
      <description>&lt;P&gt;Can you please send me an example of the value of your TotalSpaceKB and FreeSpaceKB?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 11:40:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138519#M8337</guid>
      <dc:creator>lukas_loder</dc:creator>
      <dc:date>2015-06-08T11:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138520#M8338</link>
      <description>&lt;P&gt;Hey.. now it is started showing the data on main screen but when I am going to click on (view events) under any parameter it didn't showing any data. &lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 11:59:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138520#M8338</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-08T11:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138521#M8339</link>
      <description>&lt;P&gt;Hey stephan,&lt;/P&gt;

&lt;P&gt;This is what when I am running query manually it is showing something like this.&lt;/P&gt;

&lt;P&gt;index=sc-perfmon "instance=c" source="Perfmon:FreeDiskSpace"&lt;/P&gt;

&lt;P&gt;06/08/2015 17:38:29.547 +0500&lt;BR /&gt;
collection=FreeDiskSpace&lt;BR /&gt;
object=LogicalDisk&lt;BR /&gt;
counter="% Free Space"&lt;BR /&gt;
instance=C:&lt;BR /&gt;
Value=21.293176691178626&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 12:11:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138521#M8339</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-08T12:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138522#M8340</link>
      <description>&lt;P&gt;you use this search &lt;CODE&gt;index=sc-perfmon sourcetype="Perfmon*" source=Perfmon:FreeDiskSpace host=BWIN7136 Name="D:" | timechart eval(sum(TotalSpaceKB) / 1048576) as Total_Space, eval(sum(FreeSpaceKB) / 1048576) as Free_Space | eval consumed_space = Total_Space - Free_Space&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;you use the fields "TotalSpaceKB" and "" FreeSpaceKB "in your Requette but I do not think these fields are in your data. exchange them with the corresponding fields in your data as they are part of the data of Mr lukas.loder&lt;/P&gt;

&lt;P&gt;try also like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=sc-perfmon sourcetype="Perfmon*"|timechart sum(eval(counter="Free Megabytes" OR counter="% Free Space")) as free_megabit  sum(eval(counter!="Free Megabytes" OR counter!="% Free Space")) as used_space
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jun 2015 12:49:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138522#M8340</guid>
      <dc:creator>fdi01</dc:creator>
      <dc:date>2015-06-08T12:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138523#M8341</link>
      <description>&lt;P&gt;Hey.. sorry for replying late.. when i am running the manual query that is given below it is showing the output like this.. here i have one more doubt that is do I need to mention some parameter for GB in inputs.conf file in order to show the value in GB's in splunk. My inputs.conf file conf. is given below&lt;/P&gt;

&lt;P&gt;[perfmon://FreeDiskSpace]&lt;BR /&gt;
counters = Free Megabytes;% Free Space&lt;BR /&gt;
instances = *&lt;BR /&gt;
interval = 10&lt;BR /&gt;
object = LogicalDisk&lt;BR /&gt;
useEnglishOnly=true&lt;BR /&gt;
disabled = 0&lt;BR /&gt;
index = sc-perfmon&lt;/P&gt;

&lt;P&gt;Query&lt;BR /&gt;
index=sc-perfmon "instance=c" source="Perfmon:FreeDiskSpace"&lt;BR /&gt;
Output&lt;BR /&gt;
06/08/2015 18:23:09.542 +0500&lt;BR /&gt;
collection=FreeDiskSpace&lt;BR /&gt;
object=LogicalDisk&lt;BR /&gt;
counter="% Free Space"&lt;BR /&gt;
instance=C:&lt;BR /&gt;
Value=21.288293830994441&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 12:55:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138523#M8341</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-08T12:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138524#M8342</link>
      <description>&lt;P&gt;Please let me know if you have a field called &lt;STRONG&gt;counter&lt;/STRONG&gt; showing at the field side bar when you just run the search &lt;CODE&gt;index=sc-perfmon "instance=c" source="Perfmon:FreeDiskSpace counter=*&lt;/CODE&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:07:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138524#M8342</guid>
      <dc:creator>stephanefotso</dc:creator>
      <dc:date>2015-06-08T13:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138525#M8343</link>
      <description>&lt;P&gt;Yes .. I have the counter field as shown below ..&lt;/P&gt;

&lt;P&gt;06/08/2015 18:23:09.542 +0500&lt;BR /&gt;
collection=FreeDiskSpace&lt;BR /&gt;
object=LogicalDisk&lt;BR /&gt;
counter="% Free Space"&lt;BR /&gt;
instance=C:&lt;BR /&gt;
Value=21.288293830994441&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:15:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138525#M8343</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-08T13:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138526#M8344</link>
      <description>&lt;P&gt;Hey fdi01,&lt;/P&gt;

&lt;P&gt;You solved my problem.. I am so dumb..didn't notice this thing.. Right now it started showing the data. Thanks a lot for your valuable input.&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:25:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138526#M8344</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2015-06-08T13:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138527#M8345</link>
      <description>&lt;P&gt;Do you want the UsedSpace in Percent? Cauce you see there just the value in percent. And you nowhere see it in GB. &lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:31:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138527#M8345</guid>
      <dc:creator>lukas_loder</dc:creator>
      <dc:date>2015-06-08T13:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138528#M8346</link>
      <description>&lt;P&gt;Please let me know again if  you have events with the search bellow:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    index=sc-perfmon sourcetype="Perfmon*" counter!="Free Megabytes"  counter!= "% Free Space"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jun 2015 13:38:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138528#M8346</guid>
      <dc:creator>stephanefotso</dc:creator>
      <dc:date>2015-06-08T13:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138529#M8347</link>
      <description>&lt;P&gt;Hey fdi,&lt;/P&gt;

&lt;P&gt;could you please tell me with this query how to show value in GB as right now it is showing in 4 or 5 digits value.&lt;/P&gt;

&lt;P&gt;index=sc-perfmon sourcetype="Perfmon*" "instance=c" OR "instance=d" | timechart sum(eval(counter="Free Megabytes" OR counter="% Free Space")) as free_megabit  sum(eval(counter!="Free Megabytes" OR counter!="% Free Space")) as used_space&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:09:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138529#M8347</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2020-09-28T20:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to show Disk Space in Pie Chart</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138530#M8348</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;

&lt;P&gt;I want to show the values in GB with this query as right now it is showing in 4 or 5 digits.&lt;/P&gt;

&lt;P&gt;index=sc-perfmon sourcetype="Perfmon*" "instance=c" OR "instance=d" | timechart sum(eval(counter="Free Megabytes" OR counter="% Free Space")) as free_megabit  sum(eval(counter!="Free Megabytes" OR counter!="% Free Space")) as used_space&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Ankit&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 20:09:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-show-Disk-Space-in-Pie-Chart/m-p/138530#M8348</guid>
      <dc:creator>sunnyparmar</dc:creator>
      <dc:date>2020-09-28T20:09:11Z</dc:date>
    </item>
  </channel>
</rss>

