StraceLog
Parse logs generated by Strace (system call tracer) and obtain statistics.
Installation
Add this line to your application's Gemfile:
gem 'strace_log'
And then execute:
$ bundle
Or install it yourself as:
$ gem install strace_log
Usage
Run command with strace:
$ strace -ttt -T -o strace.log command
Print statistics of strace log:
$ strace-stat strace.log
Classes
- StraceLog::ParsedCall
- StraceLog::IOCounter
- StraceLog::Stat
Contributing
- Fork it ( https://github.com/[my-github-username]/strace_log/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request