forked from chrisa/ruby-dtrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
100 lines (69 loc) · 2.81 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Ruby-DTrace is Ruby bindings for Dtrace, which allows you to add
DTrace probes to your Ruby programs, and to write D-based programs
with Ruby.
== FEEDBACK
Fork the repository on Github: http://github.com/chrisa/ruby-dtrace
Rubyforge mailing list: http://rubyforge.org/mailman/listinfo/ruby-dtrace-users
== FEATURES
Consumer:
* Access to the D API
* Probe metadata
* Run D programs
* Access aggregates
* Consume output from D programs
Probes:
* Create USDT providers from Ruby, at runtime.
* No code-generation or gcc/linker dependency
== SYNOPSIS
Consumer: see Dtrace
require 'Dtrace'
t = Dtrace.new
progtext = 'ruby$1:::function-entry{ @a[strjoin(strjoin(copyinstr(arg0),"."),copyinstr(arg1))] = count(); } END { printa(@a); }'
prog = t.compile progtext
prog.execute
t.go
[...]
c = DtraceConsumer.new(t)
c.consume_once do |rec|
# handle records
end
Probes: see Dtrace::Provider
require 'dtrace/provider'
Dtrace::Provider.create :rubyprog do |p|
p.probe :foo, :string, :string
p.probe :bar, :integer, :integer
end
Dtrace::Probe::Rubyprog.foo do |p|
p.fire('fired!', 'again')
end
Dtrace::Probe::Rubyprog.bar do |p|
p.fire(42, 27)
end
== REQUIREMENTS
* For the consumer API, platform with DTrace support (OpenSolaris, Mac
OS X 10.5 Leopard and 10.6 Snow Leopard tested, possibly also FreeBSD).
* For the probe API, a platform with DTrace support (as for the
consumer API), with a 32 bit or 64 bit Ruby build - i386/x86_64,
PowerPC (for OS X) and SPARC (for Solaris) are all supported.
* root, or some/all of the dtrace privileges on Solaris: dtrace_user,
dtrace_proc and dtrace_kernel.
== INSTALL
$ sudo gem install ruby-dtrace
== LICENSE
Copyright (c) 2008, 2009, 2011 Chris Andrews <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.