nhpip / ezprofiler

A simple profiler escript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Provides a simple to use profiling mechanism to inspect the behavior of an application on a target VM. It utilizes Erlang's profiler tools, namely eprof, the default, fprof or cprof. Supports profiling of processes or the ability to decorate your code with, zero cost, analysis functions. For ease of use and to minimize impact on the application to be profiled ezprofiler runs as a stand-alone escript rather than an application in the same VM. That said, for code-profiling there is an option to manage ezprofiler via source code within your application for deployments where access to the VM may be limited (see below).

There is a separate dependency, ezprofiler_deps, that needs to be included in the deps function of your mix.exs for code profiling to work correctly:

  defp deps do
    [
      {:ezprofiler_deps, git: "https://github.com/nhpip/ezprofiler_deps.git"}
    ]
  end

It is also possible to include ezprofiler as a dependency too:

  defp deps do
    [
      {:ezprofiler, git: "https://github.com/nhpip/ezprofiler.git", app: false},
      {:ezprofiler_deps, git: "https://github.com/nhpip/ezprofiler_deps.git"}
    ]

Profiling

ezprofiler presents the user with two types of profiling, processes based and code based profiling, both controlled via a simple shell-type interface or, optionally, via code in the case of code profiling.

Process Profiling

Attach the profiler to specific processes, registered names or pg/pg2 groups. When profiling starts those processes will be traced. The selection of pg vs pg2 is based on the OTP release, see @pg_otp_version in lib/ezprofiler/term_helper.ex if you wish to change that behavior.

Code Profiling

The process option can be omitted. Instead the code can be decorated with profiling functions. In this case, to simplify the analysis, only a single (the first) process to invoke that code block will be profiled. This is useful in, for example, web-based applications where 1000's of processes maybe spawned and invoke the same code at the same time. The profiling functions incur near zero run-time cost (zero-cost when profiling is disabled), and are safe to use in prodution. Once profiling is started an insignificant run-time cost maybe incurred (the cost of a call to a GenServer).

Process Profiling

This is when you know the process that you want to profile, the process is specified as a pid, registered name or PG2 group. The process or processes are specified with the command line option --processes. This coupled with the --sos (set on spawn) option can profile a process and carry on the profiling on all processes that are spawned by the target process. Included is the option to specify :ranch in the --processes option. This makes tracing of the popular Ranch socket acceptor pool, and when specified with the --sos and --sol options will follow the spawned processes that are created on an inbound TCP accept requests.

The list of processes can be a simple process id, a registered name, pg/pg2 group or a list. THey must be enclosed in double quotes, for example:

--processes "<0.1278.0>"

--processes ":my_reg_name"

--processes "[:ranch, <0.777.0>, :my_reg_name, {:xyz, :server_a_pg2}]"

For example:

$ ./ezprofiler --node myapp@localhost --processes :my_reg_pid --sos --mf "_:_"

Options:

     's' to start profiling when 'waiting'
     'a' to get profiling results when 'profiling'
     'r' to abandon (reset) profiling and go back to 'waiting' state with initial value for 'u' set
     'c' to enable code profiling (once)
     'c' "label" to enable code profiling (once) for label (an atom, string or list of either), e.g. "c mylabel" || "c label1, label2"
         Select "c r" to use the last label(s)
     'l' "true | false" permits transition between labels if multiple labels are specified
     'u' "M:F" to update the module and function to trace (only with eprof)
     'v' to view last saved results file
     'g' for debugging, returns the state on the target VM
     'h' this help text
     'q' to exit
     
waiting..(1)>

Profiling has currently not started. The user selects 's' to commence profiling:

waiting..(1)> s
waiting..(2)>
profiling(2)>

The utility is now profiling as seen by the change in prompt, when ready to get the results select 'a' for analyze.

profiling(2)>
profiling(2)> a

****** Process <9272.3831.0>    -- 62.53 % of profiled time ***
FUNCTION                                                                                             CALLS        %  TIME  [uS / CALLS]
--------                                                                                             -----  -------  ----  [----------]
'Elixir.Ecto.Adapters.Postgres.Connection':query/4                                                       1     0.00     0  [      0.00]
'Elixir.DBConnection':'-transaction/3-fun-2-'/4                                                          1     0.00     0  [      0.00]
'Elixir.DBConnection':'-execute/4-fun-0-'/5                                                              1     0.00     0  [      0.00]
'Elixir.DBConnection':'-commit/3-fun-0-'/3                                                               1     0.00     0  [      0.00]
'Elixir.DBConnection':'-begin/3-fun-0-'/3                                                                1     0.00     0  [      0.00]
'Elixir.Inspect.Atom':color_key/1                                                                        1     0.00     0  [      0.00]
'Elixir.Ecto.Queryable.Ecto.Query':to_query/1                                                            1     0.00     0  [      0.00]
'Elixir.Ecto.Repo.Queryable':postprocessor/4                                                             1     0.00     0  [      0.00]
'Elixir.Proto.Notification.AuthResponse':new/0                                                           1     0.00     0  [      0.00]
cow_http_hd:token_ci_list/2                                                                              1     0.00     0  [      0.00]
'Elixir.Postgrex.DefaultTypes':decode_rows/4                                                             2     0.00     0  [      0.00]
'Elixir.Postgrex.DefaultTypes':'-encode_params/3-anonymous-2-'/2                                         1     0.00     0  [      0.00]
lists:keystore/4                                                                                         2     0.00     0  [      0.00]

...... SNIP ......
 
'Elixir.Enum':'-reduce/3-lists^foldl/2-0-'/3                             445     8.73   235  [      0.53]
erts_internal:port_control/3                                               3    17.69   476  [    158.67]
---------------------------------------------------------------------  -----  -------  ----  [----------]
Total:                                                                  3042  100.00%  2691  [      0.88]

waiting..(3)>
waiting..(3)> 

This can produce a lot of output since the --mf option was a wildcard. It's possible to focus in on a specific module and function and repeat. For example select the Erlang lists module.

waiting..(4)> u lists:_

Updated the module and function
waiting..(5)> s
waiting..(6)>
profiling(6)> a
profiling(7)>

****** Process <9272.3882.0>    -- 48.30 % of profiled time ***
FUNCTION           CALLS        %  TIME  [uS / CALLS]
--------           -----  -------  ----  [----------]
lists:prefix/2         7     0.09     2  [      0.29]
lists:keystore/4       2     0.09     2  [      1.00]
lists:foreach/2        6     0.13     3  [      0.50]
lists:keystore2/4      9     0.17     4  [      0.44]
lists:member/2         5     0.17     4  [      0.80]
lists:reverse/2       23     0.73    17  [      0.74]
lists:foldl/3         42     0.90    21  [      0.50]
lists:reverse/1      105     1.28    30  [      0.29]
lists:keymember/3      4     1.62    38  [      9.50]
lists:keyfind/3      133    94.83  2220  [     16.69]
-----------------  -----  -------  ----  [----------]
Total:               336  100.00%  2341  [      6.97]

If specified with the --directory option the results can be saved and the last set of results can be re-displayed by pressing 'v' (see below).

NOTE: If fprof is selected as the profiler the results will not be output to screen unless 'v' is selected.

Code Profiling

NOTE: Functions to be profiled should be public functions.

This permits the profiling of code dynamically. The user can decorate functions or blocks of code, and when ready the user can, from the escript, start profiling that function or block of code. The decorating is quite simple, the dependency ezprofiler_deps should be added to your application mix.exs file (see below). This contains the module (EZProfiler.CodeProfiler) that has stub functions that you can place throughout your code that have zero run-time cost. When the profiler connects to your application this code is hot-swapped out for a module with the same name, containing the same function names. These functions contain actual working code. The run-time cost is still minimal as only a single process will be monitored at a time, the only cost to other processes is a single gen:call to an Elixir Agent if a profiling function is called. Once ezprofiler terminates the original "stub" module is restored, once again ensuring zero run-time cost.

The application will attempt to only show functions, and functions that those functions call, that are part of your workflow. There will however be a couple of internal ezprofiler functions included too. These functions are at the end of the profiling run and will not impact your application. If you only wish to see the function been profiled, without ezprofiler and other called functions set the --cpfo option. Alternatively select the --mf option, especially if cprof is used as the profiler.

For example, this will profile anything between start_code_profiling/0 and stop_code_profiling/0

def foo() do
   x = function1()
   y = function2()
   EZProfiler.CodeProfiler.start_code_profiling()
   bar(x)
   baz(y)
   EZProfiler.CodeProfiler.stop_code_profiling()
end

This will just profile a specific function

def foo() do
   x = function1()
   y = function2()
   EZProfiler.CodeProfiler.function_profiling(&MyModule.bar/1, [x])
end

Or with a label / anonymous function:

def foo() do
   x = function1()
   y = function2()
   EZProfiler.CodeProfiler.function_profiling(&MyModule.bar/1, [x], :my_label)
end

def foo() do
   x = function1()
   y = function2()
   EZProfiler.CodeProfiler.function_profiling(&MyModule.bar/1, [x], fn -> if should_i_profile?(foo), do: :my_label, else: :nok end)
 end

Or in a pipelne:

def foo(data) do
   x = function1()
   data |> bar() |> EZProfiler.CodeProfiler.pipe_profiling(&MyModule.baz/1, [x]) |> function2()
end

A word about Labels

Labels are used to identify what code you want to profile, where each piece of code has its own label. For example a web-server may have something like:

EZProfiler.CodeProfiler.function_profiling(&ParseModule.parse_http/1, [http_string], "fred@shoes.com")

From within the CLI the user can then select:

waiting..(1)> c fred@shoes.com
waiting..(2)>
Code profiling enabled with label(s) of fred@shoes.com

Or from code:

EZProfiler.Manager.enable_code_profiling("fred@shoes.com")

In both those cases only a web request from fred@shoes.com will be selected for profling (using an anonymous function to select the label can make the code dynamic).

Labels can be atoms, strings or when selecting code to profile a list of labels

waiting..(3)> c fred@shoes.com, sue@shoes.com, :mgmt_utils
waiting..(4)>
Code profiling enabled with label(s) of fred@shoes.com, sue@shoes.com, :mgmt_utils
EZProfiler.Manager.enable_code_profiling([fred@shoes.com, sue@shoes.com, :mgmt_utils]) 

When using a list of labels there are two modes, label transition (labeltran) true or label transition false (the default). The behavior is as follows:

Label Transition false

This effectively a request to profile one-of those labels. The first matching label is selected for profiling and the rest of the labels are ignored.

Label Transition true

In this case all specified labels shall be profiled sequentially (order doesn't matter), effectively the profiler automatically re-enables profiling after a label match. A label that matches and is profiled, will removed from the list of labels to be profiled next and profiling is re-enabled for the remaining labels. This allows profiling to follow the flow of code through your application, even if processes are switched.

It is important to note that the rule of only one process at a time can be profiled still exists, so ideally profiled code calls should be sequential. However, if there are sections of code that need to be profiled that overlap in time ezprofiler performs pseudo profiling. This is where ezprofiler will calculate and display how long the profiled code took to execute.

Code profiling via the ezprofiler shell

Invoke ezprofiler as below (no need for a process) hitting c will start profiling in this case. To abandon hit r.

Code profiling still supports the --mf option (or u on the menu) to filter the results.

$ ./ezprofiler --node myapp@localhost

Options:

     's' to start profiling when 'waiting'
     'a' to get profiling results when 'profiling'
     'r' to abandon (reset) profiling and go back to 'waiting' state with initial value for 'u' set
     'c' to enable code profiling (once)
     'c' "label" to enable code profiling (once) for label (an atom, string or list of either), e.g. "c mylabel" || "c label1, label2"
         Select "c r" to use the last label(s)
     'l' "true | false" permits transition between labels if multiple labels are specified
     'u' "M:F" to update the module and function to trace (only with eprof)
     'v' to view last saved results file
     'g' for debugging, returns the state on the target VM
     'h' this help text
     'q' to exit
     
waiting..(1)> c
waiting..(2)>
Code profiling enabled

waiting..(2)>
Got a start profiling from source code with label of :no_label

waiting..(2)>
profiling(2)>
profiling(2)>

****** Process <9500.793.0>    -- 100.00 % of profiled time ***
FUNCTION                                                                                                   CALLS        %   TIME  [uS / CALLS]
--------                                                                                                   -----  -------   ----  [----------]
'Elixir.MyServer.CommitLog.Protocol.Encoder.Server.Types.UserInfo':encode/1                                 5     0.00      0  [      0.00]
'Elixir.MyServer.Subscriber.Notification':new/3                                                             1     0.00      0  [      0.00]
...SNIP...   

A label can be set as follows:

EZProfiler.CodeProfiler.start_code_profiling(:my_label)

case do_send_email(email, private_key) do
  :ok ->
     EZProfiler.CodeProfiler.stop_code_profiling()

Then:

waiting..(4)> c my_label
waiting..(5)>
Code profiling enabled with a label of :my_label

waiting..(5)>
Got a start profiling from source code with label of :my_label

Alternatively the label can be replaced with a lambda that should return a label (atom or string) if tracing is to be started, or the atom :nok if it isn't:

EZProfiler.CodeProfiler.start_code_profiling(fn -> if should_i_profile?(foo), do: :my_label, else: :nok end)

case do_send_email(email, private_key) do
  :ok ->
     EZProfiler.CodeProfiler.stop_code_profiling()

See below for additional examples.

Code profiling via source code

In certain deployments access to a shell, either the Elixir/Erlang shell or a bash shell may be restricted. Instead there is limited functionality to code-profile via your application source code. Please be aware that this still requires the ezprofiler escript, which is still started in the background. This may change in future releases, but adding a profiler as a separate application does add risk to any other applications on the VM.

Please see the EZProfiler.Manager module documentation for more information. There are 6 functions available for code profiling:

start_ezprofiler/0  # Starts the profiler with default configuration
start_ezprofiler/1  # Starts the profiler with custom configuration

stop_ezprofler/0    # Stops the profiler

enable_profiling/0  # Start profiling, same as `c` from the CLI
enable_profiling/1  # Start profiling with a label, same as `c label` from the CLI

wait_for_results/0  # Blocks, and waits for results (up to 5000 milliseconds)
wait_for_results/1  # Blocks, and waits for results for the time, in milliseconds

allow_label_transition/1 # Enables or disables label transition

wait_for_results_non_block/2  # As `wait_for_results` but is non-blocking. Instead a message is sent to `self()` or the specified pid

get_profiling_results/1 # Retrieves the results

Compiling and Mix

Execute mix compile or include ezprofiler in deps function of application mix.exs file along with ezprofiler_deps.

  defp deps do
    [
      {:ezprofiler, git: "https://github.com/nhpip/ezprofiler.git", app: false},
      {:ezprofiler_deps, git: "https://github.com/nhpip/ezprofiler_deps.git"}
    ]
  end

Usage

ezprofiler --help

ezprofiler:

 --node [node]: the Erlang VM you want tracing on (e.g. myapp@localhost)

 --cookie [cookie]: the VM cookie (optional)

 --processes [pid or reg_name]: the remote process pid (e.g. "<0.249.0>") or registered name you want to trace (other options ranch or pg/pg2 group)

 --sos: if present will apply tracing to any process spawned by the one defined in --process

 --mf [string]: a specification of module:fun of which module and functions to trace, with underscore _ as a wildcard.
              Example "Foo:bar" will trace calls to Foo:bar "Foo:_" will trace calls to all functions in module Foo (default is "_:_")

 --directory: where to store the results
 
 --maxtime: the maximum time we wait for profiling to complete in milliseconds (default 5000 milliseconds)
 
 --profiler: one of eprof, cprof or fprof, default eprof

 --sort: for eprof one of time, calls, mfa (default time), for fprof one of acc or own (default acc). Nothing for cprof
 
 --cpfo: when doing code profiling setting this will only profile the function and not any functions that the function calls
 
 --labeltran: permits transition between labels if multiple labels are specified
  
 --help: this page

Additional Code Profiling Examples

Code Block Profiling

     EZProfiler.CodeProfiler.start_code_profiling()
     profile_fun1()
     profile_fun2(1..10)
     EZProfiler.CodeProfiler.stop_code_profiling()
     
     EZProfiler.CodeProfiler.start_code_profiling(:my_label)
     profile_fun1()
     profile_fun2(1..10)
     EZProfiler.CodeProfiler.stop_code_profiling()
      
     EZProfiler.CodeProfiler.start_code_profiling(fn -> shall_we_profile?() end)
     profile_fun1()
     profile_fun2(1..10)
     EZProfiler.CodeProfiler.stop_code_profiling()

Function Profiling

     EZProfiler.CodeProfiler.function_profiling(&MyModule.profile_fun1/0)

     EZProfiler.CodeProfiler.function_profiling(&MyModule.profile_fun1/0, :my_label)

     EZProfiler.CodeProfiler.function_profiling(&MyModule.profile_fun1/0, fn -> shall_we_profile?() end)

     EZProfiler.CodeProfiler.function_profiling(&MyModule.profile_fun2/1, [1..10])

     EZProfiler.CodeProfiler.function_profiling(&MyModule.profile_fun2/1, [1..10], :my_label)
     
     EZProfiler.CodeProfiler.function_profiling(&MyModule.profile_fun2/1, [1..10], fn -> shall_we_profile?() end)

Pipe Profiling

     [1,2,3,4] |> EZProfiler.CodeProfiler.pipe_profiling(&MyModule.profile_fun2/1) |> Enum.sum()

     [1,2,3,4] |> EZProfiler.CodeProfiler.pipe_profiling(&MyModule.profile_fun2/1, :my_label) |> Enum.sum()
     
     [1,2,3,4] |> EZProfiler.CodeProfiler.pipe_profiling(&MyModule.profile_fun2/1, fn -> shall_we_profile?() end) |> Enum.sum()
     
     [1,2,3,4] |> EZProfiler.CodeProfiler.pipe_profiling(&MyModule.profile_fun3/2, [77]) |> Enum.sum()
     
     [1,2,3,4] |> EZProfiler.CodeProfiler.pipe_profiling(&MyModule.profile_fun3/2, [77], :my_label) |> Enum.sum()
                 
     [1,2,3,4] |> EZProfiler.CodeProfiler.pipe_profiling(&MyModule.profile_fun3/2, [77], fn -> shall_we_profile?() end) |> Enum.sum()  

About

A simple profiler escript

License:MIT License


Languages

Language:Elixir 100.0%