spotdog 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dbe35a6e83737b1cd1ef539a241445afb0fa3ecf
4
+ data.tar.gz: 52b06d0a76b8dfd0a35b0d5673bc1b62fa26ddeb
5
+ SHA512:
6
+ metadata.gz: ab6233027f49c6e9ac3cc78664c8d6f272ea1c1c2e537ce5e6e8908f352f10c829166758be96f83ac63c4da3adf6d4e7387733cea798c2d090290ec002d75d53
7
+ data.tar.gz: 27ce7e9dbd2fada291485494ef8276fd08bd4ed988df974fa444c4635fe3a149211f1dec15a46ec5497c839a43ce6998b73b28ec0058e92ca631f7994f960ac7
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ .envrc
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2
4
+ - 2.1
5
+ - 2.0
6
+ env:
7
+ global:
8
+ secure: sU2O8v6WShJUNQXxxMb2OhVYvoiI8IfJMFeLCzyT+NPjwmk1r/0oxRpFvGgSdQA1oXoakW5iKi1suhG/VbIn336ggFZHnQQo9WQNFprFLTQWzIMidXBo8/pxd7aOq6rYUXxuT69P4cp54dNlYtUFL5IVbD/gMhbMKNhgFKJZuB7vlLadkif0lTNinXL3Pzh1tVwZ4oWyTQ+Ma/HF5Ge0CDaCAlP+W7HWwesFtg8TDgDAhJXAqldxAWb4pj2eAtbBoICdO7bvVCiGlbCFw9reLkgtgUX3xePl0AYU7/TFrqlX/NkrfuT0ygqpdYeaEDXAPi+Zr0beyNbS1xRp/+qGarR2OfMvwsl8mXpsSthREkgqi7rEM2N5jArSLlmM/3+aPOD4uVmtH2Y9uCVixCYzLlYTbfMrJfTGL//M6y+G9eR3rTN+2PEhxiGhPRNplGBSwZfoIpM72+lvWlSVwfN7tVtBlh5ERWw9Df15y+fBSwzWqP9LH9EI7mHXsjuPnXcYtoX3ToeVcOScr+7HJNsrWBgwTlX3eTKZZKoUb+W/whteM0J5AUHCWZeDhfXK3S4mI0eJp82hTxJ+WCFGCbw8Z/aLgk96OnD07y+u1/kKZsGR27IL+QtixmeF2EGyW6t7ZDLOjbK+q6FNYCt0+tYcn5QGsfWXsxUeUXIhOqCGnzA=
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in spotdog.gemspec
4
+ gemspec
@@ -0,0 +1,12 @@
1
+ guard :rspec, cmd: "bundle exec rspec" do
2
+ require "guard/rspec/dsl"
3
+ dsl = Guard::RSpec::Dsl.new(self)
4
+
5
+ rspec = dsl.rspec
6
+ watch(rspec.spec_helper) { rspec.spec_dir }
7
+ watch(rspec.spec_support) { rspec.spec_dir }
8
+ watch(rspec.spec_files)
9
+
10
+ ruby = dsl.ruby
11
+ dsl.watch_spec_files_for(ruby.lib_files)
12
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Daisuke Fujita
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,76 @@
1
+ # Spotdog
2
+
3
+ [![Build Status](https://travis-ci.org/dtan4/spotdog.svg?branch=ec2-class)](https://travis-ci.org/dtan4/spotdog)
4
+ [![Code Climate](https://codeclimate.com/github/dtan4/spotdog/badges/gpa.svg)](https://codeclimate.com/github/dtan4/spotdog)
5
+ [![Test Coverage](https://codeclimate.com/github/dtan4/spotdog/badges/coverage.svg)](https://codeclimate.com/github/dtan4/spotdog/coverage)
6
+ [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
7
+
8
+ __Spotdog__ is a command line tool to send EC2 Spot Instance Pricing History to Datadog. Spotdog enables us to monitor pricing history on Datadog.
9
+
10
+ (screenshot)
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ ```ruby
17
+ gem 'spotdog'
18
+ ```
19
+
20
+ And then execute:
21
+
22
+ $ bundle
23
+
24
+ Or install it yourself as:
25
+
26
+ $ gem install spotdog
27
+
28
+ ## Usage
29
+
30
+ ```bash
31
+ $ spotdog help
32
+ Commands:
33
+ spotdog help [COMMAND] # Describe available commands or one specific command
34
+ spotdog send # Send spot instance price history
35
+ ```
36
+
37
+ ### Send spot instance price history (`spotdog send`)
38
+
39
+ ```bash
40
+ $ spotdog help send
41
+ Usage:
42
+ spotdog send
43
+
44
+ Options:
45
+ i, [--instance-types=INSTANCE_TYPES] # List of instance types
46
+ m, [--max-results=N] # Number of results
47
+ p, [--product-descriptions=PRODUCT_DESCRIPTIONS] # List of product descriptions
48
+ s, [--start-time=START_TIME] # The time which to start retriving the prices
49
+ e, [--end-time=END_TIME] # The time which to stop retriving the prices
50
+ ```
51
+
52
+ - `-i`, `--instance-type`
53
+ - List of instance types, like `m4.large,c4.xlarge`.
54
+ - `-m`, `--max-results`
55
+ - Number of results
56
+ - `-p`, `--product-descriptions`
57
+ - List of product descriptions, like `linux_vpc,suse_vpc`. These values are allowed: `linux_vpc`, `linux_classic`, `suse_vpc`, `suse_classic`, `windows_vpc` and `windows_classic`.
58
+ - `-s`, `--start-time`
59
+ - The time which to start retriving the prices, like `2015-10-06 18:00 JST`
60
+ - `-e`, `--end_time`
61
+ - The time which to stop retriving the prices, like `2015-10-06 19:00 JST`
62
+
63
+ ## Development
64
+
65
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
66
+
67
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
68
+
69
+ ## Contributing
70
+
71
+ Bug reports and pull requests are welcome on GitHub at https://github.com/dtan4/spotdog. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
72
+
73
+
74
+ ## License
75
+
76
+ [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "spotdog"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "spotdog"
4
+
5
+ Spotdog::CLI.start(ARGV)
@@ -0,0 +1,12 @@
1
+ require "aws-sdk-core"
2
+ require "dogapi"
3
+ require "thor"
4
+
5
+ require "spotdog/version"
6
+
7
+ require "spotdog/cli"
8
+ require "spotdog/datadog"
9
+ require "spotdog/ec2"
10
+
11
+ module Spotdog
12
+ end
@@ -0,0 +1,27 @@
1
+ module Spotdog
2
+ class CLI < Thor
3
+ desc "send", "Send spot instance price history"
4
+ option :instance_types, type: :string, desc: "List of instance types", aliases: :i
5
+ option :max_results, type: :numeric, desc: "Number of results", aliases: :m
6
+ option :product_descriptions, type: :string, desc: "List of product descriptions", aliases: :p
7
+ option :start_time, type: :string, desc: "The time which to start retriving the prices", aliases: :s
8
+ option :end_time, type: :string, desc: "The time which to stop retriving the prices", aliases: :e
9
+ def send
10
+ spot_price_history = Spotdog::EC2.spot_price_history(
11
+ instance_types: options[:instance_types] ? options[:instance_types].split(",") : nil,
12
+ max_results: options[:max_results],
13
+ product_descriptions: options[:product_descriptions] ?
14
+ convert_product_descriptions(options[:product_descriptions].split(",")) : nil,
15
+ start_time: options[:start_time] ? Time.parse(options[:start_time]): nil,
16
+ end_time: options[:end_time] ? Time.parse(options[:end_time]) : nil,
17
+ )
18
+ Spotdog::Datadog.send_price_history(ENV["DATADOG_API_KEY"], spot_price_history)
19
+ end
20
+
21
+ private
22
+
23
+ def convert_product_descriptions(product_descriptions)
24
+ product_descriptions.map { |description| Spotdog::EC2::PRODUCT_DESCRIPTIONS[description.to_sym] }
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,62 @@
1
+ module Spotdog
2
+ class Datadog
3
+ DEFAULT_PREFIX = "spotinstance"
4
+
5
+ def self.send_price_history(api_key, spot_price_history, prefix: DEFAULT_PREFIX)
6
+ self.new(api_key, prefix).send_price_history(spot_price_history)
7
+ end
8
+
9
+ def initialize(api_key, prefix)
10
+ @client = Dogapi::Client.new(api_key)
11
+ @prefix = prefix
12
+ end
13
+
14
+ def send_price_history(spot_price_history)
15
+ groups_from(spot_price_history).each { |metric_name, price_history| @client.emit_points(metric_name, points_of(price_history)) }
16
+ end
17
+
18
+ private
19
+
20
+ def groups_from(spot_price_history)
21
+ spot_price_history.inject({}) do |result, spot_price|
22
+ metric_name = metric_name_of(spot_price)
23
+ result[metric_name] ||= []
24
+ result[metric_name] << spot_price
25
+ result
26
+ end
27
+ end
28
+
29
+ def metric_name_of(spot_price)
30
+ # "spotinstance.c4_xlarge.linux_vpc.ap-northeast-1b"
31
+ [
32
+ @prefix,
33
+ spot_price[:instance_type].sub(".", "_"),
34
+ os_type_of(spot_price),
35
+ spot_price[:availability_zone].gsub("-", "_")
36
+ ].join(".")
37
+ end
38
+
39
+ def machine_os_of(spot_price)
40
+ case spot_price[:product_description]
41
+ when /\ASUSE/
42
+ "suse"
43
+ when /\AWindows/
44
+ "windows"
45
+ else
46
+ "linux"
47
+ end
48
+ end
49
+
50
+ def machine_type_of(spot_price)
51
+ spot_price[:product_description].include?("VPC") ? "vpc" : "classic"
52
+ end
53
+
54
+ def os_type_of(spot_price)
55
+ "#{machine_os_of(spot_price)}_#{machine_type_of(spot_price)}"
56
+ end
57
+
58
+ def points_of(spot_price_history)
59
+ spot_price_history.map { |spot_price| [spot_price[:timestamp], spot_price[:spot_price].to_f] }
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,31 @@
1
+ module Spotdog
2
+ class EC2
3
+ PRODUCT_DESCRIPTIONS = {
4
+ linux_vpc: "Linux/UNIX (Amazon VPC)",
5
+ linux_classic: "Linux/UNIX",
6
+ suse_vpc: "SUSE Linux (Amazon VPC)",
7
+ suse_classic: "SUSE Linux",
8
+ windows_vpc: "Windows (Amazon VPC)",
9
+ windows_classic: "Windows",
10
+ }.freeze
11
+
12
+ def self.spot_price_history(client: Aws::EC2::Client.new, instance_types: nil, max_results: nil,
13
+ product_descriptions: nil, start_time: nil, end_time: nil)
14
+ self.new(client).spot_price_history(instance_types, max_results, product_descriptions, start_time, end_time)
15
+ end
16
+
17
+ def initialize(client)
18
+ @client = client
19
+ end
20
+
21
+ def spot_price_history(instance_types, max_results, product_descriptions, start_time, end_time)
22
+ @client.describe_spot_price_history(
23
+ instance_types: instance_types,
24
+ max_results: max_results,
25
+ product_descriptions: product_descriptions,
26
+ start_time: start_time,
27
+ end_time: end_time,
28
+ ).spot_price_history.map(&:to_h)
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,3 @@
1
+ module Spotdog
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'spotdog/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "spotdog"
8
+ spec.version = Spotdog::VERSION
9
+ spec.authors = ["Daisuke Fujita"]
10
+ spec.email = ["dtanshi45@gmail.com"]
11
+
12
+ spec.summary = %q{Send EC2 Spot Instance Price History to Datadog}
13
+ spec.description = %q{Send EC2 Spot Instance Price History to Datadog}
14
+ spec.homepage = "https://github.com/dtan4/spotdog"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency "aws-sdk", "~> 2.1.15"
23
+ spec.add_dependency "dogapi"
24
+ spec.add_dependency "thor"
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.7"
27
+ spec.add_development_dependency "codeclimate-test-reporter"
28
+ spec.add_development_dependency "guard-rspec"
29
+ spec.add_development_dependency "rake", "~> 10.0"
30
+ spec.add_development_dependency "rspec"
31
+ spec.add_development_dependency "terminal-notifier-guard"
32
+ end
metadata ADDED
@@ -0,0 +1,189 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spotdog
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Daisuke Fujita
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-10-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: aws-sdk
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.1.15
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.1.15
27
+ - !ruby/object:Gem::Dependency
28
+ name: dogapi
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.7'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.7'
69
+ - !ruby/object:Gem::Dependency
70
+ name: codeclimate-test-reporter
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: guard-rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '10.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '10.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rspec
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: terminal-notifier-guard
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Send EC2 Spot Instance Price History to Datadog
140
+ email:
141
+ - dtanshi45@gmail.com
142
+ executables:
143
+ - spotdog
144
+ extensions: []
145
+ extra_rdoc_files: []
146
+ files:
147
+ - ".gitignore"
148
+ - ".rspec"
149
+ - ".travis.yml"
150
+ - CODE_OF_CONDUCT.md
151
+ - Gemfile
152
+ - Guardfile
153
+ - LICENSE.txt
154
+ - README.md
155
+ - Rakefile
156
+ - bin/console
157
+ - bin/setup
158
+ - exe/spotdog
159
+ - lib/spotdog.rb
160
+ - lib/spotdog/cli.rb
161
+ - lib/spotdog/datadog.rb
162
+ - lib/spotdog/ec2.rb
163
+ - lib/spotdog/version.rb
164
+ - spotdog.gemspec
165
+ homepage: https://github.com/dtan4/spotdog
166
+ licenses:
167
+ - MIT
168
+ metadata: {}
169
+ post_install_message:
170
+ rdoc_options: []
171
+ require_paths:
172
+ - lib
173
+ required_ruby_version: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ version: '0'
178
+ required_rubygems_version: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ requirements: []
184
+ rubyforge_project:
185
+ rubygems_version: 2.4.5.1
186
+ signing_key:
187
+ specification_version: 4
188
+ summary: Send EC2 Spot Instance Price History to Datadog
189
+ test_files: []