logstash-input-azurewadtable 0.9.8 → 0.9.9
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/CHANGELOG.md +3 -0
- data/LICENSE +17 -17
- data/README.md +4 -0
- data/lib/logstash/inputs/azurewadtable.rb +2 -0
- data/logstash-input-azurewadtable.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1a247c141b52ee483519dee54974046c6e88dc0
|
|
4
|
+
data.tar.gz: 9b6375c87ab768b39891f626ad4875b2abadd7d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b4fd596fbd153b6cfb3beedf662b9f205514ae3417ccc56bb68f491baad3e2d6977c43896db3959e2adb3bf08b56dc705f25f53e3ed09fffbab7f439cf1ebff
|
|
7
|
+
data.tar.gz: 21a259d435e4d5ced92b9efb77d8fb76d0f49e54dd52b2a411998d8c73dc02f64ca24a365fea0a1c89d7e138b9f448192747c97abeec1d094e3ffffba8a051d0
|
data/CHANGELOG.md
CHANGED
data/LICENSE
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
Copyright (c) Microsoft. All rights reserved.
|
|
3
|
-
Microsoft would like to thank its contributors, a list
|
|
4
|
-
of whom are at http://aka.ms/entlib-contributors
|
|
5
|
-
|
|
6
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
7
|
-
may not use this file except in compliance with the License. You may
|
|
8
|
-
obtain a copy of the License at
|
|
9
|
-
|
|
10
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
|
|
12
|
-
Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
-
implied. See the License for the specific language governing permissions
|
|
16
|
-
and limitations under the License.
|
|
17
|
-
|
|
1
|
+
|
|
2
|
+
Copyright (c) Microsoft. All rights reserved.
|
|
3
|
+
Microsoft would like to thank its contributors, a list
|
|
4
|
+
of whom are at http://aka.ms/entlib-contributors
|
|
5
|
+
|
|
6
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
7
|
+
may not use this file except in compliance with the License. You may
|
|
8
|
+
obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
+
implied. See the License for the specific language governing permissions
|
|
16
|
+
and limitations under the License.
|
|
17
|
+
|
data/README.md
CHANGED
|
@@ -44,6 +44,10 @@ __*idle_delay_seconds*__
|
|
|
44
44
|
|
|
45
45
|
Specifies the seconds to wait between each processing loop. The default value is 15.
|
|
46
46
|
|
|
47
|
+
__*endpoint*__
|
|
48
|
+
|
|
49
|
+
Specifies the endpoint of Azure environment. The default value is "core.windows.net".
|
|
50
|
+
|
|
47
51
|
### Examples
|
|
48
52
|
```
|
|
49
53
|
input
|
|
@@ -17,6 +17,7 @@ class LogStash::Inputs::AzureWADTable < LogStash::Inputs::Base
|
|
|
17
17
|
config :collection_start_time_utc, :validate => :string, :default => Time.now.utc.iso8601
|
|
18
18
|
config :etw_pretty_print, :validate => :boolean, :default => false
|
|
19
19
|
config :idle_delay_seconds, :validate => :number, :default => 15
|
|
20
|
+
config :endpoint, :validate => :string, :default => "core.windows.net"
|
|
20
21
|
|
|
21
22
|
TICKS_SINCE_EPOCH = Time.utc(0001, 01, 01).to_i * 10000000
|
|
22
23
|
|
|
@@ -29,6 +30,7 @@ class LogStash::Inputs::AzureWADTable < LogStash::Inputs::Base
|
|
|
29
30
|
Azure.configure do |config|
|
|
30
31
|
config.storage_account_name = @account_name
|
|
31
32
|
config.storage_access_key = @access_key
|
|
33
|
+
config.storage_table_host = "https://#{@account_name}.table.#{@endpoint}"
|
|
32
34
|
end
|
|
33
35
|
@azure_table_service = Azure::Table::TableService.new
|
|
34
36
|
@last_timestamp = @collection_start_time_utc
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-input-azurewadtable'
|
|
3
|
-
s.version = '0.9.
|
|
3
|
+
s.version = '0.9.9'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "This plugin collects Microsoft Azure Diagnostics data from Azure Storage Tables."
|
|
6
6
|
s.description = "This gem is a Logstash plugin. It reads and parses diagnostics data from Azure Storage Tables."
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-azurewadtable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft Corporation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|