<?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 usage from the monitoring console does NOT match the reality in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369881#M67110</link>
    <description>&lt;P&gt;yes. there is an issue.&lt;/P&gt;</description>
    <pubDate>Wed, 26 Sep 2018 06:07:21 GMT</pubDate>
    <dc:creator>thambisetty</dc:creator>
    <dc:date>2018-09-26T06:07:21Z</dc:date>
    <item>
      <title>disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369872#M67101</link>
      <description>&lt;P&gt;hi fellas&lt;/P&gt;

&lt;P&gt;I am experiencing an unexpected behavior when trying to monitor disk usage. Hopefully you can explain why this is happening&lt;/P&gt;

&lt;P&gt;In the built-in dashboard "Resource Usage: Instance" in the DMC I am checking the disk usage of my indexers and then I am comparing those figures with the output of the df command. &lt;/P&gt;

&lt;P&gt;This is what I get:&lt;/P&gt;

&lt;P&gt;In the DMC:&lt;BR /&gt;
host A       Disk Usage:    2768.56 / 8400.31   (GB)&lt;BR /&gt;
host B       Disk Usage:    3429.27 / 8400.31   (GB)&lt;/P&gt;

&lt;P&gt;While "df -h" gives me these:&lt;BR /&gt;
host A        Disk Usage:   2.7 T  /  8 T&lt;BR /&gt;
host B        Disk Usage:   2.6 T  / 6.4 T&lt;/P&gt;

&lt;P&gt;As you can see, the numbers especially for host B, do not match at all. &lt;/P&gt;

&lt;P&gt;any ideas about what must be happening???&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2017 14:13:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369872#M67101</guid>
      <dc:creator>asimagu</dc:creator>
      <dc:date>2017-05-09T14:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369873#M67102</link>
      <description>&lt;P&gt;up!    ^^^^^^&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 12:43:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369873#M67102</guid>
      <dc:creator>asimagu</dc:creator>
      <dc:date>2017-05-12T12:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369874#M67103</link>
      <description>&lt;P&gt;hello &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/130563"&gt;@asimagu&lt;/a&gt;,&lt;BR /&gt;
looks like host A is accurate.&lt;BR /&gt;
this is the search that powers the DMC dashboard:&lt;/P&gt;

&lt;P&gt;| rest splunk_server=* /services/server/status/partitions-space&lt;BR /&gt;
        | eval free = if(isnotnull(available), available, free)&lt;BR /&gt;
        | eval usage = round((capacity - free) / 1024, 2)&lt;BR /&gt;
        | eval capacity = round(capacity / 1024, 2)&lt;BR /&gt;
        | eval compare_usage = usage." / ".capacity&lt;BR /&gt;
        | eval pct_usage = round(usage / capacity * 100, 2)&lt;BR /&gt;
        | stats first(fs_type) as fs_type first(compare_usage) AS compare_usage first(pct_usage) as pct_usage by mount_point&lt;BR /&gt;&lt;BR /&gt;
        | rename mount_point as "Mount Point", fs_type as "File System Type", compare_usage as "Disk Usage (GB)", pct_usage as "Disk Usage (%)"&lt;/P&gt;

&lt;P&gt;can you verify the df -h command is executed in the right place on file system?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:03:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369874#M67103</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2020-09-29T14:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369875#M67104</link>
      <description>&lt;P&gt;hi @adonio &lt;BR /&gt;
thanks for your help. I always thought that it didn´t matter where the df command was run. &lt;BR /&gt;
it gives me the same result no matter where I am in the fylesystem....&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 13:03:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369875#M67104</guid>
      <dc:creator>asimagu</dc:creator>
      <dc:date>2017-05-12T13:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369876#M67105</link>
      <description>&lt;P&gt;looks like the issue was in where the df -h command was executed&lt;BR /&gt;
see comments above&lt;BR /&gt;
Splunk is accurate DMC is great!&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 13:07:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369876#M67105</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-05-12T13:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369877#M67106</link>
      <description>&lt;P&gt;hi @adonio, the nix app is giving me the same results as the df -h command. The DMC gives a different value&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 13:08:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369877#M67106</guid>
      <dc:creator>asimagu</dc:creator>
      <dc:date>2017-05-12T13:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369878#M67107</link>
      <description>&lt;P&gt;check the mount point&lt;BR /&gt;
what the nix app says on disk A? does it match the DMC?&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 13:18:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369878#M67107</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-05-12T13:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369879#M67108</link>
      <description>&lt;P&gt;the mount points match on both apps, the disk usage does not&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 13:32:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369879#M67108</guid>
      <dc:creator>asimagu</dc:creator>
      <dc:date>2017-05-12T13:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369880#M67109</link>
      <description>&lt;P&gt;I'm experiencing same issue;. &lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 01:03:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369880#M67109</guid>
      <dc:creator>nawazns5038</dc:creator>
      <dc:date>2018-09-13T01:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369881#M67110</link>
      <description>&lt;P&gt;yes. there is an issue.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 06:07:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/369881#M67110</guid>
      <dc:creator>thambisetty</dc:creator>
      <dc:date>2018-09-26T06:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: disk usage from the monitoring console does NOT match the reality</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/535113#M89753</link>
      <description>&lt;P&gt;So no conclusion on this subject?&lt;/P&gt;&lt;P&gt;I have seen this type of mismatch as well. Here is an example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;-bash-4.2$ df /data3
Filesystem                    1K-blocks        Used  Available Use% Mounted on
/dev/mapper/data3vg-data3lv 12882810880 11133090120 1749720760  87% /data3&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From Monitoring Console, Resource Usage:Machine&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mount Point File System Type Disk Usage (GB)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;/data3 xfs 9746.51 / 12286.01&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is over 1TB difference (around 10%). This filesystem only contains cold indexes. Nothing else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Monitoring Console page Resource Usage:Machine Disk Usage, uses REST&amp;nbsp;&lt;EM&gt;/services/server/status/partitions-space&lt;/EM&gt; and this sometimes give incorrect numbers.&lt;/P&gt;&lt;P&gt;The REST call used in Volume Details&amp;nbsp;&lt;EM&gt;/services/data/index-volumes&lt;/EM&gt; gives however correct figures.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 09:20:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/disk-usage-from-the-monitoring-console-does-NOT-match-the/m-p/535113#M89753</guid>
      <dc:creator>pellegrini</dc:creator>
      <dc:date>2021-01-19T09:20:24Z</dc:date>
    </item>
  </channel>
</rss>

