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 +1 -0
- data/Rakefile +1 -1
- data/lib/munin_manager/plugins/rails_response_time.rb +3 -1
- data/munin_manager.gemspec +2 -2
- metadata +2 -2
data/Manifest
CHANGED
data/Rakefile
CHANGED
|
@@ -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.
|
data/munin_manager.gemspec
CHANGED
|
@@ -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.
|
|
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-
|
|
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.
|
|
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-
|
|
12
|
+
date: 2009-03-10 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|