AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   General (https://forums.alliedmods.net/forumdisplay.php?f=7)
-   -   amxmodx profiler (https://forums.alliedmods.net/showthread.php?t=67752)

sawce 03-01-2008 02:17

amxmodx profiler
 
2 Attachment(s)
This is a profiler built into amxmodx's core - it really is only useful to people trying to find bottlenecks in their plugins.

What is a profiler? It basically tells you how long your plugin spends executing stuff.

To install it, just replace the amxmodx_mm_i386.so or amxmodx_mm.dll files (remember to backup your old ones) with the provided binaries. You do not need to recompile any plugins or change any modules.

Then configure plugins to be profiled like you would to get plugins debugged.

There is a new cvar, "amx_profile", its configuration is identical to "amx_debug":
0 = no plugins will be profiled
1 = only specified plugins will be profiled (default)
2 = all plugins will be profiled

To specify a plugin for profiling (for amx_profile mode 1), open up plugins.ini, and after the plugin name, add "profile".

For example, "admin.amxx" would become "admin.amxx profile"

Note: You cannot profile a plugin in debug mode.


When a plugin is being profiled, there is a very slight overhead. It should be unnoticeable, and you should be able to profile plugins on a production environment.

At map change, all plugins that are being profiled will get their profile data appended to amxmodx/data/profiles/<pluginname.amxx>.txt

The profiler will read the time it takes to execute native calls, public function calls (from forwards), and function calls (direct public function / stock function calls).

Additionally, it provides two new natives (they are not available in amxmodx's official core) to allow you to profile special chunks of code yourself. Documentation for these is available in the "profiler.inc" file.

Source is available here

Any issues with this version post here, do not file a bug report for it.

Edit:
New version for 1.8.2 and bugs fixed is available here: https://forums.alliedmods.net/showpo...0&postcount=87

sawce 03-01-2008 02:20

Re: amxmodx profiler
 
Here's an example profile report from admincmd.amxx

Code:

date: Fri Feb 29 01:42:55 2008 map: de_dust
type |                            name |      calls | time / min / max
-------------------------------------------------------------------
  n |                  get_user_flags |        14 | 0.000010 / 0.000000 / 0.000005
  n |              is_dedicated_server |        14 | 0.000011 / 0.000000 / 0.000002
  n |                        read_argc |        14 | 0.000014 / 0.000000 / 0.000005
  n |                get_cvar_pointer |        16 | 0.000207 / 0.000001 / 0.000032
  n |                            equal |        14 | 0.000008 / 0.000000 / 0.000001
  n |                  register_plugin |          1 | 0.000027 / 0.000027 / 0.000027
  n |              register_dictionary |          3 | 0.044636 / 0.001157 / 0.037203
  n |                  register_concmd |        17 | 0.002244 / 0.000088 / 0.000327
  n |                  register_clcmd |          3 | 0.000119 / 0.000034 / 0.000046
  n |                      server_cmd |        14 | 0.000087 / 0.000001 / 0.000032
  n |                        read_argv |        28 | 0.000031 / 0.000000 / 0.000006
  n |                  get_pcvar_flags |        10 | 0.000002 / 0.000000 / 0.000001
  n |                  set_pcvar_flags |        10 | 0.000004 / 0.000000 / 0.000001
  p |                          cmdCvar |        14 | 0.000101 / 0.000001 / 0.000014
  p |                      plugin_cfg |          1 | 0.000020 / 0.000020 / 0.000020
  p |                      plugin_init |          1 | 0.000051 / 0.000051 / 0.000051
  f |                      cmd_access |        14 | 0.000062 / 0.000001 / 0.000015
50 natives, 21 public callbacks, 33 function calls were not executed.

Type "n" is native call, type "p" is public function call from a forward, and type "f" is direct function call.

Note that it doesn't add up recursive calls.

For example: If function a() calls function b(), for the duration that b() is executing, the profiler for function a() is not keeping track of time. As soon as b() stops executing, a() will continue tallying up time.

Exolent[jNr] 03-01-2008 02:41

Re: amxmodx profiler
 
neat!

pRED* 03-01-2008 04:11

Re: amxmodx profiler
 
sawce if I could steal that trophy of yours and re-award it to you - I would.

It's that amazing.

Arkshine 03-01-2008 04:29

Re: amxmodx profiler
 
Quote:

It's that amazing.

Xanimos 03-01-2008 04:47

Re: amxmodx profiler
 
Your karma status could not be more accurate.

BAILOPAN 03-01-2008 11:37

Re: amxmodx profiler
 
Irrefutable proof that there is nothing that sawce cannot do!

I need to steal this for SourceMod.

Styles 03-01-2008 20:18

Re: amxmodx profiler
 
wow this is awsome

hoboman 03-13-2008 01:08

Re: amxmodx profiler
 
would it be possible for you to make something that logs at which function ( or maybe even the certain portion of the function ) a certain plugin is when the server crashes or reboots

sawce 03-13-2008 01:49

Re: amxmodx profiler
 
use binlogging


All times are GMT -4. The time now is 01:58.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.