-
-
Notifications
You must be signed in to change notification settings - Fork 435
Closed
Labels
Description
Due to an error in step calculation, some aggregated graphs get a part of them clipped. Fix is very simple (patch included).
--- rrd.php.OLD 2019-07-27 13:46:43.387895819 +0200
+++ rrd.php 2019-07-27 13:47:04.100010947 +0200
@@ -2458,7 +2458,7 @@
if (cacti_sizeof($data_source_info)) {
foreach($data_source_info as $resolution) {
if ($graph_start > ($time - ($resolution['step'] * $resolution['steps'] * $resolution['rows']))) {
- if ($type = 'res') {
+ if ($type == 'res') {
return $resolution['step'] * $resolution['steps'];
} else {
return $resolution['step'];Reactions are currently unavailable