newrelic_f5_plugin 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ * 1.0.2
2
+ - Removed bundler requirement as it was not needed
3
+
1
4
  * 1.0.1
2
5
  - Added Virtual Server statistics:
3
6
  - Requests per second
data/README.rdoc CHANGED
@@ -1,4 +1,6 @@
1
1
  = New Relic F5 Plugin
2
+ {<img src="https://travis-ci.org/newrelic-platform/newrelic_f5_plugin.png" />}[https://travis-ci.org/newrelic-platform/newrelic_f5_plugin]
3
+
2
4
 
3
5
  The New Relic F5 Plugin enables integrated monitoring of your F5 Local Traffic
4
6
  Manager devices inside of New Relic. Currently the following metrics are recorded:
@@ -12,6 +14,12 @@ Device wide Metrics
12
14
  * TCP Details (Current connections, connection rate, Server/Client side, Wait State)
13
15
  * Node status
14
16
 
17
+ Virtual Server Statistics
18
+ * Requests per Second
19
+ * Current Connections
20
+ * Connections per Second
21
+ * Inbound and Outbound Throughput
22
+
15
23
 
16
24
  == Requirements
17
25
 
data/Rakefile CHANGED
@@ -15,7 +15,7 @@ def name
15
15
  end
16
16
 
17
17
  def version
18
- line = File.read("lib/#{name}.rb")[/^\s*VERSION\s*=\s*.*/]
18
+ line = File.read("lib/#{name}/agent.rb")[/^\s*VERSION\s*=\s*.*/]
19
19
  line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1]
20
20
  end
21
21
 
@@ -4,6 +4,6 @@ require 'newrelic_f5_plugin/virtuals'
4
4
  require 'newrelic_f5_plugin/agent'
5
5
 
6
6
  module NewRelic::F5Plugin
7
- VERSION = '1.0.1'
7
+
8
8
  end
9
9
 
@@ -1,12 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'rubygems'
4
- require 'bundler/setup'
5
3
  require 'newrelic_plugin'
6
4
  require 'snmp'
7
5
 
8
-
9
6
  module NewRelic::F5Plugin
7
+ VERSION = '1.0.2'
10
8
 
11
9
  # Register and run the agent
12
10
  def self.run
@@ -28,7 +26,7 @@ module NewRelic::F5Plugin
28
26
  # Build: 1.3.6.1.4.1.3375.2.1.4.3.0
29
27
  class Agent < NewRelic::Plugin::Agent::Base
30
28
  agent_guid 'com.newrelic.f5'
31
- agent_version '1.0.1' # FIXME This should come from NewRelic::F5Plugin VERSION constant
29
+ agent_version VERSION
32
30
  agent_config_options :hostname, :port, :snmp_community
33
31
  agent_human_labels('F5') { "#{hostname}" }
34
32
 
@@ -1,7 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'rubygems'
4
- require 'bundler/setup'
5
3
  require 'newrelic_plugin'
6
4
  require 'snmp'
7
5
 
@@ -1,7 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'rubygems'
4
- require 'bundler/setup'
5
3
  require 'newrelic_plugin'
6
4
  require 'snmp'
7
5
 
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'newrelic_f5_plugin'
16
- s.version = '1.0.1'
17
- s.date = '2013-06-21'
16
+ s.version = '1.0.2'
17
+ s.date = '2013-07-30'
18
18
  s.rubyforge_project = 'newrelic_f5_plugin'
19
19
 
20
20
  ## Make sure your summary is short. The description may be as long
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_f5_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-21 00:00:00.000000000 Z
12
+ date: 2013-07-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: newrelic_plugin