ruby-usdt 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +3 -1
- data/ext/libusdt/Makefile +1 -0
- data/lib/usdt/version.rb +1 -1
- metadata +39 -20
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# ruby-usdt
|
|
2
2
|
|
|
3
|
+
Native DTrace probes for ruby apps
|
|
4
|
+
|
|
3
5
|
Ruby bindings for [libusdt](https://github.com/chrisa/libusdt).
|
|
4
6
|
|
|
5
7
|
Applications, Libraries, and Frameworks can consume ruby-usdt to define USDT
|
|
@@ -32,7 +34,7 @@ providers at runtime for instrumentation and analysis by the DTrace
|
|
|
32
34
|
|
|
33
35
|
while true
|
|
34
36
|
if p.enabled
|
|
35
|
-
|
|
37
|
+
p.fire("omg", "probe!!", 12345)
|
|
36
38
|
end
|
|
37
39
|
sleep 0.5
|
|
38
40
|
end
|
data/ext/libusdt/Makefile
CHANGED
data/lib/usdt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,24 +1,33 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-usdt
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
6
11
|
platform: ruby
|
|
7
|
-
authors:
|
|
12
|
+
authors:
|
|
8
13
|
- Kevin Chan
|
|
9
14
|
autorequire:
|
|
10
15
|
bindir: bin
|
|
11
16
|
cert_chain: []
|
|
12
|
-
|
|
17
|
+
|
|
18
|
+
date: 2012-04-21 00:00:00 Z
|
|
13
19
|
dependencies: []
|
|
20
|
+
|
|
14
21
|
description:
|
|
15
|
-
email:
|
|
22
|
+
email:
|
|
16
23
|
- kevin@yinkei.com
|
|
17
24
|
executables: []
|
|
18
|
-
|
|
25
|
+
|
|
26
|
+
extensions:
|
|
19
27
|
- ext/usdt/extconf.rb
|
|
20
28
|
extra_rdoc_files: []
|
|
21
|
-
|
|
29
|
+
|
|
30
|
+
files:
|
|
22
31
|
- lib/usdt/version.rb
|
|
23
32
|
- lib/usdt.rb
|
|
24
33
|
- ext/libusdt/Makefile
|
|
@@ -45,27 +54,37 @@ files:
|
|
|
45
54
|
- LICENSE.md
|
|
46
55
|
homepage: http://github.com/kevinykchan/ruby-usdt
|
|
47
56
|
licenses: []
|
|
57
|
+
|
|
48
58
|
post_install_message:
|
|
49
59
|
rdoc_options: []
|
|
50
|
-
|
|
60
|
+
|
|
61
|
+
require_paths:
|
|
51
62
|
- lib
|
|
52
63
|
- ext
|
|
53
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
54
65
|
none: false
|
|
55
|
-
requirements:
|
|
56
|
-
- -
|
|
57
|
-
- !ruby/object:Gem::Version
|
|
58
|
-
|
|
59
|
-
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
hash: 3
|
|
70
|
+
segments:
|
|
71
|
+
- 0
|
|
72
|
+
version: "0"
|
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
74
|
none: false
|
|
61
|
-
requirements:
|
|
62
|
-
- -
|
|
63
|
-
- !ruby/object:Gem::Version
|
|
64
|
-
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
hash: 3
|
|
79
|
+
segments:
|
|
80
|
+
- 0
|
|
81
|
+
version: "0"
|
|
65
82
|
requirements: []
|
|
83
|
+
|
|
66
84
|
rubyforge_project:
|
|
67
85
|
rubygems_version: 1.8.21
|
|
68
86
|
signing_key:
|
|
69
87
|
specification_version: 3
|
|
70
|
-
summary:
|
|
88
|
+
summary: Native DTrace probes ruby apps
|
|
71
89
|
test_files: []
|
|
90
|
+
|