wavefront-client 3.3.0 → 3.3.1
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 +8 -8
- data/bin/wavefront +12 -2
- data/lib/wavefront/cli/events.rb +6 -1
- data/lib/wavefront/client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzlmYWM4Y2YyZjljNjE0OTVmNjRlZmU5NDU5YTI1ZWY0MDM1YWUyOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NmZhNGMyYmZkYjY1NzgwZjI5OTYxMzI4YmVjYjYxNTBhMzEwNzg0MA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MmE0OTFjMGU3M2ZiOTFmNDFiNjBhOTZhYTNhZDZiM2JkYTEzZGJhNjkzMDdl
|
10
|
+
YzFmODUyMDRmNDVmMGFlYjMzMTgzODFhM2I5MTc3ZDMwYWEyYzgwOTBhZDA1
|
11
|
+
ODI3OTI3OGMzODIzZTYwNjMxMWY5Zjc5ZTM3OGQ5YTliMDRhZjg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MWFlN2NhZTc2YzNmMzY1MGFhOGI3YTY2NTM0NGJiZGY2NjQxMmUwNDBkNmMx
|
14
|
+
OGYwYzExOGFhZmQ0M2YzNmYzMDYyNTM5ZjI3Njc1NTIwMDA5NGFjYWY2MTM5
|
15
|
+
N2ExY2M4ZWRiOWRkZDI1YmJmMmJhMTAyNWFiMjMxY2UxMjBjMmQ=
|
data/bin/wavefront
CHANGED
@@ -16,6 +16,7 @@
|
|
16
16
|
|
17
17
|
require 'pathname'
|
18
18
|
require 'wavefront/client'
|
19
|
+
require 'wavefront/client/version'
|
19
20
|
require 'wavefront/cli'
|
20
21
|
require 'docopt'
|
21
22
|
require 'socket'
|
@@ -28,7 +29,16 @@ def sanitize_keys(hash)
|
|
28
29
|
end
|
29
30
|
|
30
31
|
ME = Pathname.new(__FILE__).basename
|
31
|
-
|
32
|
+
|
33
|
+
# If we are a normal user, look for wavefront config in our home
|
34
|
+
# directory; if not, look in /etc
|
35
|
+
#
|
36
|
+
DEF_CF = if ENV['HOME']
|
37
|
+
Pathname.new(ENV['HOME']) + '.wavefront'
|
38
|
+
else
|
39
|
+
Pathname.new('/etc/wavefront/client.conf')
|
40
|
+
end
|
41
|
+
|
32
42
|
|
33
43
|
# The global_opts are available in every command.
|
34
44
|
#
|
@@ -156,7 +166,7 @@ Use '#{ME} <command> --help' for further information.)
|
|
156
166
|
# help/option parser generation.
|
157
167
|
#
|
158
168
|
begin
|
159
|
-
opts = Docopt.docopt(usage[:default], version:
|
169
|
+
opts = Docopt.docopt(usage[:default], version: Wavefront::Client::VERSION)
|
160
170
|
rescue Docopt::Exit => e
|
161
171
|
cmd = ARGV.length > 0 ? ARGV.first.to_sym : nil
|
162
172
|
|
data/lib/wavefront/cli/events.rb
CHANGED
@@ -33,7 +33,12 @@ class Wavefront::Cli::Events < Wavefront::Cli
|
|
33
33
|
include Wavefront::Mixins
|
34
34
|
|
35
35
|
def run
|
36
|
-
|
36
|
+
begin
|
37
|
+
@state_dir = EVENT_STATE_DIR + Etc.getlogin
|
38
|
+
rescue
|
39
|
+
@state_dir = EVENT_STATE_DIR + 'notty'
|
40
|
+
end
|
41
|
+
|
37
42
|
@hostname = Socket.gethostname
|
38
43
|
@hosts = prep_hosts(options[:host])
|
39
44
|
@t_start = prep_time(:start)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wavefront-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.
|
4
|
+
version: 3.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Pointer
|
@@ -13,7 +13,7 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
|
-
date: 2016-08-
|
16
|
+
date: 2016-08-24 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: bundler
|