2017 © Pedro Peláez
 

library kronos

Kronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs

image

emoretti/kronos

Kronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs

  • Tuesday, March 27, 2018
  • by emoretticom
  • Repository
  • 0 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Kronos - calculate the execution time of a page and code blocks for PHP

Kronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs, (*1)

Installation

Install the latest version with, (*2)

$ composer require emoretti/kronos ^dev-master

Report Example

alt text, (*3)

Configuration

no configuration needed, (*4)

Basic Usage

Create an instance of Kronos() class in the start of your page, passing the page "alias" name and optionally the initial float timestamp (If not passed kronos calculate for you the timestamp).
At the end of page call the method setMainEnd() optionally passing the ending float timestamp (If not passed kronos calculate for you the timestamp).
Finally you can call the method getReport() to render under your page a final report, or call the method getReportRaw() to get the array with all the data.
The getReport() accept in input a dateFormat in PHP style,, (*5)

setMainEnd(microtime(true));


    $myKronos->getReport(); // OR $myKronos->getReportRaw();
?>

Use of checkpoints

After declare the instance of Kronos()

, (*6)

In the middle of your code (where you want), you can insert a checkpoint, which allows you to create other statistics.
To create a checkpoint use the methods startCheckPoints() and stopCheckPoints() passing the checkpoint alias (it will be the key of your checkpoint), and optionally the float timestamp (If not passed kronos calculate for you the timestamp).
, (*7)

startCheckPoints("FirstCheckPoint",microtime(true));

    usleep(mt_rand(500, 3000));

    $myKronos->stopCheckPoints("FirstCheckPoint",microtime(true));

    [... YOUR CODE ...]

    
    $myKronos->setMainEnd(microtime(true));


    $myKronos->getReport(); // OR $myKronos->getReportRaw();

?>

Kronos Results

Kronos results can be:, (*8)

  1. Rendered in bottom of the examined page, (*9)

        $myKronos->getReport();
    
  2. Returned in array structure (or json if you pass the first argument true), (*10)

        \\Array structure output
        $myKronos->getReportRaw();
        \\Json structure output
        $myKronos->getReportRaw(true);
    
  3. Saved in a file (the file will have a json inside), (*11)

        $myKronos->saveReportData(__DIR__ . "/report.json");
    



    If you save data for get the report later, you can render that use the static method Kronos::renderReport() passing $reportName and $reportData, (*12)

        use emoretti\kronos\Kronos;
        require_once("src/Kronos.php"); 
        Kronos::renderReport("TestReport", file_get_contents(__DIR__."/report.json"));
    

Kronos Render

Kronos will render the data through is template engine KronosTemplate(), by default the template is: src/template/KronosTemplate.php (it use Bootstrap.min.css) , you can modify it as you want ( Be careful not to change the variable names in the template), (*13)

You can specify your prefered date format for those methods:, (*14)

  1. getReport ( $dateFormat = "d/m/Y H:i:s:u" )
  2. getReportRaw ( $json= false , $dateFormat = "d/m/Y H:i:s:u" )
  3. renderReport( $name , $data , $dateFormat='d/m/Y H:i:s:u' )

Kronos time execution

Kronos will try automatically to determine his execution time, it will be presented automatically in the final report, may be usefull to determine how time it is used by the class itself.
N.B. Kronos attempts to calculate its execution time. But these times are to be considered as APPROXIMATE. Remember that : 0.001 ms == 1 µs (In 1 μs the light runs exactly 299.792458 meters)., (*15)

Author

Ettore Moretti - info@ettoremoretti.com - https://twitter.com/emoretticom - https://www.facebook.com/emoretticom/, (*16)

License

href-count is licensed under the MIT License - see the LICENSE file for details, (*17)

The Versions

27/03 2018

dev-master

9999999-dev

Kronos is a PHP library, which allows to calculate the execution time of a page and code blocks (called CheckPoint), with an accuracy up to 1 μs

  Sources   Download

MIT