cfallin commented on issue #4584:
Incidentally I'd love to know which tool/crate you're using to do the histogram -- I've done ad-hoc things (println
| sort -n | uniq -c
level of hackery) but if there's a stats/sampling framework somewhere we should be using I'd love to know about it!
fitzgen commented on issue #4584:
I wrote this tool a while back for command-line histograms: https://github.com/fitzgen/histo
fitzgen commented on issue #4584:
I just hack in
println!
s, pipe throughgrep
andcut
, and then pipe into that tool.
Last updated: Nov 22 2024 at 16:03 UTC