<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Disk usage in System Info: show history]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">maybe this could be an easy modification: Can we show the "history" of disk usage under "System Info"?  This could be helpful identifying sudden increases e.g. in app or backup sizes...</p>
<p dir="auto">So instead of having one bar showing disk usage at the moment, you have several bars showing disk usage over days / weeks:<br />
<img src="/assets/uploads/files/1638778844506-0cfe5c33-b307-423b-8700-314deb7acaec-image.png" alt="0cfe5c33-b307-423b-8700-314deb7acaec-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.cloudron.io/topic/6128/disk-usage-in-system-info-show-history</link><generator>RSS for Node</generator><lastBuildDate>Mon, 17 Aug 2026 17:51:32 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/6128.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 06 Dec 2021 08:22:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Disk usage in System Info: show history on Thu, 09 Dec 2021 10:19:04 GMT]]></title><description><![CDATA[<p dir="auto">Work-around for the time being: Show disk usage for the last 7 days via SSH login</p>
<p dir="auto"><code>nano diskusage.sh</code> (note, I have two local disks that need monitoring; the command below adds date and data for both disks in one line)</p>
<pre><code>#!/bin/sh
echo $(date +%F &amp;&amp; df -h /dev/sda1 --output=source,fstype,size,used,avail,pcent | tail -n1 &amp;&amp; df -h /dev/sdc --output=source,fstype,size,used,avail,pcent | tail -n1)&gt;&gt; /home/USER/Disk.txt
</code></pre>
<p dir="auto"><code>cat Disk.txt</code></p>
<pre><code>2021-12-08 /dev/sda1 ext4 1,8T 1,1T 694G 61% /dev/sdc ext4 916G 444G 426G 52%
2021-12-09 /dev/sda1 ext4 1,8T 1,1T 694G 61% /dev/sdc ext4 916G 445G 426G 52%
</code></pre>
<p dir="auto"><code>crontab -e</code> add</p>
<pre><code>45 4 * * * sh /home/USER/diskusage.sh &gt;/dev/null 2&gt;&amp;1
</code></pre>
<p dir="auto"><code>nano ~/.bash.rc</code> add</p>
<pre><code>printf "\t\n" 
cat /home/kdj/Disk.txt | tail -7
</code></pre>
]]></description><link>https://forum.cloudron.io/post/40303</link><guid isPermaLink="true">https://forum.cloudron.io/post/40303</guid><dc:creator><![CDATA[necrevistonnezr]]></dc:creator><pubDate>Thu, 09 Dec 2021 10:19:04 GMT</pubDate></item><item><title><![CDATA[Reply to Disk usage in System Info: show history on Mon, 06 Dec 2021 17:05:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/necrevistonnezr" aria-label="Profile: necrevistonnezr">@<bdi>necrevistonnezr</bdi></a> said in <a href="/post/40170">Disk usage in System Info: show history</a>:</p>
<blockquote>
<p dir="auto">Can we show the "history" of disk usage under "System Info"?</p>
</blockquote>
<p dir="auto">Great and useful suggestion.</p>
]]></description><link>https://forum.cloudron.io/post/40195</link><guid isPermaLink="true">https://forum.cloudron.io/post/40195</guid><dc:creator><![CDATA[micmc]]></dc:creator><pubDate>Mon, 06 Dec 2021 17:05:00 GMT</pubDate></item><item><title><![CDATA[Reply to Disk usage in System Info: show history on Mon, 06 Dec 2021 12:57:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/necrevistonnezr" aria-label="Profile: necrevistonnezr">@<bdi>necrevistonnezr</bdi></a> I moved this to the feature request section. Currently we only have real-time data there, so that would require to either get the data we need into collectd and fetch it from there or keep a record on our own.</p>
]]></description><link>https://forum.cloudron.io/post/40184</link><guid isPermaLink="true">https://forum.cloudron.io/post/40184</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 06 Dec 2021 12:57:55 GMT</pubDate></item></channel></rss>