logs-cf-plugin 0.0.23.pre → 0.0.24.pre
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/README.md +1 -0
- data/lib/logs-cf-plugin/loggregator_client.rb +8 -2
- data/lib/logs-cf-plugin/plugin.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NDA3NzFjNjIxMDIwOTU1Mjg4NjI5MWM5NjYzMGUxMzBhZjU1MjY2OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YWE4NWY4MDVjYzNiYzkzMjIxOTI4YzI5OTY0NzBhYmJlZmQ3ZjJmZQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzdjMDVjYzQzMDZhZTgwOTg1MDQzODMyN2EyOTNkNWFmZjRjZGE3MzNjNzQ2
|
10
|
+
NDYxODVjZTI0ODQ3ZTZkMTQ0Nzg4M2IwNjU5MzQyYjBiMzJiMTViZjdlOGIw
|
11
|
+
NmZjMWI0YmJkMjI5ODYzYzM4ZmRkZDE4YTFiMzEyNTAyNzI1ZTU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDZiNjMxNDc4YmEzOGI1Y2Q4N2E1MTQ3ODk0MzdhYmQ3MzdhMDYwMTJlZjA3
|
14
|
+
NzY3YmNmNzNjMzRhYzY3NTY1OWFjYzFjZmI3ZjZiMzRiMWI2NmU1OGE3ODU1
|
15
|
+
MTZjOWU2MjE0MzM2OTJiMzA5N2FjYTAzZDdkZDcyNGFjZjBkY2I=
|
data/README.md
CHANGED
@@ -29,8 +29,12 @@ module LogsCfPlugin
|
|
29
29
|
end
|
30
30
|
|
31
31
|
ws.on :message do |event|
|
32
|
-
|
33
|
-
|
32
|
+
begin
|
33
|
+
received_message = LogMessage.decode(event.data.pack("C*"))
|
34
|
+
MessageWriter.write(output, received_message)
|
35
|
+
rescue Beefcake::Message::WrongTypeError, Beefcake::Message::RequiredFieldNotSetError, Beefcake::Message::InvalidValueError
|
36
|
+
output.puts("Error parsing data. Please ensure your gem is the latest version.")
|
37
|
+
end
|
34
38
|
end
|
35
39
|
|
36
40
|
ws.on :error do |event|
|
@@ -89,6 +93,8 @@ module LogsCfPlugin
|
|
89
93
|
end
|
90
94
|
|
91
95
|
messages
|
96
|
+
rescue Beefcake::Message::WrongTypeError, Beefcake::Message::RequiredFieldNotSetError, Beefcake::Message::InvalidValueError
|
97
|
+
output.puts("Error parsing data. Please ensure your gem is the latest version.")
|
92
98
|
end
|
93
99
|
|
94
100
|
private
|
@@ -16,6 +16,7 @@ module LogsCfPlugin
|
|
16
16
|
input :recent, :type => :boolean, :desc => "Dump recent logs instead of tailing", :default => false
|
17
17
|
|
18
18
|
def logs
|
19
|
+
client.current_organization.name # resolve org name so CC will validate AuthToken
|
19
20
|
guids = [client.current_organization.guid, client.current_space.guid, input[:app].try(:guid)]
|
20
21
|
|
21
22
|
log_target = LogTarget.new(input[:org], input[:space], guids)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logs-cf-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.24.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pivotal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-08-
|
11
|
+
date: 2013-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cf
|