logstash-input-azurewadtable 0.9.4 → 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +0 -0
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +165 -91
- data/Rakefile +0 -0
- data/lib/logstash/inputs/azurewadtable.rb +132 -132
- data/logstash-input-azurewadtable.gemspec +13 -12
- data/spec/inputs/azurewadtable_spec.rb +0 -0
- data/ubuntu-wad-logstash-install.sh +63 -0
- metadata +16 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11030b7686e2ea197c324605d487c191a0d13c66
|
4
|
+
data.tar.gz: a30a26c16f3ae92cf6bf5d1cd540e37dba699c68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e98f1b55d90c5f6b61d113133bf5978b6b2d2c647a1edaf32d1528cc2901f29f11c07a3d6f075add39024a4554b5e497f81c87c0e7e972d1bdbed2dff066aba
|
7
|
+
data.tar.gz: 86e64e2fa89fd2d54b109bd799e6510688bb10dc262a703c5611433bbd1900f93a05616fc66dadaabaa53113835b2dd8de5a5b91d2df6bd79a86a8c554541475
|
data/CHANGELOG.md
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/LICENSE
CHANGED
File without changes
|
data/README.md
CHANGED
@@ -1,91 +1,165 @@
|
|
1
|
-
# Notice
|
2
|
-
This
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
```
|
57
|
-
|
58
|
-
```
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
```
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
For more
|
1
|
+
# Notice
|
2
|
+
This project has moved to a new repo [Azure Diagnostics Tools](https://github.com/Azure/azure-diagnostics-tools/tree/master/Logstash/logstash-input-azurewadtable)
|
3
|
+
|
4
|
+
Check there for updates.
|
5
|
+
|
6
|
+
This plugin is a part of [Microsoft Azure Diagnostics with ELK](https://github.com/mspnp/semantic-logging/tree/v3/ELK).
|
7
|
+
|
8
|
+
[See more documentation.](https://github.com/mspnp/semantic-logging/blob/v3/ELK/md/LogstashExtensions.md#azure-wad-table)
|
9
|
+
|
10
|
+
# Installing Logstash and this plugin on Ubuntu
|
11
|
+
|
12
|
+
You can run this script found in this repo.
|
13
|
+
```
|
14
|
+
./ubuntu-wad-logstash-install.sh
|
15
|
+
```
|
16
|
+
|
17
|
+
This is what the script will do at a high level.
|
18
|
+
0. Install some utilities
|
19
|
+
1. Install Java
|
20
|
+
2. Install Logstash
|
21
|
+
3. Install Plugin
|
22
|
+
|
23
|
+
# Setting up your Development Environment
|
24
|
+
This is how I set up my environment when I work on Logstash plugins. This is mostly so I don't forget how to do this in the future, but if you're interested have at it.
|
25
|
+
|
26
|
+
TL;DR:
|
27
|
+
1. Setup some sort of Linux environment you can use to test stuff with.
|
28
|
+
0. Install some utilities
|
29
|
+
1. Install Java
|
30
|
+
2. Install RVM
|
31
|
+
3. Install JRuby
|
32
|
+
4. Install Logstash
|
33
|
+
5. Clone the repo
|
34
|
+
|
35
|
+
First and foremost I do most of my development on a Windows PC. So tools like Vagrant are invaluable for prototyping
|
36
|
+
Linux environments. For OSX you can use Parallels and host an Ubuntu machine. (Also this will mostly be geared towards how to
|
37
|
+
set up a Windows machine for development since I'm not using a Mac for this stuff at the moment.)
|
38
|
+
|
39
|
+
## Unix environment on Windows
|
40
|
+
I personally get away with using Git Bash that gets installed when you install git-scm. Seems to work fine for me. You have to
|
41
|
+
run the prompt in admin mode when using Vagrant.
|
42
|
+
|
43
|
+
## Setting up Vagrant
|
44
|
+
Start off by installing vagrant using the normal installer. In Vagrant there are two things you need to know. There are things
|
45
|
+
called boxes which you can think of as os-images and then providers. You host a box on a provider essentially. Since I am on
|
46
|
+
Windows I prefer to use the hyperv provider. (Less things to install, I'm sure everything else will work fine as well)
|
47
|
+
|
48
|
+
If you want to go down the HyperV route, make sure to enable hyper-v on your machine. Both of these instructions involve a restart.
|
49
|
+
|
50
|
+
After you have restarted create a clean directory and navigate to it. Run this command
|
51
|
+
```
|
52
|
+
vagrant init hashicorp/precise64
|
53
|
+
```
|
54
|
+
|
55
|
+
This will create a Vagrantfile. For Windows 10 you will likely need to do some extra work to get shared folders to work.
|
56
|
+
```
|
57
|
+
config.vm.synced_folder ".", "/vagrant", type: "smb", smb_username: "<Local account name>", smb_password: "<Local account password>"
|
58
|
+
```
|
59
|
+
I recommend creating a new local account for the above config. Make sure to replace `<Local account name>` and `<Local account password>`. (Also don't forget
|
60
|
+
this account will need access to the folder you are doing your work in.
|
61
|
+
|
62
|
+
Once this is set up simply run:
|
63
|
+
```
|
64
|
+
vagrant up --provider hyperv
|
65
|
+
vagrant ssh
|
66
|
+
```
|
67
|
+
|
68
|
+
This will let you ssh into the machine. Navigate to /vagrant (`cd /vagrant`). This is the shared folder between the windows file system and the Ubuntu VM.
|
69
|
+
|
70
|
+
Clone the repo to this directory. You can do all your edits on the Windows side (if you so choose, remember that Windows has different line endings so you'll need to run dos2unix if you go this route).
|
71
|
+
Or if you want to do it ubuntu you can do as well. I like to keep things in this folder so that when I come back to this environment I know what I was working on without having to start the VM.
|
72
|
+
|
73
|
+
Once you have a VM, you'll need to install a bunch of dependencies to get going. I'll list them out (I will likely write a script for this as well):
|
74
|
+
|
75
|
+
Java, RVM (This is ruby env manager), Jruby (Install this through RVM), Logstash.
|
76
|
+
|
77
|
+
Below are more instructions on how to actually run a plugin locally, but this should be enough to get going.
|
78
|
+
|
79
|
+
# Logstash Plugin
|
80
|
+
`The following is default documentation when you create a new plugin. Left as notes.`
|
81
|
+
|
82
|
+
This is a plugin for [Logstash](https://github.com/elasticsearch/logstash).
|
83
|
+
|
84
|
+
It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
|
85
|
+
|
86
|
+
## Documentation
|
87
|
+
|
88
|
+
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elasticsearch.org/guide/en/logstash/current/).
|
89
|
+
|
90
|
+
- For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
|
91
|
+
- For more asciidoc formatting tips, see the excellent reference here https://github.com/elasticsearch/docs#asciidoc-guide
|
92
|
+
|
93
|
+
## Need Help?
|
94
|
+
|
95
|
+
Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
|
96
|
+
|
97
|
+
## Developing
|
98
|
+
|
99
|
+
### 1. Plugin Developement and Testing
|
100
|
+
|
101
|
+
#### Code
|
102
|
+
- To get started, you'll need JRuby with the Bundler gem installed.
|
103
|
+
|
104
|
+
- Create a new plugin or clone and existing from the GitHub [logstash-plugins](https://github.com/logstash-plugins) organization. We also provide [example plugins](https://github.com/logstash-plugins?query=example).
|
105
|
+
|
106
|
+
- Install dependencies
|
107
|
+
```sh
|
108
|
+
bundle install
|
109
|
+
```
|
110
|
+
|
111
|
+
#### Test
|
112
|
+
|
113
|
+
- Update your dependencies
|
114
|
+
|
115
|
+
```sh
|
116
|
+
bundle install
|
117
|
+
```
|
118
|
+
|
119
|
+
- Run tests
|
120
|
+
|
121
|
+
```sh
|
122
|
+
bundle exec rspec
|
123
|
+
```
|
124
|
+
|
125
|
+
### 2. Running your unpublished Plugin in Logstash
|
126
|
+
|
127
|
+
#### 2.1 Run in a local Logstash clone
|
128
|
+
|
129
|
+
- Edit Logstash `Gemfile` and add the local plugin path, for example:
|
130
|
+
```ruby
|
131
|
+
gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
|
132
|
+
```
|
133
|
+
- Install plugin
|
134
|
+
```sh
|
135
|
+
bin/plugin install --no-verify
|
136
|
+
```
|
137
|
+
- Run Logstash with your plugin
|
138
|
+
```sh
|
139
|
+
bin/logstash -e 'filter {awesome {}}'
|
140
|
+
```
|
141
|
+
At this point any modifications to the plugin code will be applied to this local Logstash setup. After modifying the plugin, simply rerun Logstash.
|
142
|
+
|
143
|
+
#### 2.2 Run in an installed Logstash
|
144
|
+
|
145
|
+
You can use the same **2.1** method to run your plugin in an installed Logstash by editing its `Gemfile` and pointing the `:path` to your local plugin development directory or you can build the gem and install it using:
|
146
|
+
|
147
|
+
- Build your plugin gem
|
148
|
+
```sh
|
149
|
+
gem build logstash-filter-awesome.gemspec
|
150
|
+
```
|
151
|
+
- Install the plugin from the Logstash home
|
152
|
+
```sh
|
153
|
+
bin/plugin install /your/local/plugin/logstash-filter-awesome.gem
|
154
|
+
```
|
155
|
+
- Start Logstash and proceed to test the plugin
|
156
|
+
|
157
|
+
## Contributing
|
158
|
+
|
159
|
+
All contributions are welcome: ideas, patches, documentation, bug reports, complaints, and even something you drew up on a napkin.
|
160
|
+
|
161
|
+
Programming is not a required skill. Whatever you've seen about open source and maintainers or community members saying "send patches or die" - you will not see that here.
|
162
|
+
|
163
|
+
It is more important to the community that you are able to contribute.
|
164
|
+
|
165
|
+
For more information about contributing, see the [CONTRIBUTING](https://github.com/elasticsearch/logstash/blob/master/CONTRIBUTING.md) file.
|
data/Rakefile
CHANGED
File without changes
|
@@ -1,132 +1,132 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
require "logstash/inputs/base"
|
3
|
-
require "logstash/namespace"
|
4
|
-
|
5
|
-
require "azure"
|
6
|
-
|
7
|
-
class LogStash::Inputs::AzureWADTable < LogStash::Inputs::Base
|
8
|
-
class Interrupted < StandardError; end
|
9
|
-
|
10
|
-
config_name "azurewadtable"
|
11
|
-
milestone 0
|
12
|
-
|
13
|
-
config :account_name, :validate => :string
|
14
|
-
config :access_key, :validate => :string
|
15
|
-
config :table_name, :validate => :string
|
16
|
-
config :entity_count_to_process, :validate => :string, :default => 100
|
17
|
-
config :collection_start_time_utc, :validate => :string, :default => Time.now.utc.iso8601
|
18
|
-
config :etw_pretty_print, :validate => :boolean, :default => false
|
19
|
-
config :idle_delay_seconds, :validate => :number, :default => 15
|
20
|
-
|
21
|
-
TICKS_SINCE_EPOCH = Time.utc(0001, 01, 01).to_i * 10000000
|
22
|
-
|
23
|
-
def initialize(*args)
|
24
|
-
super(*args)
|
25
|
-
end # initialize
|
26
|
-
|
27
|
-
public
|
28
|
-
def register
|
29
|
-
Azure.configure do |config|
|
30
|
-
config.storage_account_name = @account_name
|
31
|
-
config.storage_access_key = @access_key
|
32
|
-
end
|
33
|
-
@azure_table_service = Azure::Table::TableService.new
|
34
|
-
@last_timestamp = @collection_start_time_utc
|
35
|
-
@idle_delay = @idle_delay_seconds
|
36
|
-
@continuation_token = nil
|
37
|
-
end # register
|
38
|
-
|
39
|
-
public
|
40
|
-
def run(output_queue)
|
41
|
-
loop do
|
42
|
-
@logger.debug("Starting process method @" + Time.now.to_s);
|
43
|
-
process(output_queue)
|
44
|
-
@logger.debug("Starting delay of: " + @idle_delay_seconds.to_s + " seconds @" + Time.now.to_s);
|
45
|
-
sleep @idle_delay
|
46
|
-
end # loop
|
47
|
-
end # run
|
48
|
-
|
49
|
-
public
|
50
|
-
def teardown
|
51
|
-
end
|
52
|
-
|
53
|
-
def process(output_queue)
|
54
|
-
@logger.debug(@last_timestamp)
|
55
|
-
# query data using start_from_time
|
56
|
-
query_filter = "(PartitionKey gt '#{partitionkey_from_datetime(@last_timestamp)}')"
|
57
|
-
for i in 0..99
|
58
|
-
query_filter << " or (PartitionKey gt '#{i.to_s.rjust(19, '0')}___#{partitionkey_from_datetime(@last_timestamp)}' and PartitionKey lt '#{i.to_s.rjust(19, '0')}___9999999999999999999')"
|
59
|
-
end # for block
|
60
|
-
query_filter = query_filter.gsub('"','')
|
61
|
-
@logger.debug("Query filter: " + query_filter)
|
62
|
-
query = { :top => @entity_count_to_process, :filter => query_filter, :continuation_token => @continuation_token }
|
63
|
-
result = @azure_table_service.query_entities(@table_name, query)
|
64
|
-
@continuation_token = result.continuation_token
|
65
|
-
|
66
|
-
if result and result.length > 0
|
67
|
-
result.each do |entity|
|
68
|
-
event = LogStash::Event.new(entity.properties)
|
69
|
-
event["type"] = @table_name
|
70
|
-
|
71
|
-
# Help pretty print etw files
|
72
|
-
if (@etw_pretty_print && !event["EventMessage"].nil? && !event["Message"].nil?)
|
73
|
-
logger.debug("event: " + event.to_s)
|
74
|
-
eventMessage = event["EventMessage"].to_s
|
75
|
-
message = event["Message"].to_s
|
76
|
-
logger.debug("EventMessage: " + eventMessage)
|
77
|
-
logger.debug("Message: " + message)
|
78
|
-
if (eventMessage.include? "%")
|
79
|
-
logger.debug("starting pretty print")
|
80
|
-
toReplace = eventMessage.scan(/%\d+/)
|
81
|
-
payload = message.scan(/(?<!\\S)([a-zA-Z]+)=(\"[^\"]*\")(?!\\S)/)
|
82
|
-
# Split up the format string to seperate all of the numbers
|
83
|
-
toReplace.each do |key|
|
84
|
-
logger.debug("Replacing key: " + key.to_s)
|
85
|
-
index = key.scan(/\d+/).join.to_i
|
86
|
-
newValue = payload[index - 1][1]
|
87
|
-
logger.debug("New Value: " + newValue)
|
88
|
-
eventMessage[key] = newValue
|
89
|
-
end
|
90
|
-
event["EventMessage"] = eventMessage
|
91
|
-
logger.debug("pretty print end. result: " + event["EventMessage"].to_s)
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
output_queue << event
|
96
|
-
end # each block
|
97
|
-
@idle_delay = 0
|
98
|
-
@last_timestamp = result.last.properties["TIMESTAMP"].iso8601 unless @continuation_token
|
99
|
-
else
|
100
|
-
@logger.debug("No new results found.")
|
101
|
-
@idle_delay = @idle_delay_seconds
|
102
|
-
end # if block
|
103
|
-
|
104
|
-
rescue => e
|
105
|
-
@logger.error("Oh My, An error occurred.", :exception => e)
|
106
|
-
raise
|
107
|
-
end # process
|
108
|
-
|
109
|
-
# Windows Azure Diagnostic's algorithm for determining the partition key based on time is as follows:
|
110
|
-
# 1. Take time in UTC without seconds.
|
111
|
-
# 2. Convert it into .net ticks
|
112
|
-
# 3. add a '0' prefix.
|
113
|
-
def partitionkey_from_datetime(time_string)
|
114
|
-
collection_time = Time.parse(time_string)
|
115
|
-
if collection_time
|
116
|
-
@logger.debug("collection time parsed successfully #{collection_time}")
|
117
|
-
else
|
118
|
-
raise(ArgumentError, "Could not parse the time_string")
|
119
|
-
end # if else block
|
120
|
-
|
121
|
-
collection_time -= collection_time.sec
|
122
|
-
ticks = to_ticks(collection_time)
|
123
|
-
"0#{ticks}"
|
124
|
-
end # partitionkey_from_datetime
|
125
|
-
|
126
|
-
# Convert time to ticks
|
127
|
-
def to_ticks(time_to_convert)
|
128
|
-
@logger.debug("Converting time to ticks")
|
129
|
-
time_to_convert.to_i * 10000000 - TICKS_SINCE_EPOCH
|
130
|
-
end # to_ticks
|
131
|
-
|
132
|
-
end # LogStash::Inputs::AzureWADTable
|
1
|
+
# encoding: utf-8
|
2
|
+
require "logstash/inputs/base"
|
3
|
+
require "logstash/namespace"
|
4
|
+
|
5
|
+
require "azure"
|
6
|
+
|
7
|
+
class LogStash::Inputs::AzureWADTable < LogStash::Inputs::Base
|
8
|
+
class Interrupted < StandardError; end
|
9
|
+
|
10
|
+
config_name "azurewadtable"
|
11
|
+
milestone 0
|
12
|
+
|
13
|
+
config :account_name, :validate => :string
|
14
|
+
config :access_key, :validate => :string
|
15
|
+
config :table_name, :validate => :string
|
16
|
+
config :entity_count_to_process, :validate => :string, :default => 100
|
17
|
+
config :collection_start_time_utc, :validate => :string, :default => Time.now.utc.iso8601
|
18
|
+
config :etw_pretty_print, :validate => :boolean, :default => false
|
19
|
+
config :idle_delay_seconds, :validate => :number, :default => 15
|
20
|
+
|
21
|
+
TICKS_SINCE_EPOCH = Time.utc(0001, 01, 01).to_i * 10000000
|
22
|
+
|
23
|
+
def initialize(*args)
|
24
|
+
super(*args)
|
25
|
+
end # initialize
|
26
|
+
|
27
|
+
public
|
28
|
+
def register
|
29
|
+
Azure.configure do |config|
|
30
|
+
config.storage_account_name = @account_name
|
31
|
+
config.storage_access_key = @access_key
|
32
|
+
end
|
33
|
+
@azure_table_service = Azure::Table::TableService.new
|
34
|
+
@last_timestamp = @collection_start_time_utc
|
35
|
+
@idle_delay = @idle_delay_seconds
|
36
|
+
@continuation_token = nil
|
37
|
+
end # register
|
38
|
+
|
39
|
+
public
|
40
|
+
def run(output_queue)
|
41
|
+
loop do
|
42
|
+
@logger.debug("Starting process method @" + Time.now.to_s);
|
43
|
+
process(output_queue)
|
44
|
+
@logger.debug("Starting delay of: " + @idle_delay_seconds.to_s + " seconds @" + Time.now.to_s);
|
45
|
+
sleep @idle_delay
|
46
|
+
end # loop
|
47
|
+
end # run
|
48
|
+
|
49
|
+
public
|
50
|
+
def teardown
|
51
|
+
end
|
52
|
+
|
53
|
+
def process(output_queue)
|
54
|
+
@logger.debug(@last_timestamp)
|
55
|
+
# query data using start_from_time
|
56
|
+
query_filter = "(PartitionKey gt '#{partitionkey_from_datetime(@last_timestamp)}')"
|
57
|
+
for i in 0..99
|
58
|
+
query_filter << " or (PartitionKey gt '#{i.to_s.rjust(19, '0')}___#{partitionkey_from_datetime(@last_timestamp)}' and PartitionKey lt '#{i.to_s.rjust(19, '0')}___9999999999999999999')"
|
59
|
+
end # for block
|
60
|
+
query_filter = query_filter.gsub('"','')
|
61
|
+
@logger.debug("Query filter: " + query_filter)
|
62
|
+
query = { :top => @entity_count_to_process, :filter => query_filter, :continuation_token => @continuation_token }
|
63
|
+
result = @azure_table_service.query_entities(@table_name, query)
|
64
|
+
@continuation_token = result.continuation_token
|
65
|
+
|
66
|
+
if result and result.length > 0
|
67
|
+
result.each do |entity|
|
68
|
+
event = LogStash::Event.new(entity.properties)
|
69
|
+
event["type"] = @table_name
|
70
|
+
|
71
|
+
# Help pretty print etw files
|
72
|
+
if (@etw_pretty_print && !event["EventMessage"].nil? && !event["Message"].nil?)
|
73
|
+
logger.debug("event: " + event.to_s)
|
74
|
+
eventMessage = event["EventMessage"].to_s
|
75
|
+
message = event["Message"].to_s
|
76
|
+
logger.debug("EventMessage: " + eventMessage)
|
77
|
+
logger.debug("Message: " + message)
|
78
|
+
if (eventMessage.include? "%")
|
79
|
+
logger.debug("starting pretty print")
|
80
|
+
toReplace = eventMessage.scan(/%\d+/)
|
81
|
+
payload = message.scan(/(?<!\\S)([a-zA-Z]+)=(\"[^\"]*\")(?!\\S)/)
|
82
|
+
# Split up the format string to seperate all of the numbers
|
83
|
+
toReplace.each do |key|
|
84
|
+
logger.debug("Replacing key: " + key.to_s)
|
85
|
+
index = key.scan(/\d+/).join.to_i
|
86
|
+
newValue = payload[index - 1][1]
|
87
|
+
logger.debug("New Value: " + newValue)
|
88
|
+
eventMessage[key] = newValue
|
89
|
+
end
|
90
|
+
event["EventMessage"] = eventMessage
|
91
|
+
logger.debug("pretty print end. result: " + event["EventMessage"].to_s)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
output_queue << event
|
96
|
+
end # each block
|
97
|
+
@idle_delay = 0
|
98
|
+
@last_timestamp = result.last.properties["TIMESTAMP"].iso8601 unless @continuation_token
|
99
|
+
else
|
100
|
+
@logger.debug("No new results found.")
|
101
|
+
@idle_delay = @idle_delay_seconds
|
102
|
+
end # if block
|
103
|
+
|
104
|
+
rescue => e
|
105
|
+
@logger.error("Oh My, An error occurred.", :exception => e)
|
106
|
+
raise
|
107
|
+
end # process
|
108
|
+
|
109
|
+
# Windows Azure Diagnostic's algorithm for determining the partition key based on time is as follows:
|
110
|
+
# 1. Take time in UTC without seconds.
|
111
|
+
# 2. Convert it into .net ticks
|
112
|
+
# 3. add a '0' prefix.
|
113
|
+
def partitionkey_from_datetime(time_string)
|
114
|
+
collection_time = Time.parse(time_string)
|
115
|
+
if collection_time
|
116
|
+
@logger.debug("collection time parsed successfully #{collection_time}")
|
117
|
+
else
|
118
|
+
raise(ArgumentError, "Could not parse the time_string")
|
119
|
+
end # if else block
|
120
|
+
|
121
|
+
collection_time -= collection_time.sec
|
122
|
+
ticks = to_ticks(collection_time)
|
123
|
+
"0#{ticks}"
|
124
|
+
end # partitionkey_from_datetime
|
125
|
+
|
126
|
+
# Convert time to ticks
|
127
|
+
def to_ticks(time_to_convert)
|
128
|
+
@logger.debug("Converting time to ticks")
|
129
|
+
time_to_convert.to_i * 10000000 - TICKS_SINCE_EPOCH
|
130
|
+
end # to_ticks
|
131
|
+
|
132
|
+
end # LogStash::Inputs::AzureWADTable
|
@@ -1,24 +1,25 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
|
-
s.name
|
3
|
-
s.version
|
4
|
-
s.licenses
|
5
|
-
s.summary
|
6
|
-
s.description
|
7
|
-
s.authors
|
8
|
-
s.email
|
9
|
-
s.homepage
|
2
|
+
s.name = 'logstash-input-azurewadtable'
|
3
|
+
s.version = '0.9.6'
|
4
|
+
s.licenses = ['Apache License (2.0)']
|
5
|
+
s.summary = "This plugin will collect Microsoft Azure Diagnostics data from Azure Storage."
|
6
|
+
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
|
7
|
+
s.authors = ["Microsoft Corporation"]
|
8
|
+
s.email = 'azdiag@microsoft.com'
|
9
|
+
s.homepage = "https://github.com/Azure/azure-diagnostics-tools"
|
10
10
|
s.require_paths = ["lib"]
|
11
11
|
|
12
12
|
# Files
|
13
13
|
s.files = `git ls-files`.split($\)
|
14
|
-
|
14
|
+
# Tests
|
15
15
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
16
16
|
|
17
17
|
# Special flag to let us know this is actually a logstash plugin
|
18
18
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
|
19
19
|
|
20
20
|
# Gem dependencies
|
21
|
-
s.add_runtime_dependency 'logstash-core', '>= 1.4.0'
|
22
|
-
s.add_runtime_dependency 'azure', '~> 0.7.
|
23
|
-
s.add_development_dependency 'logstash-devutils'
|
21
|
+
s.add_runtime_dependency 'logstash-core', '>= 1.4.0'
|
22
|
+
s.add_runtime_dependency 'azure', '~> 0.7.3'
|
23
|
+
s.add_development_dependency 'logstash-devutils', '~> 0.0.14'
|
24
24
|
end
|
25
|
+
|
File without changes
|
@@ -0,0 +1,63 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
#
|
3
|
+
# ========================================================================================
|
4
|
+
# Microsoft patterns & practices (http://microsoft.com/practices)
|
5
|
+
# SEMANTIC LOGGING APPLICATION BLOCK
|
6
|
+
# ========================================================================================
|
7
|
+
#
|
8
|
+
# Copyright (c) Microsoft. All rights reserved.
|
9
|
+
# Microsoft would like to thank its contributors, a list
|
10
|
+
# of whom are at http://aka.ms/entlib-contributors
|
11
|
+
#
|
12
|
+
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
13
|
+
# may not use this file except in compliance with the License. You may
|
14
|
+
# obtain a copy of the License at
|
15
|
+
#
|
16
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
17
|
+
#
|
18
|
+
# Unless required by applicable law or agreed to in writing, software
|
19
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
20
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
21
|
+
# implied. See the License for the specific language governing permissions
|
22
|
+
# and limitations under the License.
|
23
|
+
#
|
24
|
+
help()
|
25
|
+
{
|
26
|
+
echo ""
|
27
|
+
echo ""
|
28
|
+
echo "This script installs Java, Logstash, and the Azure WAD plugin"
|
29
|
+
echo "Currently requires no parameters"
|
30
|
+
echo ""
|
31
|
+
echo ""
|
32
|
+
}
|
33
|
+
|
34
|
+
log()
|
35
|
+
{
|
36
|
+
echo "$1"
|
37
|
+
}
|
38
|
+
|
39
|
+
# Install Utilities
|
40
|
+
log "Installing utilities."
|
41
|
+
sudo apt-get update
|
42
|
+
sudo apt-get -y --force-yes install python-software-properties debconf-utils
|
43
|
+
|
44
|
+
# Install Java
|
45
|
+
log "Installing Java."
|
46
|
+
sudo add-apt-repository -y ppa:webupd8team/java
|
47
|
+
sudo apt-get update
|
48
|
+
echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections
|
49
|
+
sudo apt-get install -y --force-yes oracle-java8-installer
|
50
|
+
|
51
|
+
# Install Logstash
|
52
|
+
log "Installing Logstash."
|
53
|
+
echo 'deb http://packages.elastic.co/logstash/2.2/debian stable main' | sudo tee /etc/apt/sources.list.d/logstash-2.2.x.list
|
54
|
+
sudo apt-get update
|
55
|
+
sudo apt-get -y --force-yes install logstash
|
56
|
+
|
57
|
+
# Install Azure Plugin
|
58
|
+
log "Installing Azure WAD Table Plugin"
|
59
|
+
sudo /opt/logstash/bin/plugin install logstash-input-azurewadtable
|
60
|
+
|
61
|
+
log "Complete"
|
62
|
+
|
63
|
+
|
metadata
CHANGED
@@ -1,64 +1,58 @@
|
|
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.6
|
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-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- -
|
16
|
+
- - ">="
|
17
17
|
- !ruby/object:Gem::Version
|
18
18
|
version: 1.4.0
|
19
|
-
- - <
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 2.0.0
|
22
19
|
name: logstash-core
|
23
20
|
prerelease: false
|
24
21
|
type: :runtime
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: 1.4.0
|
30
|
-
- - <
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 2.0.0
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
requirement: !ruby/object:Gem::Requirement
|
35
29
|
requirements:
|
36
|
-
- - ~>
|
30
|
+
- - "~>"
|
37
31
|
- !ruby/object:Gem::Version
|
38
|
-
version: 0.7.
|
32
|
+
version: 0.7.3
|
39
33
|
name: azure
|
40
34
|
prerelease: false
|
41
35
|
type: :runtime
|
42
36
|
version_requirements: !ruby/object:Gem::Requirement
|
43
37
|
requirements:
|
44
|
-
- - ~>
|
38
|
+
- - "~>"
|
45
39
|
- !ruby/object:Gem::Version
|
46
|
-
version: 0.7.
|
40
|
+
version: 0.7.3
|
47
41
|
- !ruby/object:Gem::Dependency
|
48
42
|
requirement: !ruby/object:Gem::Requirement
|
49
43
|
requirements:
|
50
|
-
- -
|
44
|
+
- - "~>"
|
51
45
|
- !ruby/object:Gem::Version
|
52
|
-
version:
|
46
|
+
version: 0.0.14
|
53
47
|
name: logstash-devutils
|
54
48
|
prerelease: false
|
55
49
|
type: :development
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
51
|
requirements:
|
58
|
-
- -
|
52
|
+
- - "~>"
|
59
53
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
61
|
-
description: This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program
|
54
|
+
version: 0.0.14
|
55
|
+
description: This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program
|
62
56
|
email: azdiag@microsoft.com
|
63
57
|
executables: []
|
64
58
|
extensions: []
|
@@ -72,6 +66,7 @@ files:
|
|
72
66
|
- lib/logstash/inputs/azurewadtable.rb
|
73
67
|
- logstash-input-azurewadtable.gemspec
|
74
68
|
- spec/inputs/azurewadtable_spec.rb
|
69
|
+
- ubuntu-wad-logstash-install.sh
|
75
70
|
homepage: https://github.com/Azure/azure-diagnostics-tools
|
76
71
|
licenses:
|
77
72
|
- Apache License (2.0)
|
@@ -84,12 +79,12 @@ require_paths:
|
|
84
79
|
- lib
|
85
80
|
required_ruby_version: !ruby/object:Gem::Requirement
|
86
81
|
requirements:
|
87
|
-
- -
|
82
|
+
- - ">="
|
88
83
|
- !ruby/object:Gem::Version
|
89
84
|
version: '0'
|
90
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
86
|
requirements:
|
92
|
-
- -
|
87
|
+
- - ">="
|
93
88
|
- !ruby/object:Gem::Version
|
94
89
|
version: '0'
|
95
90
|
requirements: []
|