bilbofox / timer-panel
There is no license information available for the latest version (0.1) of this package.
Tracy debugger panel for measuring runtime
0.1
2025-02-22 15:07 UTC
Requires
- php: >=7.1
- tracy/tracy: ^2.6.0
This package is not auto-updated.
Last update: 2025-03-22 15:55:28 UTC
README
Tracy debugger panel for measuring runtime of code snippets
Quickstart
Registering panel into Tracy bar can be done simply by calling prepared static method:
// Register panel to global Tracy instance... $tracyPanel = Bilbofox\TimerPanel\TimerPanel::register(); // ...
// ... // Retrieve instance of panel back $tracyPanel = Bilbofox\TimerPanel\TimerPanel::instance(); // ... $tracyPanel->start(); // heavy lifting... $tracyPanel->stop();
Timer panel instance has methods for public usage - starting / stopping timerc etc. Each such method also has global function shortcut:
method | shortcut | description |
---|---|---|
TimerPanel::start() |
startTimer() |
Starts timer in default mode |
TimerPanel::startSum() |
startTimerSum() |
Starts timer in sum mode |
TimerPanel::startStack() |
startTimerStack() |
|
TimerPanel::getLastStarted() |
getLastStartedTimer() |
|
TimerPanel::stop() |
stopTimer() |
|
TimerPanel::stopAll() |
stopAllTimers() |
For the purpose of examples in next sections - global shortcuts will be used.
Basic usage
startTimer();
stopTimer();
For basic usage we simply call
Modes
modes TODO...