entombedvirus-munin_manager 0.0.1 → 0.0.2

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.
data/Manifest CHANGED
@@ -14,3 +14,4 @@ test/rails_response_time_test.rb
14
14
  ext/string.rb
15
15
  Rakefile
16
16
  Manifest
17
+ munin_manager.gemspec
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'echoe'
2
- Echoe.new('munin_manager', '0.0.1') do |s|
2
+ Echoe.new('munin_manager', '0.0.2') do |s|
3
3
  s.description = "Tool to maintain and install munin plugins written in Ruby"
4
4
  s.author = "Rohith Ravi"
5
5
  s.email = "entombedvirus@gmail.com"
@@ -32,11 +32,13 @@ module MuninManager
32
32
  configs = {
33
33
  "graph_title" => "Rails Response Times (by Controller->Action)",
34
34
  "graph_vlabel" => "time (secs)",
35
- "graph_category" => "Performance"
35
+ "graph_category" => "Performance",
36
+ "graph_args" => "--upper-limit 1.0 --lower-limit 0.100 --rigid"
36
37
  }
37
38
  self.collect!(:save_state => false)
38
39
  self.data.each do |action_name, respose_time|
39
40
  configs["#{format_for_munin(action_name)}.label"] = action_name.sub("#", "->")
41
+ configs["#{format_for_munin(action_name)}.draw"] = "LINE2"
40
42
  end
41
43
 
42
44
  configs["graph_order"] = self.data.to_a.
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{munin_manager}
5
- s.version = "0.0.1"
5
+ s.version = "0.0.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Rohith Ravi"]
9
- s.date = %q{2009-03-09}
9
+ s.date = %q{2009-03-10}
10
10
  s.description = %q{Tool to maintain and install munin plugins written in Ruby}
11
11
  s.email = %q{entombedvirus@gmail.com}
12
12
  s.executables = ["munin_manager", "runner"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: entombedvirus-munin_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rohith Ravi
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-09 00:00:00 -07:00
12
+ date: 2009-03-10 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15