-
1. Re: VCSA 6.5 - /storage/log/vmware/perfcharts increases dramatically
parmarr Aug 18, 2017 5:56 AM (in response to Soph1)Hello,
Please see KB for assistance.
/storage/log directory is full in vCenter Server Appliance 6.0 (2143565) | VMware KB
-
2. Re: VCSA 6.5 - /storage/log/vmware/perfcharts increases dramatically
Soph1 Aug 22, 2017 2:13 AM (in response to parmarr)This KB doesn't really fix the problem. The problem is not the size of any logfile.
The problem is these .hprof files!
-
3. Re: VCSA 6.5 - /storage/log/vmware/perfcharts increases dramatically
petermie Sep 25, 2017 11:36 AM (in response to Soph1)I battled with VMware support for months on this same problem, we ended up giving up out of frustration and just disabling the perfcharts service and living with not having the charts available in the web client (that's all that service is for)
-
4. Re: VCSA 6.5 - /storage/log/vmware/perfcharts increases dramatically
Beata Sep 26, 2017 7:49 AM (in response to Soph1)What about this KB article:
Large Java dump files created in the location /storage/log/vmware/perfcharts (2151394) | VMware KB
Regards,
Beata
-
5. Re: VCSA 6.5 - /storage/log/vmware/perfcharts increases dramatically
Soph1 Sep 27, 2017 1:30 AM (in response to Beata)I already saw and implemented this KB article but the only thing that changed is that it takes longer to fill up now.
The problem itself still exists.
-
6. Re: VCSA 6.5 - /storage/log/vmware/perfcharts increases dramatically
Proffender Nov 8, 2017 2:17 AM (in response to Beata)Hi Beata,
This article isn't accessible any more, wich is very annoying, then I would be very happy for a solution - even when it's temporary so far...
Can you provide me the info in any other way?
Thx
Konrad
-
7. Re: VCSA 6.5 - /storage/log/vmware/perfcharts increases dramatically
virtualnobody Nov 8, 2017 11:56 PM (in response to Proffender)Another way could be to setup a cron job and simply remove all *.hprof files in /storage/log/vmware/perfcharts.
You may get "Permission denied" errors when executing a cronjob, here is a workaround: https://www.drewgreen.net/wordpress/2017/04/19/fix-for-cron-failing-on-vmware-vcenter-server-appliance-vcsa-6-5/
But unsure if it will persist any system upgrades, its a temporary workaround and works so far.
As root user
crontab -e
*/30 * * * * rm /storage/log/vmware/perfcharts/*.hprof >/dev/null 2>&1
Hope this helps.
Edit: Changed cronjob execution to minutes 0 and 30. Should be sufficient and doesn't pollute logfile so much.