Changeset 929 for trunk/Modules/TimeMeasure
- Timestamp:
- May 11, 2022, 12:14:42 PM (3 years ago)
- Location:
- trunk/Modules/TimeMeasure
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/TimeMeasure/Graph.php
r912 r929 70 70 $Points = $Measure->GetValues($StartTime, $EndTime, $Level); 71 71 72 if ($Debug) echo('Points count: '.count($Points).'<br/>'); 73 //if ($Debug) foreach ($Points as $Index => $Item) 74 // echo($Index.': '.$Item['min'].'<br>'); 72 if ($Debug) echo('Points count: '.count($Points).'<br/>'); 75 73 76 74 // Calculate total max, avg, min value -
trunk/Modules/TimeMeasure/Main.php
r912 r929 58 58 59 59 $TimeParts = getdate($_SESSION[$Time]); 60 //print_r($TimeParts);61 60 62 61 // Day selection … … 253 252 $Output .= '</table>'; 254 253 $Output .= $PageList['Output']; 255 //echo(time()); 256 //print_r(gd_info()); 257 //print_r($_SESSION); 258 254 259 255 //ShowPage($Output); 260 256 //echo($PrefixMultiplier->Add('-0.000000071112345', 'B')); -
trunk/Modules/TimeMeasure/Measurement/System.php
r874 r929 17 17 } else 18 18 { 19 //echo($ERROR_NO.','.$ERROR_STR);20 19 return FALSE; 21 20 } … … 87 86 { 88 87 $NetworkStateFile = '/tmp/LastNetworkState'; 89 $LastNetworkState = unserializ a(file_get_contents($NetworkStateFile));88 $LastNetworkState = unserialize(file_get_contents($NetworkStateFile)); 90 89 $NetworkState = array('Time' => time()); 91 90 $Output = array();
Note:
See TracChangeset
for help on using the changeset viewer.