stable

Clone or download

Read-only

SVN Disk usage collects only updated content

This is part of request #10045 Disk usage data are collected only for updated content Projects that have at least one repository updated since yesterday will recollect disk usage. Other project will duplicate their last value (no update so no need to recollect them). Change-Id: I806970e2c5afdfebada482cf4cd466dc1426abc9

Modified Files

Name
M plugins/statistics/bin/collectDiskUsage.php +8 −4 Go to diff View file
M plugins/statistics/include/ProjectQuotaManager.class.php +12 −3 Go to diff View file
M plugins/statistics/include/Statistics_DiskUsageManager.class.php +56 −33 Go to diff View file
M plugins/statistics/include/Statistics_Widget_ProjectStatistics.class.php +9 −1 Go to diff View file
M plugins/statistics/include/SystemEvent_STATISTICS_DAILY.php +10 −4 Go to diff View file
M plugins/statistics/include/statisticsPlugin.class.php +18 −2 Go to diff View file
M plugins/statistics/www/disk_usage.php +8 −1 Go to diff View file
M plugins/statistics/www/disk_usage_graph.php +8 −1 Go to diff View file
M plugins/statistics/www/project_cumulativeDiskUsage_graph.php +8 −1 Go to diff View file
M plugins/statistics/www/project_stat.php +9 −2 Go to diff View file
M plugins/statistics/www/project_stat_graph.php +9 −1 Go to diff View file
M plugins/statistics/www/services_usage.php +12 −3 Go to diff View file
M src/common/autoload.php +4 −2 Go to diff View file
A src/common/svn/DiskUsage/Collector.php +66 −0 Go to diff View file
A src/common/svn/DiskUsage/Retriever.php +45 −0 Go to diff View file
M src/common/svn/SVN_LogDao.class.php +13 −2 Go to diff View file