site24x7_apminsight 1.1.1 → 1.2.0

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: 032c120ceab9ac813a443666cd20afc8417abee5
4
+ data.tar.gz: 53fcb0baf07f8ea9146fb895b784bcfc32e1f72b
5
+ SHA512:
6
+ metadata.gz: ac75fa482fee2f69d7e7e0b3728f3ce86553002d41a81a842aff0a0d5f7a277e292a182f757362ee9cd1dbbd51c6a6a318e77155ceb40aa04caff5929ec8f8e0
7
+ data.tar.gz: e4caabce3d0918c160a8d69b4a1876a5eb5b10cc421a884cf1ab6336f8fe1adaafd0249ada5381f9aa43394199f7b358ed6cb4da365d24e9a1928bb230ced73c
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/**/*.*')
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.1
1
+ 1.2
@@ -52,18 +52,22 @@ module ManageEngine
52
52
  @obj.log.debug "Config File Exists. It is read from #{@obj.constants.apm_conf}"
53
53
  @config = @obj.util.readProperties(@obj.constants.apm_conf)
54
54
  else
55
- gem_conf = Gem.loaded_specs[@obj.constants.apm_gem].full_gem_path
55
+ gemSpecs = Gem.loaded_specs[@obj.constants.s247_apm_gem]
56
+ if (gemSpecs == nil)
57
+ gemSpecs = Gem.loaded_specs[@obj.constants.apm_gem]
58
+ end
59
+ gem_conf = gemSpecs.full_gem_path
56
60
  #gem_conf = File.join(gem_conf, 'lib')
57
61
  gem_conf = File.join(gem_conf, 'conf')
58
62
  gem_conf = File.join(gem_conf, 'apminsight.conf')
59
63
  #conf file not exists in APPlications Home. So 1. copy it for gem locations
60
64
  if @obj.util.copyFiles gem_conf,@obj.constants.apm_conf
61
65
  #copied sucessfully
62
- @obj.log.debug "Config File copied. It is read from #{@obj.constants.apm_conf}"
66
+ @obj.log.info "Config File copied to application home directory. It is read from #{@obj.constants.apm_conf}"
63
67
  @config = @obj.util.readProperties(@obj.constants.apm_conf)
64
68
  else
65
69
  #Problem in copying, so reading props from Conf file in Gem Location
66
- @obj.log.debug "Config File not copied. It is read from #{gem_conf}"
70
+ @obj.log.warn "Config File not copied. It is read from #{gem_conf}"
67
71
  @config = @obj.util.readProperties(gem_conf)
68
72
  end
69
73
  end
@@ -80,7 +84,17 @@ module ManageEngine
80
84
  if FileTest.exists?(@obj.constants.agent_conf)
81
85
  @obj.log.debug "Status : Agent Already Connected"
82
86
  props = @obj.util.readProperties(@obj.constants.agent_conf)
83
- @instance_id = props["agent.id"]
87
+ instance_id = props["agent.id"]
88
+
89
+ if (instance_id == nil || instance_id == "")
90
+ # If instance id is not found or empty, it means the apminsight.info is being modified by user
91
+ # Ignore all its entry
92
+ @obj.log.warn "File: #{@obj.constants.agent_conf} is corrupted. Agent will continue ignoring these values."
93
+ return false
94
+ else
95
+ @instance_id = instance_id
96
+ end
97
+
84
98
  @agent_enabled= @obj.util.getBooleanValue props["agent.enabled"]
85
99
  true
86
100
  else
@@ -145,9 +159,15 @@ module ManageEngine
145
159
  value = checkAndGetEnvValue(value)
146
160
  case key
147
161
  when "application.name" then @appname=value
162
+ if (ENV.has_key?('APM_APPLICATION_NAME'))
163
+ @appname = ENV['APM_APPLICATION_NAME']
164
+ end
148
165
  when "apm.host" then @apmhost=value
149
166
  when "apm.port" then @apmport=isInteger(@apmport,value)
150
167
  when "license.key" then @license_key=value
168
+ if (@license_key.empty? && ENV.has_key?('S247_LICENSE_KEY'))
169
+ @license_key = ENV['S247_LICENSE_KEY']
170
+ end
151
171
  when "behind.proxy" then @proxyneeded=@obj.util.getBooleanValue value
152
172
  when "agent.server.port" then @agentport=isInteger(@agentport,value)
153
173
  when "apdex.threshold" then @apdex_t=isFloat(@apdex_t,value)
@@ -182,7 +202,7 @@ module ManageEngine
182
202
  def getAgentInfo
183
203
  data = Hash.new
184
204
  agentdata = Hash.new
185
- agentdata = {"application.type"=>"RUBY","application.name"=>@appname,"hostname"=>@agenthost,"port"=>@agentport,"agent.version"=>"1.1"}
205
+ agentdata = {"application.type"=>"RUBY","application.name"=>@appname,"hostname"=>@agenthost,"port"=>@agentport,"agent.version"=>"1.2"}
186
206
  data["agent_info"]=agentdata
187
207
  data["environment"]=getEnvData
188
208
  data["custom_config_info"]=getAgentConfigData
@@ -501,14 +501,20 @@ module ManageEngine
501
501
  if(arr["name"]=="start_processing.action_controller")
502
502
  traceArr = updateStartTrace arr
503
503
  traceArr[6] = Array.new #childs
504
- if stack.size()>0
505
- cur = stack[stack.size()-1]
506
- c = cur[6]
507
- c.push(traceArr)
508
- cur[6] = c
504
+ # if stack.size()>0
505
+ # cur = stack[stack.size()-1]
506
+ # c = cur[6]
507
+ # c.push(traceArr)
508
+ # cur[6] = c
509
+ # end
510
+ # stack.push(traceArr)
511
+
512
+ # Incase there are multiple "start_processing" event consider only the last notification
513
+ if stack.size == 0
514
+ stack.push(traceArr)
515
+ else
516
+ stack[stack.size()-1] = traceArr
509
517
  end
510
- stack.push(traceArr)
511
-
512
518
 
513
519
  traceDetails valo,stack,indx
514
520
 
@@ -537,6 +543,7 @@ module ManageEngine
537
543
  updateTransTrace(arr,stack[stack.size()-1])
538
544
  if(valo.size()>(indx+1))
539
545
  #Redirection Data
546
+ #Skipping all the "start_processing" event after "process_action" event
540
547
  arr = valo[indx]
541
548
  while (arr["name"]!="start_processing.action_controller") do
542
549
  indx = indx + 1
@@ -48,21 +48,17 @@ module ManageEngine
48
48
  else
49
49
  resp = startConnect "",agentInfo
50
50
  end
51
- if resp.has_key?("instance-info")
52
- aData = resp["instance-info"]
53
- aData["agent.id"]=aData.delete("instanceid")
54
- aData["agent.enabled"]=true
55
- @obj.config.updateAgentInfoFile(aData)
56
- @obj.log.debug "[doConnect] Connected - InstanceID : #{@obj.config.instance_id}"
57
- else
58
- @obj.log.info "[doConnect] [ Problem in connecting server] [ Going to shutdown ]"
59
- @obj.shutdown=true
60
- end
61
51
  end
62
-
63
- if resp==nil
64
- @obj.log.info "[doConnect] [ Error in Response while connecting Server . [ Going to shutdown ]"
65
- @obj.shutdown= true
52
+
53
+ if (resp == nil || !resp.has_key?("instance-info"))
54
+ @obj.log.info "[doConnect] [ Problem in connecting server] [ Going to shutdown ]"
55
+ @obj.shutdown=true
56
+ else
57
+ aData = resp["instance-info"]
58
+ aData["agent.id"]=aData.delete("instanceid")
59
+ aData["agent.enabled"]=true
60
+ @obj.config.updateAgentInfoFile(aData)
61
+ @obj.log.debug "[doConnect] Connected - InstanceID : #{@obj.config.instance_id}"
66
62
  end
67
63
 
68
64
  if(!@obj.shutdown)
@@ -14,8 +14,8 @@ module ManageEngine
14
14
  if(ManageEngine::APMObjectHolder.instance.config.agent_enabled)
15
15
  rt = (finish-start).to_i
16
16
  ManageEngine::APMWorker.getInstance.start
17
- ManageEngine::APMObjectHolder.instance.log.debug "[ Notifications for Agent ] #{Thread.current} #{id} #{name} - #{rt} - #{payload}"
18
- trace= caller;
17
+ ManageEngine::APMObjectHolder.instance.log.debug "[ Notifications for Agent ] #{Thread.current} #{id} #{name} - #{rt} - #{payload[:path]}"
18
+ #trace= caller;
19
19
  id = "#{Thread.current}"
20
20
  stats = Hash.new
21
21
  stats["name"] = name;
@@ -24,7 +24,7 @@ module ManageEngine
24
24
  stats["id"] = id;
25
25
  stats["payload"] = payload;
26
26
  if (name=="sql.active_record" && (finish-start)>=(ManageEngine::APMObjectHolder.instance.config.sql_trace_t * 1000 ).to_i)
27
- stats["trace"] = trace;
27
+ stats["trace"] = caller(20); # Taking stacktrace of depth 20
28
28
  end
29
29
  stats["ctime"] =ManageEngine::APMObjectHolder.instance.util.currenttimemillis;
30
30
  ManageEngine::APMObjectHolder.instance.collector.updateTransaction(id,stats);
@@ -2,7 +2,7 @@
2
2
  module ManageEngine
3
3
  class APMConstants
4
4
 
5
- attr_reader :apm_gem,:apm_conf,:agent_conf,:connection_open_timeout,:connection_read_timeout,:connect_uri,:connect_data_uri,:connect_trace_uri,:connect_config_update_uri,:site24x7url, :mergepattern_conf
5
+ attr_reader :apm_gem,:s247_apm_gem,:apm_conf,:agent_conf,:connection_open_timeout,:connection_read_timeout,:connect_uri,:connect_data_uri,:connect_trace_uri,:connect_config_update_uri,:site24x7url, :mergepattern_conf
6
6
  attr_reader :licence_exceeds,:licence_expired,:unmanage_agent,:manage_agent,:agent_config_updated,:error_notfound,:error_server,:delete_agent,:response_code,:custom_config_info
7
7
  attr_reader :mf_transaction,:mf_separator,:mf_db,:mf_apdex,:mf_namespace,:mf_name,:mf_all,:agent_store,:agent_lock,:mf_overflow
8
8
 
@@ -10,6 +10,8 @@ module ManageEngine
10
10
 
11
11
  #File path for APM Conf file
12
12
  @apm_gem="apminsight"
13
+ @s247_apm_gem="site24x7_apminsight"
14
+
13
15
  #File path for APM Conf file
14
16
  @apm_conf="apminsight.conf"
15
17
 
@@ -0,0 +1,72 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "site24x7_apminsight"
8
+ s.version = "1.2.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Adithyan P"]
12
+ s.date = "2016-12-19"
13
+ s.description = "Site24x7 APMInsight gives you end-to-end web-transaction awareness of Rails applications enabling you to isolate performance issues and resolve them quickly. To monitor Rails application performance, download and deploy Ruby agent(site24x7_apminsight) in your Application Server. This agent allows you to send information about Ruby applications. You can install APM Insight Agent via Rubygems or download it from your user account in Site24x7"
14
+
15
+ s.email = "apm-insight@zohocorp.com"
16
+ s.extra_rdoc_files = [
17
+ "LICENSE.txt",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ "LICENSE.txt",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "site24x7-agent.gemspec",
26
+ "conf/apminsight.conf",
27
+ "lib/site24x7_apminsight.rb",
28
+ "lib/agent/am_objectholder.rb",
29
+ "lib/agent/logging/am_logger.rb",
30
+ "lib/agent/configuration/am_configuration.rb",
31
+ "lib/agent/util/am_constants.rb",
32
+ "lib/agent/util/am_util.rb",
33
+ "lib/agent/metrics/am_metricsformatter.rb",
34
+ "lib/agent/metrics/am_metricstore.rb",
35
+ "lib/agent/metrics/am_metricscollector.rb",
36
+ "lib/agent/metrics/am_metricsparser.rb",
37
+ "lib/agent/server/am_agent.rb",
38
+ "lib/agent/server/am_connector.rb",
39
+ "lib/agent/server/worker/am_worker.rb",
40
+ "lib/agent/server/instrument/am_apm.rb",
41
+ "lib/agent/server/instrument/am_instrumenter.rb",
42
+ ]
43
+ s.homepage = "https://www.site24x7.com/help/apm/ruby-agent.html"
44
+ s.require_paths = ["lib"]
45
+ s.rubygems_version = "1.8.15"
46
+ s.summary = "Site24x7 APMInsight gives you end-to-end web-transaction awareness of Rails applications enabling you to isolate performance issues and resolve them quickly. To monitor Rails application performance, download and deploy Ruby agent(site24x7_apminsight.gem) in your Application Server. This agent allows you to send information about Ruby applications. You can install APM Insight Agent via Rubygems or download it from your user account in Site24x7"
47
+
48
+ if s.respond_to? :specification_version then
49
+ s.specification_version = 3
50
+
51
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
52
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
53
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
54
+ s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
55
+ s.add_development_dependency(%q<rcov>, [">= 0"])
56
+ s.add_development_dependency(%q<rails>, [">= 3.0.0"])
57
+ else
58
+ s.add_dependency(%q<shoulda>, [">= 0"])
59
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
60
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
61
+ s.add_dependency(%q<rcov>, [">= 0"])
62
+ s.add_dependency(%q<rails>, [">= 3.0.0"])
63
+ end
64
+ else
65
+ s.add_dependency(%q<shoulda>, [">= 0"])
66
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
67
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
68
+ s.add_dependency(%q<rcov>, [">= 0"])
69
+ s.add_dependency(%q<rails>, [">= 3.0.0"])
70
+ end
71
+ end
72
+
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.1.1
5
- prerelease:
4
+ version: 1.2.0
6
5
  platform: ruby
7
6
  authors:
8
- - Rajalakshmi Ezhilan
7
+ - Adithyan P
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2016-05-30 00:00:00.000000000Z
11
+ date: 2016-12-19 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: shoulda
16
- requirement: &24015144 !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: *24015144
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: &24014856 !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: *24014856
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: &24014568 !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: *24014568
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: &24014280 !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: *24014280
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: &24013992 !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: *24013992
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)
@@ -84,42 +98,42 @@ files:
84
98
  - Rakefile
85
99
  - VERSION
86
100
  - conf/apminsight.conf
87
- - lib/site24x7_apminsight.rb
88
101
  - lib/agent/am_objectholder.rb
89
- - lib/agent/logging/am_logger.rb
90
102
  - lib/agent/configuration/am_configuration.rb
91
- - lib/agent/util/am_constants.rb
92
- - lib/agent/util/am_util.rb
93
- - lib/agent/metrics/am_metricsformatter.rb
94
- - lib/agent/metrics/am_metricstore.rb
103
+ - lib/agent/logging/am_logger.rb
95
104
  - lib/agent/metrics/am_metricscollector.rb
105
+ - lib/agent/metrics/am_metricsformatter.rb
96
106
  - lib/agent/metrics/am_metricsparser.rb
107
+ - lib/agent/metrics/am_metricstore.rb
97
108
  - lib/agent/server/am_agent.rb
98
109
  - lib/agent/server/am_connector.rb
99
- - lib/agent/server/worker/am_worker.rb
100
110
  - lib/agent/server/instrument/am_apm.rb
101
111
  - lib/agent/server/instrument/am_instrumenter.rb
112
+ - lib/agent/server/worker/am_worker.rb
113
+ - lib/agent/util/am_constants.rb
114
+ - lib/agent/util/am_util.rb
115
+ - lib/site24x7_apminsight.rb
116
+ - site24x7-agent.gemspec
102
117
  homepage: https://www.site24x7.com/help/apm/ruby-agent.html
103
118
  licenses: []
119
+ metadata: {}
104
120
  post_install_message:
105
121
  rdoc_options: []
106
122
  require_paths:
107
123
  - lib
108
124
  required_ruby_version: !ruby/object:Gem::Requirement
109
- none: false
110
125
  requirements:
111
- - - ! '>='
126
+ - - ">="
112
127
  - !ruby/object:Gem::Version
113
128
  version: '0'
114
129
  required_rubygems_version: !ruby/object:Gem::Requirement
115
- none: false
116
130
  requirements:
117
- - - ! '>='
131
+ - - ">="
118
132
  - !ruby/object:Gem::Version
119
133
  version: '0'
120
134
  requirements: []
121
135
  rubyforge_project:
122
- rubygems_version: 1.7.2
136
+ rubygems_version: 2.5.1
123
137
  signing_key:
124
138
  specification_version: 3
125
139
  summary: Site24x7 APMInsight gives you end-to-end web-transaction awareness of Rails