cirron 0.2.7 → 0.2.8
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.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/cirron.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '031948c5f88eb541e318a992ec6c99d534f703a2e372082c6b07ed2b4e7783f2'
|
4
|
+
data.tar.gz: 79ad0542a7e65819008b65e053250d073b5c87a8f4923c1ae8a64fdd2f15cf10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0a263836ee39db7e6723aeb78a71da0d4bdc6536d9a79463a2dd312c3fa0ff3737f233d7c4e8b9a2c26957678565e4eebc400e827f206088c5c87d28e7ba1f4
|
7
|
+
data.tar.gz: d081b2b307ed89ddf06735be9c547383ea42de2129a365d910f72b19b298373a4cb94ad011cee20e7d5db793436067d0a9e1cdc42947c00e380455f598444e69
|
data/README.md
CHANGED
data/cirron.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cirron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Stuchlik
|
@@ -13,8 +13,8 @@ dependencies: []
|
|
13
13
|
description: "= Cirron\n\nCirron measures a piece of Ruby code and reports back several
|
14
14
|
performance counters: \nCPU instruction count, branch misses, page faults and time
|
15
15
|
spent measuring. \nIt uses the Linux perf events interface or @ibireme's KPC demo[https://gist.github.com/ibireme/173517c208c7dc333ba962c1f0d67d12]
|
16
|
-
on OSX.\n\nIt can also trace syscalls using +strace+, Linux only!\n\n== Prerequisites\n\n
|
17
|
-
Linux with perf events support / Apple ARM OSX\n
|
16
|
+
on OSX.\n\nIt can also trace syscalls using +strace+, Linux only!\n\n== Prerequisites\n\n-
|
17
|
+
Linux with perf events support / Apple ARM OSX\n- C++\n- Ruby 3.x\n\n== Usage\n\n===
|
18
18
|
Performance Counters\n $ sudo irb\n irb> require 'cirron'\n\n # Start collecting
|
19
19
|
performance metrics\n irb> counters = Cirron::collector do\n irb> # Your code
|
20
20
|
here\n irb> puts \"Hello\"\n irb> end\n => Counter(time_enabled_ns: 0, instruction_count:
|