浏览 1.2k
ngx_google_perftools_profiler_module
A better tool for nginx with google_perftools.
This module is inspired by official ngx_google_perftools_module
.
At first you must install gperftools library, For example:
sudo apt-get install google-perftools
sudo apt-get install libgoogle-perftools-dev
Then configure nginx, add this module:
./configure --add-module=path/to/ngx_google_perftools_profiler_module
make && make install
In nginx.conf
:
# profiler => cpu|heap|all
# name => file that keeps profiling information
# interval => time interval for dump heap profiling information, in seconds
google_perftools profiler=all name=ngx_prof interval=1s;
Profiles will be stored as /path/to/file.
.
Then you can use pprof
to visualize results, for example:
pprof --svg /usr/local/nginx/sbin/nginx ./ngx_prof.4342 >a.svg
pprof --svg /usr/local/nginx/sbin/nginx ./ngx_prof.4342.0007.heap >b.svg
The svg samples can find in svg directory.
You can use the Lua API binding lua-resty-gperftools
for more flexible control.
按点赞数排序
按时间排序