+ [task#146025] add the count_of_delayed_execution_in_project metric.

This commit is contained in:
wangzemei
2025-07-01 13:19:09 +08:00
parent 9a0c945a66
commit bd868007bc
@@ -0,0 +1,15 @@
<?php
class count_of_delayed_execution_in_project extends baseCalc
{
public $dataset = '';
public $fieldList = array();
public $result = array();
public function getResult($options = array())
{
$records = $this->getRecords(array('project', 'value'));
return $this->filterByOptions($records, $options);
}
}