newrelic_f5_plugin 1.0.1 → 1.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/CHANGES +3 -0
- data/README.rdoc +8 -0
- data/Rakefile +1 -1
- data/lib/newrelic_f5_plugin.rb +1 -1
- data/lib/newrelic_f5_plugin/agent.rb +2 -4
- data/lib/newrelic_f5_plugin/nodes.rb +0 -2
- data/lib/newrelic_f5_plugin/virtuals.rb +0 -2
- data/newrelic_f5_plugin.gemspec +2 -2
- metadata +2 -2
data/CHANGES
CHANGED
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
data/lib/newrelic_f5_plugin.rb
CHANGED
@@ -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
|
29
|
+
agent_version VERSION
|
32
30
|
agent_config_options :hostname, :port, :snmp_community
|
33
31
|
agent_human_labels('F5') { "#{hostname}" }
|
34
32
|
|
data/newrelic_f5_plugin.gemspec
CHANGED
@@ -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.
|
17
|
-
s.date = '2013-
|
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.
|
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-
|
12
|
+
date: 2013-07-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: newrelic_plugin
|