logstash-input-azureblob 0.9.6 → 0.9.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/logstash/inputs/azureblob.rb +1 -1
- data/logstash-input-azureblob.gemspec +3 -3
- metadata +15 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdf42bfd9738cdc286425cd943c5953cc496c23d
|
4
|
+
data.tar.gz: 2a71a8791f65b51dbf7293ac4885c2006043128a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c819309d516003a9efbe45c9760a350be800f62d9331ab69fc4d22b9fe0c57062016d81120eb6409411432c4a1ceaeca474a56038ecde1560a7ae545fc7ac211
|
7
|
+
data.tar.gz: 107f91f5494a2465ef6eae5114c5b352043ddb0996d5be052ab76d0d51b314897266778f978efc4c07477a49ba75c0c2864459c11d3432e28307d30a55bbd081
|
@@ -36,8 +36,8 @@ class LogStash::Inputs::Azureblob < LogStash::Inputs::Base
|
|
36
36
|
|
37
37
|
def list_blob_names
|
38
38
|
blob_names = Set.new []
|
39
|
+
continuation_token = NIL
|
39
40
|
loop do
|
40
|
-
continuation_token = NIL
|
41
41
|
entries = @azure_blob.list_blobs(@container, { :timeout => 10, :marker => continuation_token})
|
42
42
|
entries.each do |entry|
|
43
43
|
blob_names << entry.name
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-input-azureblob'
|
3
|
-
s.version = '0.9.
|
3
|
+
s.version = '0.9.7'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = "This plugin collects Microsoft Azure Diagnostics data from Azure Storage Blobs."
|
6
6
|
s.description = "This gem is a Logstash plugin. It reads and parses data from Azure Storage Blobs."
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
|
19
19
|
|
20
20
|
# Gem dependencies
|
21
|
-
s.add_runtime_dependency 'logstash-core', '
|
21
|
+
s.add_runtime_dependency 'logstash-core-plugin-api', '>= 1.60', '<= 2.99'
|
22
22
|
s.add_runtime_dependency 'azure', '~> 0.7.1'
|
23
|
-
s.add_development_dependency 'logstash-devutils'
|
23
|
+
s.add_development_dependency 'logstash-devutils'
|
24
24
|
end
|
metadata
CHANGED
@@ -1,27 +1,33 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-azureblob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Microsoft Corporation
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: logstash-core
|
14
|
+
name: logstash-core-plugin-api
|
15
15
|
version_requirements: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.60'
|
20
|
+
- - "<="
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: '2.
|
22
|
+
version: '2.99'
|
20
23
|
requirement: !ruby/object:Gem::Requirement
|
21
24
|
requirements:
|
22
|
-
- - "
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '1.60'
|
28
|
+
- - "<="
|
23
29
|
- !ruby/object:Gem::Version
|
24
|
-
version: '2.
|
30
|
+
version: '2.99'
|
25
31
|
prerelease: false
|
26
32
|
type: :runtime
|
27
33
|
- !ruby/object:Gem::Dependency
|
@@ -44,12 +50,12 @@ dependencies:
|
|
44
50
|
requirements:
|
45
51
|
- - ">="
|
46
52
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0
|
53
|
+
version: '0'
|
48
54
|
requirement: !ruby/object:Gem::Requirement
|
49
55
|
requirements:
|
50
56
|
- - ">="
|
51
57
|
- !ruby/object:Gem::Version
|
52
|
-
version: 0
|
58
|
+
version: '0'
|
53
59
|
prerelease: false
|
54
60
|
type: :development
|
55
61
|
description: This gem is a Logstash plugin. It reads and parses data from Azure Storage Blobs.
|