home
/
code
/
beam_stats.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Collect ETS per-table memory and size.
[beam_stats.git]
/
src
/
beam_stats_ets.erl
1
-module(beam_stats_ets).
2
3
-export_type(
4
[ t/0
5
]).
6
7
-export(
8
[ collect/0
9
]).
10
11
-type t() ::
12
[beam_stats_ets_table:t()].
13
14
-spec collect() ->
15
t().
16
collect() ->
17
lists:map(fun beam_stats_ets_table:of_id/1, ets:all()).
This page took
0.073549 seconds
and
5
git commands to generate.