Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/udzura/mruby-bcc

mruby Binding of BPF-Based Linux Tracing: see https://github.com/iovisor/bcc
https://github.com/udzura/mruby-bcc

bcc bpf kernel libbcc mruby tracing

Last synced: 1 day ago
JSON representation

mruby Binding of BPF-Based Linux Tracing: see https://github.com/iovisor/bcc

Awesome Lists containing this project

README

        

# mruby-bcc [![Build Status](https://travis-ci.org/udzura/mruby-bcc.svg?branch=master)](https://travis-ci.org/udzura/mruby-bcc)

mruby Binding of BPF-Based Linux Tracing: see https://github.com/iovisor/bcc

## Install as a mrbgems

Add conf.gem line to `build_config.rb`

```ruby
MRuby::Build.new do |conf|

# ... (snip) ...

conf.gem github: 'udzura/mruby-bcc'
end
```

## example

```ruby
# TODO: Make this code work:
# a clone of https://github.com/iovisor/bcc/blob/master/examples/hello_world.py
bpf = BCC::BPF.new(
text: 'int kprobe__sys_clone(void *ctx) { bpf_trace_printk("Hello, World!\\n"); return 0; }'
)
bpf.trace_print
```

## License

Apache License 2.0 (as BCC itself is): See LICENSE file