Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Systeminformer | 8,639 | 2 days ago | 89 | mit | C | |||||
A free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware. Brought to you by Winsider Seminars & Solutions, Inc. @ http://www.windows-internals.com | ||||||||||
Stats.js | 8,118 | 738 | 236 | 12 days ago | 6 | October 29, 2016 | 19 | mit | JavaScript | |
JavaScript Performance Monitor | ||||||||||
Androidperformancemonitor | 6,494 | 41 | 1 | a year ago | 10 | August 31, 2016 | 49 | apache-2.0 | Java | |
A transparent ui-block detection library for Android. (known as BlockCanary) | ||||||||||
React Intersection Observer | 3,922 | 153 | 395 | 21 days ago | 135 | July 22, 2022 | mit | TypeScript | ||
React implementation of the Intersection Observer API to tell you when an element enters or leaves the viewport. | ||||||||||
Easy Monitor | 2,852 | 8 | 7 | 6 months ago | 63 | March 30, 2020 | 1 | bsd-2-clause | JavaScript | |
企业级 Node.js 应用性能监控与线上故障定位解决方案 | ||||||||||
Myperf4j | 2,696 | 2 months ago | 3 | bsd-3-clause | Java | |||||
High performance Java APM. Powered by ASM. Try it. Test it. If you feel its better, use it. | ||||||||||
Ios Monitor Platform | 2,489 | 4 years ago | 21 | mit | ||||||
:books: iOS 性能监控 SDK —— Wedjat(华狄特)开发过程的调研和整理 | ||||||||||
React Cool Inview | 1,418 | 3 | 23 days ago | 86 | April 17, 2022 | 20 | mit | TypeScript | ||
😎 🖥️ React hook to monitor an element enters or leaves the viewport (or another element). | ||||||||||
Query Monitor | 1,418 | 2 days ago | 91 | gpl-2.0 | PHP | |||||
The Developer Tools Panel for WordPress | ||||||||||
Httpreports | 1,154 | 20 | a year ago | 99 | September 26, 2021 | 2 | mit | C# | ||
HttpReports is an APM (application performance monitor) system for .Net Core. |
a php extension for monitor your code performance.
phpize
./configure
make && make install
//add the extension
extension="group_apm.so"
//default is 1;
group_apm.enabled = 1;
<?php
/*
* your code
* do something
*
*
*/
//get the monitor
$data = group_apm();
array (
't' => 0.0019829273223876953,
'cf' => 'Group\\App\\App::__construct=>/private/var/www/Group/vendor/group/group-framework/core/Group/App/App.php:78',
'id' => 29,
'pf_id' => 22,
)
It will record the func calltime > 1ms.
php example/group_res.php
php example/group_apm.php