From: Siraaj Khandkar Date: Wed, 16 Sep 2015 21:58:26 +0000 (-0400) Subject: Remove default processes count totals. X-Git-Tag: 0.7.0^2~5 X-Git-Url: https://git.xandkar.net/?p=beam_stats.git;a=commitdiff_plain;h=5acc9b7d2c0966e92e539f9906ae9f0786ae3389 Remove default processes count totals. --- diff --git a/include/beam_stats_processes.hrl b/include/beam_stats_processes.hrl index 72cc30a..e646e67 100644 --- a/include/beam_stats_processes.hrl +++ b/include/beam_stats_processes.hrl @@ -1,11 +1,11 @@ -record(beam_stats_processes, - { individual_stats = [] :: [beam_stats_process:t()] - , count_all = 0 :: non_neg_integer() - , count_exiting = 0 :: non_neg_integer() - , count_garbage_collecting = 0 :: non_neg_integer() - , count_registered = 0 :: non_neg_integer() - , count_runnable = 0 :: non_neg_integer() - , count_running = 0 :: non_neg_integer() - , count_suspended = 0 :: non_neg_integer() - , count_waiting = 0 :: non_neg_integer() + { individual_stats :: [beam_stats_process:t()] + , count_all :: non_neg_integer() + , count_exiting :: non_neg_integer() + , count_garbage_collecting :: non_neg_integer() + , count_registered :: non_neg_integer() + , count_runnable :: non_neg_integer() + , count_running :: non_neg_integer() + , count_suspended :: non_neg_integer() + , count_waiting :: non_neg_integer() }).