diff --git a/src/Appwrite/Platform/Workers/Usage.php b/src/Appwrite/Platform/Workers/Usage.php index 49362485fb..54905ba0d0 100644 --- a/src/Appwrite/Platform/Workers/Usage.php +++ b/src/Appwrite/Platform/Workers/Usage.php @@ -226,13 +226,6 @@ class Usage extends Action ]; } - if (!empty($buildsGBHours['value'])) { - $metrics[] = [ - 'key' => METRIC_BUILDS_MB_SECONDS, - 'value' => ($buildsGBHours['value'] * -1), - ]; - } - if (!empty($executions['value'])) { $metrics[] = [ 'key' => METRIC_EXECUTIONS, @@ -246,13 +239,6 @@ class Usage extends Action 'value' => ($executionsCompute['value'] * -1), ]; } - - if (!empty($executionsGBHours['value'])) { - $metrics[] = [ - 'key' => METRIC_EXECUTIONS_MB_SECONDS, - 'value' => ($executionsGBHours['value'] * -1), - ]; - } break; default: break;