function()
{
$currents = [];
foreach ($this->_measures as $key => $val){
$currents[$key] = \array_merge(
[
'current' => $this->hasStarted($key) ? $this->measure($key) : 0
], $val
);
}
return $currents;
}