cloudscale 0.0.8 → 0.0.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/bin/cloudscale +5 -0
- data/lib/cloudscale/monitor/agent/agent.rb +8 -2
- data/lib/cloudscale/monitor/reporter/influxdb_reporter.rb +29 -5
- data/lib/cloudscale/plugins/mongo/preops/mongodb_preop.rb +12 -4
- data/lib/cloudscale/plugins/mysql/data/mysql_chart.json +506 -0
- data/lib/cloudscale/plugins/mysql/data/mysql_menu.json +35 -0
- data/lib/cloudscale/plugins/mysql/mysql_counters.rb +90 -0
- data/lib/cloudscale/plugins/mysql/mysql_general_status.rb +119 -0
- data/lib/cloudscale/plugins/mysql/mysql_innodb.rb +113 -0
- data/lib/cloudscale/plugins/mysql/mysql_querycache.rb +59 -0
- data/lib/cloudscale/plugins/mysql/preops/mysql_preop.rb +95 -0
- data/lib/cloudscale/plugins/postgres/preops/postgres_preop.rb +12 -4
- data/lib/cloudscale/plugins/redis/data/redis_chart.json +110 -0
- data/lib/cloudscale/plugins/redis/data/redis_menu.json +17 -0
- data/lib/cloudscale/plugins/redis/preops/redis_preop.rb +117 -0
- data/lib/cloudscale/plugins/redis/redis_server_status.rb +227 -0
- data/lib/cloudscale/rest/rest_client.rb +14 -8
- data/lib/cloudscale/rest/rest_client_helper.rb +23 -16
- data/lib/cloudscale/schedule.rb +1 -0
- data/lib/cloudscale/store/agent/agent.store +1 -1
- data/lib/cloudscale/store/agent/agent_instance.store +11 -0
- data/lib/cloudscale/store/agent/influxdb.store +1 -1
- data/lib/cloudscale/version.rb +1 -1
- data/lib/store/plugin/host +1 -0
- data/lib/store/plugin/mongo-connect-timeout +1 -0
- data/lib/store/plugin/mongo-db +1 -0
- data/lib/store/plugin/mongo-host +1 -0
- data/lib/store/plugin/mongo-op-timeout +1 -0
- data/lib/store/plugin/mongo-password +1 -0
- data/lib/store/plugin/mongo-port +2 -0
- data/lib/store/plugin/mongo-ssl +2 -0
- data/lib/store/plugin/mongo-username +1 -0
- data/lib/store/plugin/mysql-db +0 -0
- data/lib/store/plugin/mysql-host +0 -0
- data/lib/store/plugin/mysql-password +0 -0
- data/lib/store/plugin/mysql-port +1 -0
- data/lib/store/plugin/mysql-username +0 -0
- data/lib/store/plugin/port +1 -0
- data/lib/store/plugin/postgres-db +0 -0
- data/lib/store/plugin/postgres-host +0 -0
- data/lib/store/plugin/postgres-password +0 -0
- data/lib/store/plugin/postgres-port +1 -0
- data/lib/store/plugin/postgres-username +0 -0
- data/lib/store/plugin/redis-db +0 -0
- data/lib/store/plugin/redis-host +0 -0
- data/lib/store/plugin/redis-password +0 -0
- data/lib/store/plugin/redis-port +1 -0
- data/lib/store/plugin/redis-reconnect-attempts +1 -0
- data/lib/store/plugin/redis-timeout +1 -0
- data/lib/store/plugin/redis-username +0 -0
- data/lib/store/plugin/token +1 -0
- metadata +45 -11
- data/bin/autospec +0 -16
- data/bin/bundler +0 -16
- data/bin/htmldiff +0 -16
- data/bin/ldiff +0 -16
- data/bin/monitor +0 -16
- data/bin/rake +0 -16
- data/bin/restclient +0 -16
- data/bin/rspec +0 -16
data/bin/rake
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rake' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rake', 'rake')
|
data/bin/restclient
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'restclient' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rest-client', 'restclient')
|
data/bin/rspec
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rspec' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rspec-core', 'rspec')
|