Analysis in
<%= File.cwd!() %>
took
<%= @time_total %> ms (<%= @time_load %> ms to load, <%= @time_run %> ms running checks)
Please note that these are cumulative timings across all cores, therefore an individual file or check can account for more time than the overall time spent.
Check | File | Time (ms) | |
---|---|---|---|
Slowest Files | <%= for {filename, time} <- Enum.take(@file_timings, 5) do %><%= filename %> | <%= floor(time / 1000) %> | |
Slowest Checks | <%= for {check, time} <- Enum.take(@check_timings, 5) do %><%= check |> to_string() |> String.replace(~r/^Elixir./, "") %> | <%= floor(time / 1000) %> | |
Slowest Checks/Files | <%= for {{check, filename}, time} <- Enum.take(@check_file_timings, 5) do %><%= check |> to_string() |> String.replace(~r/^Elixir./, "") %> | <%= filename %> | <%= floor(time / 1000) %> |