site24x7_apminsight 1.6.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d76a53e1e761dff35a1b9ffa239059d709f21b4e
4
+ data.tar.gz: 2d889d6028257c42b6c696c7e6c20fecdc8be502
5
+ SHA512:
6
+ metadata.gz: d1f6c249354a96b40abb289c61bf334c76c60a04f7a6b6505ed50fbd7a8ad6ed0e652604daa4924c1bb4edf11f02ce0c799b58e4c704d4b2369582c01a8139b4
7
+ data.tar.gz: 40375cc06cf940a4e408b5fa8072c00f4d49f8b4527d5ca301e2ef60c95aadb6596ac58d2a15cb2e5b41fbafb059c0d80f59b6fe4e7204350db7d4b6e25e9594
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- This License Agreement details the policy for license of Site24x7 APM Insight Ruby Agent ("Licensed Software")
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
- Site24x7 APM Insight Ruby agent gives you end-to-end web-transaction awareness enabling you to isolate performance issues and resolve them quickly. Site24x7 APM Insight requires a monitoring agent (ruby gem) to be deployed in your application server to monitor Ruby application performance. Download the latest Ruby Agent(site24x7_apminsight.gem) and deploy it in your application server. The agent collects application performance metrics and sends it to the central Site24x7 server at fixed intervals i.e. every 60 seconds. You can view them at https://site24x7.com in your accounts page.
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
- gem install site24x7_apminsight
10
+ gem install apminsight
11
11
 
12
12
  OR
13
13
 
14
- * Download the site24x7_apminsight.gem file from your accounts page in https://site24x7.com (after sign in) or the RubyGems website and run the command
14
+ * Download the apminsight.gem file directly from our website or the RubyGems website and run the command
15
15
 
16
- gem install site24x7_apminsight.gem
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 'site24x7_apminsight'
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 'site24x7_apminsight'
30
+ require 'apminsight'
31
31
 
32
- A copy of the configuration file apminsight.conf will be available in the <Gem Installed folder> /site24x7_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.
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 Site24x7 server.
37
+ application.name - The application's name to be displayed in Applications Manager.
38
38
 
39
- license.key - The license api key from your account page after sign in (https://site24x7.com)
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. https://www.site24x7.com/help/apm/apm-insight-configuration.html
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
- * Create an apminsight account in Site24x7 server (https://www.site24x7.com)
57
+ * Download link for Applications Manager
56
58
 
57
- * Download link for site24x7_apminsight gem
59
+ http://www.manageengine.com/products/applications_manager/
58
60
 
59
- From your account page after valid sign in
60
- or
61
- http://rubygems.org/gems/site24x7_apminsight
61
+ * Download link for apminsight
62
62
 
63
- * Help Documentation for apminsight
63
+ http://www.manageengine.com/products/applications_manager/
64
+ http://rubygems.org/gems/apminsight
64
65
 
65
- https://www.site24x7.com/help/apm/ruby-agent.html
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 = "site24x7_apminsight"
18
- gem.homepage = "https://www.site24x7.com/help/apm/ruby-agent.html"
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 = ["Rajalakshmi Ezhilan"]
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 = "site24x7_apminsight #{version}"
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/**/*.*')
@@ -191,7 +191,11 @@ class APMWorker
191
191
  f.flock(File::LOCK_EX)
192
192
  begin
193
193
  f.each_line do |line|
194
- data.push(JSON.parse(line))
194
+ begin
195
+ data.push(JSON.parse(line))
196
+ rescue Exception=>ex
197
+ @obj.log.logException "Error Parsing data, Skipping line #{line}", ex
198
+ end
195
199
  end
196
200
  f.truncate 0
197
201
  rescue Exception=>e
data/lib/version.rb CHANGED
@@ -6,8 +6,8 @@
6
6
 
7
7
  module ManageEngine
8
8
  class APMInsight
9
- VERSION = '1.6.0'
9
+ VERSION = '1.6.1'
10
10
  MAJOR_VERSION = '1.6'
11
- MINOR_VERSION = '0'
11
+ MINOR_VERSION = '1'
12
12
  end
13
13
  end
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.6.0
5
- prerelease:
4
+ version: 1.6.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Adithyan P
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2018-01-11 00:00:00.000000000Z
11
+ date: 2018-01-31 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: shoulda
16
- requirement: &22618704 !ruby/object:Gem::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: *22618704
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: &22830756 !ruby/object:Gem::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: *22830756
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: &22848264 !ruby/object:Gem::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: *22848264
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: &22884180 !ruby/object:Gem::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: *22884180
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: &23559084 !ruby/object:Gem::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: *23559084
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/api/custom_tracker.rb
92
103
  - lib/agent/configuration/am_configuration.rb
@@ -115,27 +126,29 @@ files:
115
126
  - lib/agent/util/am_constants.rb
116
127
  - lib/agent/util/am_util.rb
117
128
  - lib/agent/util/transaction_util.rb
129
+ - lib/site24x7_apminsight.rb
130
+ - lib/version.rb
131
+ - site24x7-agent.gemspec
118
132
  homepage: https://www.site24x7.com/help/apm/ruby-agent.html
119
133
  licenses: []
134
+ metadata: {}
120
135
  post_install_message:
121
136
  rdoc_options: []
122
137
  require_paths:
123
138
  - lib
124
139
  required_ruby_version: !ruby/object:Gem::Requirement
125
- none: false
126
140
  requirements:
127
- - - ! '>='
141
+ - - ">="
128
142
  - !ruby/object:Gem::Version
129
143
  version: '0'
130
144
  required_rubygems_version: !ruby/object:Gem::Requirement
131
- none: false
132
145
  requirements:
133
- - - ! '>='
146
+ - - ">="
134
147
  - !ruby/object:Gem::Version
135
148
  version: '0'
136
149
  requirements: []
137
150
  rubyforge_project:
138
- rubygems_version: 1.7.2
151
+ rubygems_version: 2.5.1
139
152
  signing_key:
140
153
  specification_version: 3
141
154
  summary: Site24x7 APMInsight gives you end-to-end web-transaction awareness of Rails