pprof 0.3.7 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/pprof +11 -1
  3. data/lib/pprof/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 58983ff576d6435e3abb280b9ade36c8267b7e88
4
- data.tar.gz: f3ef3a41b2809b6691564e73d026176bd4a3baf7
3
+ metadata.gz: f27fb93fa3f6b2794ed66eabf4be038e232d0192
4
+ data.tar.gz: 25beac9d4ab148a41aafc1cd8b60c5d1b2ba5757
5
5
  SHA512:
6
- metadata.gz: 8ded448ce8128c84e10afd821bba7acf8717b668759fa83e671393c4a4405a4c535591e2530fb0335770d33c2b7292d2fc7af53199e527788b109e31f9593f3c
7
- data.tar.gz: 3b1616d4067ce0b2192d62465e73ce525a2ba3f3e895d646cb5a4e558008d3b3e8957dc3f109ac8e404671f084f0f0a7c6b86418309af4abd859e3f9b4c60498
6
+ metadata.gz: 1a4fc27a6be7635dc0bdba078209b72e3ed27456643562680d825042acc6d1092e51070f92799180b9514edb3ab56756d316f627f19988fbe4a199280e96da55
7
+ data.tar.gz: 6002c3d500b08937570fcde43aa8e9d829cb63a4d15141c25d76c3943d6c85acee78ed4096e2ac119970d31e4c0b062655777eebefadf6560af5b3d63da134c3
data/bin/pprof CHANGED
@@ -27,7 +27,17 @@ parser = OptionParser.new do |opts|
27
27
  | pprof [print_options] (PATH|UUID)
28
28
  | pprof [list_options] [filters]
29
29
  |
30
- |Note: All filters expecting a string are interpreted as regular expressions if surrounded by slashes
30
+ |Notes:
31
+ | - All filters expecting a string are interpreted as regular expressions if surrounded by slashes
32
+ | e.g. `pprof --name /.*InHouse.*Distribution.*/
33
+ | - When using slashes to use a RegEx, you can also specify option flags.
34
+ | Especially, use `/InHouse/i` for case-insensitive search
35
+ | - Without slashes, the filter matches if the corresponding field _contains_ the searched string.
36
+ | e.g. `pprof --name InHouse` matches any profile whose name _contains_ "InHouse"
37
+ |
38
+ |Tips:
39
+ | - If you want to search for _exact_ match, you can use and anchored RegEx like `/^InHouse$/i`
40
+ | - To remove all expired certificates, you can use `#{opts.program_name} -e0 | xargs -0 rm`
31
41
  BANNER
32
42
 
33
43
  opts.separator ""
data/lib/pprof/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module PProf
2
2
  # Module version
3
- VERSION = '0.3.7'
3
+ VERSION = '0.3.8'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pprof
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olivier Halligon