site24x7_apminsight 1.5.2 → 1.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +1 -1
- data/README.rdoc +20 -18
- data/Rakefile +4 -4
- data/lib/agent/server/am_connector.rb +1 -1
- data/lib/agent/server/worker/am_worker.rb +2 -2
- data/lib/version.rb +2 -2
- metadata +44 -31
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 40e506165d426c193ff10760a05c9fa8cf6b47f7
|
4
|
+
data.tar.gz: be7e4ecf075d3e7fb6182e5f4b4db9a53bf7dfa7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4f68165cdcb35e477f82dc16caaad659ef9d6baefd9e2bda38550149ff668663a927326ac0575bf0df066355c99dc995a91813ed701d18d2c6f41cf6b4ab7522
|
7
|
+
data.tar.gz: db9d4b9e7833c94fb6eb1fee10e25ab93e7e55cf77710040879d3decf0b79b4c5845181e8aa8c38ae5a0c948d77e29a510d6a296362a72e1e255580b691ee559
|
data/LICENSE.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
This License Agreement details the policy for license of
|
1
|
+
This License Agreement details the policy for license of ManageEngine APM Insight Ruby Agent ("Licensed Software")
|
2
2
|
Please read the following license carefully, before either (i) downloading the Licensed Software from an authorized website, or (ii) installing the Licensed Software. You acknowledge that you have read this License Agreement, have understood it, and agree to be bound by its terms. If you do not agree to the terms and conditions of this Agreement, do not download or install the Licensed Software.
|
3
3
|
|
4
4
|
1. LICENSE GRANT
|
data/README.rdoc
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
APM Insight Ruby Agent
|
2
|
-
|
2
|
+
Applications Manager's Ruby agent gives you end-to-end web-transaction awareness enabling you to isolate performance issues and resolve them quickly.Applications Manager requires a monitoring agent (ruby gem) to be deployed in your application server to monitor Ruby application performance. Download the latest Ruby Agent(apminsight.gem) and deploy it in your application server. The agent collects application performance metrics and sends it to the central Applications Manager server at fixed intervals i.e. every 60 seconds.
|
3
3
|
|
4
4
|
Installing APM Insight Agent
|
5
5
|
|
@@ -7,13 +7,13 @@ Installing APM Insight Agent
|
|
7
7
|
|
8
8
|
* Install from RubyGems by using the following command in the system where Ruby is installed :
|
9
9
|
|
10
|
-
|
10
|
+
gem install apminsight
|
11
11
|
|
12
12
|
OR
|
13
13
|
|
14
|
-
|
14
|
+
* Download the apminsight.gem file directly from our website or the RubyGems website and run the command
|
15
15
|
|
16
|
-
gem install
|
16
|
+
gem install apminsight.gem
|
17
17
|
|
18
18
|
Configuration
|
19
19
|
|
@@ -21,28 +21,30 @@ Configuration
|
|
21
21
|
|
22
22
|
For each of your applications, add the following line to the application gemfile:
|
23
23
|
|
24
|
-
gem '
|
24
|
+
gem 'apminsight'
|
25
25
|
|
26
26
|
OR
|
27
27
|
|
28
28
|
For each of your applications, add the following line to the application initializer block:
|
29
29
|
|
30
|
-
require '
|
30
|
+
require 'apminsight'
|
31
31
|
|
32
|
-
A copy of the configuration file apminsight.conf will be available in the <Gem Installed folder> /
|
32
|
+
A copy of the configuration file apminsight.conf will be available in the <Gem Installed folder> /apminsight/conf/. Configure the class name in the configuration file(include.packages), so that all the methods in that class can be instrumented and details will be reported in tracedata.
|
33
33
|
|
34
34
|
|
35
35
|
The following configuration options are mandatory and should be provided for the agent to be initialized:
|
36
36
|
|
37
|
-
application.name - The application's name to be displayed in
|
37
|
+
application.name - The application's name to be displayed in Applications Manager.
|
38
38
|
|
39
|
-
|
39
|
+
apm.host - The host where Applications Manager is running.
|
40
|
+
|
41
|
+
apm.port - The HTTP port of Applications Manager.
|
40
42
|
|
41
43
|
behind.proxy - The proxy network under which the agent is installed
|
42
44
|
|
43
45
|
agent.server.port - The HTTP listening port of the Application Server.
|
44
46
|
|
45
|
-
More configuration options of APM Insight Ruby Agent can be found here.
|
47
|
+
More configuration options of APM Insight Ruby Agent can be found here.
|
46
48
|
|
47
49
|
Supported Environments :
|
48
50
|
|
@@ -52,16 +54,16 @@ Supported Environments :
|
|
52
54
|
|
53
55
|
References
|
54
56
|
|
55
|
-
*
|
57
|
+
* Download link for Applications Manager
|
56
58
|
|
57
|
-
|
59
|
+
http://www.manageengine.com/products/applications_manager/
|
58
60
|
|
59
|
-
|
60
|
-
or
|
61
|
-
http://rubygems.org/gems/site24x7_apminsight
|
61
|
+
* Download link for apminsight
|
62
62
|
|
63
|
-
|
63
|
+
http://www.manageengine.com/products/applications_manager/
|
64
|
+
http://rubygems.org/gems/apminsight
|
64
65
|
|
65
|
-
|
66
|
-
https://support.site24x7.com/portal/helpcenter/site24x7/apm-insight/ruby-monitoring
|
66
|
+
* Help Documentation for apminsight
|
67
67
|
|
68
|
+
http://www.manageengine.com/products/applications_manager/help/APMInsight/installing-transaction-agent.html
|
69
|
+
|
data/Rakefile
CHANGED
@@ -14,13 +14,13 @@ require 'rake'
|
|
14
14
|
require 'jeweler'
|
15
15
|
Jeweler::Tasks.new do |gem|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
|
-
gem.name = "
|
18
|
-
gem.homepage = "
|
17
|
+
gem.name = "apminsight"
|
18
|
+
gem.homepage = "http://www.manageengine.com/products/applications_manager/ruby-webtransaction-monitoring.html"
|
19
19
|
gem.license = "MIT"
|
20
20
|
gem.summary = %Q{Application Performace Monitor}
|
21
21
|
gem.description = %Q{Application Performace Monitor : Monitor the web tranasactions}
|
22
22
|
gem.email = "apm-insight@zohocorp.com"
|
23
|
-
gem.authors = ["
|
23
|
+
gem.authors = ["Sabarinathan P"]
|
24
24
|
gem.files=Dir.glob('lib/**/*.*')
|
25
25
|
# dependencies defined in Gemfile
|
26
26
|
end
|
@@ -48,7 +48,7 @@ Rake::RDocTask.new do |rdoc|
|
|
48
48
|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
49
49
|
|
50
50
|
rdoc.rdoc_dir = 'rdoc'
|
51
|
-
rdoc.title = "
|
51
|
+
rdoc.title = "apminsight #{version}"
|
52
52
|
rdoc.rdoc_files.include('README*')
|
53
53
|
rdoc.rdoc_files.include('lib/**/*.*')
|
54
54
|
rdoc.rdoc_files.include('lib/agent/**/*.*')
|
@@ -74,12 +74,12 @@ class APMWorker
|
|
74
74
|
@obj.log.info "Agent in Disabled State."
|
75
75
|
if prevState
|
76
76
|
@obj.log.info "Agent in Disabled State. Going to unsubscribe"
|
77
|
-
@obj.instrumenter.doUnSubscribe
|
77
|
+
# @obj.instrumenter.doUnSubscribe
|
78
78
|
end
|
79
79
|
else
|
80
80
|
if !prevState
|
81
81
|
@obj.log.info "Agent in Active State."
|
82
|
-
@obj.instrumenter.doSubscribe
|
82
|
+
# @obj.instrumenter.doSubscribe
|
83
83
|
end
|
84
84
|
end
|
85
85
|
end
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,71 +1,85 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: site24x7_apminsight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
5
|
-
prerelease:
|
4
|
+
version: 1.5.3
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Adithyan P
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2017-
|
11
|
+
date: 2017-12-28 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: shoulda
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
25
27
|
- !ruby/object:Gem::Dependency
|
26
28
|
name: bundler
|
27
|
-
requirement:
|
28
|
-
none: false
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
29
30
|
requirements:
|
30
|
-
- - ~>
|
31
|
+
- - "~>"
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: 1.0.0
|
33
34
|
type: :development
|
34
35
|
prerelease: false
|
35
|
-
version_requirements:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.0.0
|
36
41
|
- !ruby/object:Gem::Dependency
|
37
42
|
name: jeweler
|
38
|
-
requirement:
|
39
|
-
none: false
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
40
44
|
requirements:
|
41
|
-
- - ~>
|
45
|
+
- - "~>"
|
42
46
|
- !ruby/object:Gem::Version
|
43
47
|
version: 1.6.4
|
44
48
|
type: :development
|
45
49
|
prerelease: false
|
46
|
-
version_requirements:
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.6.4
|
47
55
|
- !ruby/object:Gem::Dependency
|
48
56
|
name: rcov
|
49
|
-
requirement:
|
50
|
-
none: false
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
51
58
|
requirements:
|
52
|
-
- -
|
59
|
+
- - ">="
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: '0'
|
55
62
|
type: :development
|
56
63
|
prerelease: false
|
57
|
-
version_requirements:
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
58
69
|
- !ruby/object:Gem::Dependency
|
59
70
|
name: rails
|
60
|
-
requirement:
|
61
|
-
none: false
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
62
72
|
requirements:
|
63
|
-
- -
|
73
|
+
- - ">="
|
64
74
|
- !ruby/object:Gem::Version
|
65
75
|
version: 3.0.0
|
66
76
|
type: :development
|
67
77
|
prerelease: false
|
68
|
-
version_requirements:
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 3.0.0
|
69
83
|
description: Site24x7 APMInsight gives you end-to-end web-transaction awareness of
|
70
84
|
Rails applications enabling you to isolate performance issues and resolve them quickly.
|
71
85
|
To monitor Rails application performance, download and deploy Ruby agent(site24x7_apminsight)
|
@@ -83,10 +97,7 @@ files:
|
|
83
97
|
- README.rdoc
|
84
98
|
- Rakefile
|
85
99
|
- VERSION
|
86
|
-
- site24x7-agent.gemspec
|
87
100
|
- conf/apminsight.conf
|
88
|
-
- lib/version.rb
|
89
|
-
- lib/site24x7_apminsight.rb
|
90
101
|
- lib/agent/am_objectholder.rb
|
91
102
|
- lib/agent/configuration/am_configuration.rb
|
92
103
|
- lib/agent/logging/am_logger.rb
|
@@ -109,27 +120,29 @@ files:
|
|
109
120
|
- lib/agent/util/am_constants.rb
|
110
121
|
- lib/agent/util/am_util.rb
|
111
122
|
- lib/agent/util/transaction_util.rb
|
123
|
+
- lib/site24x7_apminsight.rb
|
124
|
+
- lib/version.rb
|
125
|
+
- site24x7-agent.gemspec
|
112
126
|
homepage: https://www.site24x7.com/help/apm/ruby-agent.html
|
113
127
|
licenses: []
|
128
|
+
metadata: {}
|
114
129
|
post_install_message:
|
115
130
|
rdoc_options: []
|
116
131
|
require_paths:
|
117
132
|
- lib
|
118
133
|
required_ruby_version: !ruby/object:Gem::Requirement
|
119
|
-
none: false
|
120
134
|
requirements:
|
121
|
-
- -
|
135
|
+
- - ">="
|
122
136
|
- !ruby/object:Gem::Version
|
123
137
|
version: '0'
|
124
138
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
125
|
-
none: false
|
126
139
|
requirements:
|
127
|
-
- -
|
140
|
+
- - ">="
|
128
141
|
- !ruby/object:Gem::Version
|
129
142
|
version: '0'
|
130
143
|
requirements: []
|
131
144
|
rubyforge_project:
|
132
|
-
rubygems_version:
|
145
|
+
rubygems_version: 2.5.1
|
133
146
|
signing_key:
|
134
147
|
specification_version: 3
|
135
148
|
summary: Site24x7 APMInsight gives you end-to-end web-transaction awareness of Rails
|