summaryrefslogtreecommitdiff
path: root/guprecords.raku
diff options
context:
space:
mode:
Diffstat (limited to 'guprecords.raku')
-rw-r--r--guprecords.raku3
1 files changed, 2 insertions, 1 deletions
diff --git a/guprecords.raku b/guprecords.raku
index a9a90fc..fb38c60 100644
--- a/guprecords.raku
+++ b/guprecords.raku
@@ -231,7 +231,7 @@ multi MAIN(
multi MAIN(
Str :$stats-dir is required,
- Bool :$all, #= Generate all possible stats
+ Bool :$all, #= Generate all possible stats but Kernel
UInt :$limit = 20,
OutputFormat :$output-format = Plaintext,
) {
@@ -239,6 +239,7 @@ multi MAIN(
my %aggregates = Aggregator.new($stats-dir).aggregate;
for Category.^enum_value_list X Metric.^enum_value_list -> ($category, $metric) {
+ next if $category ~~ Kernel;
next if $category !~~ Host and $metric !~~ MetricSubset;
if $category ~~ Host {
print HostReporter.new(:%aggregates, :$metric, :$limit, :$output-format, :$header-indent).report