<?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 Why is Distributed Management Console (DMC) not displaying accurate DISK usage values? in Monitoring Splunk</title>
    <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456926#M3844</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I see that DMC is unable to give the right volume usage for a particular partition in the servers. It is showing the wrong partition value in every instance for that particular partition name.&lt;/P&gt;

&lt;P&gt;Is there any specific permission that needs to be checked or how can this be fixed ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   | rest splunk_server_group=dmc_group_* /services/server/status/partitions-space 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The above query results in false values than that of &lt;CODE&gt;df -h&lt;/CODE&gt; in the server &lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 13 Sep 2018 01:01:44 GMT</pubDate>
    <dc:creator>nawazns5038</dc:creator>
    <dc:date>2018-09-13T01:01:44Z</dc:date>
    <item>
      <title>Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456926#M3844</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I see that DMC is unable to give the right volume usage for a particular partition in the servers. It is showing the wrong partition value in every instance for that particular partition name.&lt;/P&gt;

&lt;P&gt;Is there any specific permission that needs to be checked or how can this be fixed ?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   | rest splunk_server_group=dmc_group_* /services/server/status/partitions-space 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The above query results in false values than that of &lt;CODE&gt;df -h&lt;/CODE&gt; in the server &lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 01:01:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456926#M3844</guid>
      <dc:creator>nawazns5038</dc:creator>
      <dc:date>2018-09-13T01:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456927#M3845</link>
      <description>&lt;P&gt;Hi @nawazns5038,&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| rest splunk_server_group=dmc_group_* /services/server/status/partitions-space&lt;/CODE&gt; provide values in MB, if you run &lt;CODE&gt;df -BM&lt;/CODE&gt; the values are similar. If you want to convert those values to GB then you can use below query.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest splunk_server_group=dmc_group_* /services/server/status/partitions-space | eval available=round(available/1024,2), capacity=round(capacity/1024,2), free=round(free/1024,2)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I hope this helps.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Harshil&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 09:02:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456927#M3845</guid>
      <dc:creator>harsmarvania57</dc:creator>
      <dc:date>2018-09-13T09:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456928#M3846</link>
      <description>&lt;P&gt;Hi @harsmarvania57 ,&lt;/P&gt;

&lt;P&gt;The DMC alert for the CRITICAL Disk usage uses the same query and calculation,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest splunk_server_group=dmc_group_* /services/server/status/partitions-space 
| eval free = if(isnotnull(available), available, free) 
| eval usage = capacity - free 
| eval pct_usage = floor(usage / capacity * 100) 
| where pct_usage &amp;gt; 80 
| stats first(fs_type) as fs_type first(capacity) AS capacity first(usage) AS usage first(pct_usage) AS pct_usage by splunk_server, mount_point 
| eval usage = round(usage / 1024, 2) 
| eval capacity = round(capacity / 1024, 2) 
| rename splunk_server AS Instance mount_point as "Mount Point", fs_type as "File System Type", usage as "Usage (GB)", capacity as "Capacity (GB)", pct_usage as "Usage (%)"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I see almost a terabyte of difference in the values and even if the backend space in the partition gets changed, the query isn't showing the updated values.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 19:27:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456928#M3846</guid>
      <dc:creator>nawazns5038</dc:creator>
      <dc:date>2018-09-13T19:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456929#M3847</link>
      <description>&lt;P&gt;Which version of splunk are you running so that I will try to replicate this issue.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 09:08:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456929#M3847</guid>
      <dc:creator>harsmarvania57</dc:creator>
      <dc:date>2018-09-14T09:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456930#M3848</link>
      <description>&lt;P&gt;version 6.5.3  &lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 21:43:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456930#M3848</guid>
      <dc:creator>nawazns5038</dc:creator>
      <dc:date>2018-09-14T21:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456931#M3849</link>
      <description>&lt;P&gt;facing same issue in 6.6.4 also.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 06:06:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456931#M3849</guid>
      <dc:creator>thambisetty</dc:creator>
      <dc:date>2018-09-26T06:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456932#M3850</link>
      <description>&lt;P&gt;Did you raise a support case ? &lt;BR /&gt;
They have suggested me to upgrade Splunk to 6.6+ &lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 00:17:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/456932#M3850</guid>
      <dc:creator>nawazns5038</dc:creator>
      <dc:date>2018-10-03T00:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/579960#M8752</link>
      <description>&lt;P&gt;Same issue in version 8.0.3 and&amp;nbsp;Red Hat Enterprise Linux Server release 7.9 (Maipo).&lt;/P&gt;&lt;P&gt;Looks like some customers have this issue but not all.&lt;/P&gt;&lt;P&gt;The free/available figures in the REST call are incorrect but the capacity is correct.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rest splunk_server=* /services/server/status/partitions-space&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 08:47:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/579960#M8752</guid>
      <dc:creator>pellegrini</dc:creator>
      <dc:date>2022-01-05T08:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Distributed Management Console (DMC) not displaying accurate DISK usage values?</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/612092#M9126</link>
      <description>&lt;P&gt;Facing the same problem in version 8.2.4, disk usage on the frontend is 92% and on the backend its 86%.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 12:08:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Why-is-Distributed-Management-Console-DMC-not-displaying/m-p/612092#M9126</guid>
      <dc:creator>splunkoptimus</dc:creator>
      <dc:date>2022-09-06T12:08:50Z</dc:date>
    </item>
  </channel>
</rss>

