apminsight 0.0.3 → 1.8.8
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/Rakefile +4 -4
- data/VERSION +1 -1
- data/apm-agent.gemspec +64 -0
- data/conf/apminsight.conf +15 -24
- data/lib/agent/am_objectholder.rb +25 -19
- data/lib/agent/api/custom_tracker.rb +79 -0
- data/lib/agent/configuration/am_configuration.rb +306 -43
- data/lib/agent/handler/custom_api_handler.rb +40 -0
- data/lib/agent/handler/sequence_book.rb +125 -0
- data/lib/agent/handler/tracker_handler.rb +58 -0
- data/lib/agent/logging/am_logger.rb +21 -12
- data/lib/agent/metrics/am_metricsformatter.rb +117 -59
- data/lib/agent/metrics/am_metricsparser.rb +195 -468
- data/lib/agent/metrics/am_metricstore.rb +7 -6
- data/lib/agent/metrics/exception_record.rb +24 -0
- data/lib/agent/server/am_agent.rb +59 -21
- data/lib/agent/server/am_connector.rb +66 -22
- data/lib/agent/server/instrument/action_view.rb +64 -0
- data/lib/agent/server/instrument/active_record.rb +52 -0
- data/lib/agent/server/instrument/am_apm.rb +107 -97
- data/lib/agent/server/instrument/am_instrumenter.rb +54 -42
- data/lib/agent/server/instrument/environment.rb +42 -0
- data/lib/agent/server/instrument/rails.rb +56 -0
- data/lib/agent/server/instrument/sinatra.rb +97 -0
- data/lib/agent/server/worker/am_worker.rb +93 -49
- data/lib/agent/trackers/database_tracker.rb +107 -0
- data/lib/agent/trackers/default_tracker.rb +62 -0
- data/lib/agent/trackers/root_tracker.rb +43 -0
- data/lib/agent/util/am_constants.rb +57 -8
- data/lib/agent/util/am_util.rb +76 -14
- data/lib/agent/util/transaction_util.rb +35 -0
- data/lib/agent/version.rb +13 -0
- data/lib/apminsight.rb +4 -1
- metadata +115 -79
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'agent/trackers/default_tracker'
|
2
|
+
|
3
|
+
module ManageEngine
|
4
|
+
module Tracker
|
5
|
+
class RootTracker < DefaultTracker
|
6
|
+
|
7
|
+
attr_accessor :status, :url
|
8
|
+
|
9
|
+
def url=(url = "unknown")
|
10
|
+
@url = ManageEngine::APMObjectHolder.instance.txn_util.normalizeName(url)
|
11
|
+
end
|
12
|
+
|
13
|
+
def http_method(method)
|
14
|
+
@http_method = method
|
15
|
+
end
|
16
|
+
|
17
|
+
def http_params(params)
|
18
|
+
@http_params = params
|
19
|
+
end
|
20
|
+
|
21
|
+
def queryString(querystring)
|
22
|
+
@queryString = querystring
|
23
|
+
end
|
24
|
+
|
25
|
+
def setStatus(httpcode)
|
26
|
+
@status = httpcode
|
27
|
+
end
|
28
|
+
|
29
|
+
def getAdditionalInfo
|
30
|
+
info = super
|
31
|
+
if (@http_method != nil && @queryString != nil && @status != nil)
|
32
|
+
if (info == nil)
|
33
|
+
info = Hash.new
|
34
|
+
end
|
35
|
+
info["http_method_name"] = @http_method
|
36
|
+
info["http_query_str"] = @queryString
|
37
|
+
info["httpcode"] = @status
|
38
|
+
end
|
39
|
+
info
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -2,25 +2,33 @@
|
|
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
|
6
|
-
attr_reader :
|
7
|
-
attr_reader :
|
5
|
+
attr_reader :conf_location, :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,:mergepattern_conf
|
6
|
+
attr_reader :site24x7USurl, :site24x7EUurl, :site24x7CNurl, :site24x7INurl, :site24x7AUurl, :site24x7GDurl, :site24x7JPurl, :site24x7CAurl, :site24x7SAurl, :site24x7UKurl, :site24x7HDFCurl
|
7
|
+
attr_reader :licence_exceeds,:licence_expired,:unmanage_agent,:manage_agent,:agent_config_updated,:error_notfound,:error_server,:delete_agent,:response_code,:custom_config_info, :agent_specific_info
|
8
|
+
attr_reader :mf_transaction,:mf_separator,:mf_db,:mf_apdex,:mf_namespace,:mf_name,:mf_all,:agent_store,:agent_lock,:mf_overflow
|
9
|
+
attr_reader :mf_logmetric, :mf_logmetric_warning, :mf_exception_st, :mf_err_st, :mf_loginfo, :mf_loginfo_time, :mf_loginfo_level, :mf_loginfo_str, :mf_loginfo_err_clz, :mf_loginfo_st, :mf_loginfo_level_warn
|
10
|
+
attr_reader :en_alphabets, :en_numerals
|
8
11
|
|
9
12
|
def initialize
|
10
|
-
|
13
|
+
@conf_location=ENV.has_key?('APMINSIGHT_HOME') ? ENV['APMINSIGHT_HOME']+"/" : "./"
|
11
14
|
#File path for APM Conf file
|
12
15
|
@apm_gem="apminsight"
|
16
|
+
@s247_apm_gem="site24x7_apminsight"
|
17
|
+
|
13
18
|
#File path for APM Conf file
|
14
|
-
@apm_conf
|
19
|
+
@apm_conf=@conf_location + "apminsight.conf"
|
15
20
|
|
16
21
|
#file path for agent id, enable details
|
17
|
-
@agent_conf
|
22
|
+
@agent_conf=@conf_location + "apminsight.info"
|
18
23
|
|
19
24
|
#file path for agent data store lock
|
20
|
-
@agent_lock
|
25
|
+
@agent_lock=@conf_location + "apminsight.lock"
|
21
26
|
|
22
27
|
#file path for agent data store lock
|
23
|
-
@agent_store
|
28
|
+
@agent_store=@conf_location + "apminsight.store"
|
29
|
+
|
30
|
+
#file name for url merge patterns
|
31
|
+
@mergepattern_conf=@conf_location + "transaction_merge_patterns.conf"
|
24
32
|
|
25
33
|
|
26
34
|
#Timeout for opening Connections
|
@@ -38,15 +46,34 @@ module ManageEngine
|
|
38
46
|
#Connection uri for trace
|
39
47
|
@connect_trace_uri="arh/trace?instance_id="
|
40
48
|
|
49
|
+
#Connection uri for config update
|
50
|
+
@connect_config_update_uri="arh/agent_config_update?instance_id="
|
51
|
+
|
52
|
+
#Site24x7 url for agent communication
|
53
|
+
@site24x7USurl = "https://plusinsight.site24x7.com/"
|
54
|
+
@site24x7EUurl = "https://plusinsight.site24x7.eu/"
|
55
|
+
@site24x7CNurl = "https://plusinsight.site24x7.cn/"
|
56
|
+
@site24x7AUurl = "https://plusinsight.site24x7.net.au/"
|
57
|
+
@site24x7INurl = "https://plusinsight.site24x7.in/"
|
58
|
+
@site24x7GDurl = "https://gdplusinsight.site24x7.com/"
|
59
|
+
@site24x7JPurl = "https://plusinsight.site24x7.jp/"
|
60
|
+
@site24x7CAurl = "https://plusinsight.site24x7.ca/"
|
61
|
+
@site24x7SAurl = "https://plusinsight.site24x7.sa/"
|
62
|
+
@site24x7UKurl = "https://plusinsight.site24x7.uk/"
|
63
|
+
@site24x7HDFCurl = "https://hdplusinsight.site24x7.in/"
|
64
|
+
|
41
65
|
#Response Codes
|
42
66
|
@licence_expired = 701
|
43
67
|
@licence_exceeds = 702
|
44
68
|
@delete_agent = 900
|
45
69
|
@unmanage_agent =910
|
46
70
|
@manage_agent = 911
|
71
|
+
@agent_config_updated = 920
|
47
72
|
@error_notfound = 404
|
48
73
|
@error_server = 500
|
49
74
|
@response_code = "response-code"
|
75
|
+
@custom_config_info = "custom_config_info"
|
76
|
+
@agent_specific_info = "agent_specific_info"
|
50
77
|
|
51
78
|
#Metrics Formatter -mf
|
52
79
|
@mf_apdex = "apdex"
|
@@ -57,8 +84,30 @@ module ManageEngine
|
|
57
84
|
@mf_separator = "/"
|
58
85
|
@mf_transaction = "transaction" + @mf_separator + "http"
|
59
86
|
@mf_db = "db"
|
87
|
+
@mf_overflow = "0verf10w"
|
88
|
+
|
89
|
+
@mf_logmetric = "logmetric"
|
90
|
+
@mf_logmetric_warning = "warning"
|
91
|
+
@mf_err_st = "err_st"
|
92
|
+
@mf_exception_st = "exception_st"
|
93
|
+
@mf_loginfo = "loginfo"
|
94
|
+
@mf_loginfo_time = "time"
|
95
|
+
@mf_loginfo_level = "level"
|
96
|
+
@mf_loginfo_str = "str"
|
97
|
+
@mf_loginfo_err_clz = "err_clz"
|
98
|
+
@mf_loginfo_st = "st"
|
99
|
+
@mf_loginfo_level_warn = "WARN"
|
60
100
|
|
101
|
+
@en_alphabets = "YXBtaWza"
|
102
|
+
@en_numerals = "24876981"
|
103
|
+
|
104
|
+
end
|
61
105
|
|
106
|
+
def setLicenseKey lkey
|
107
|
+
@apm_gem="site24x7_apminsight"
|
108
|
+
@connect_data_uri="arh/data?license.key="+lkey+"&instance_id="
|
109
|
+
@connect_trace_uri="arh/trace?license.key="+lkey+"&instance_id="
|
110
|
+
@connect_config_update_uri="arh/agent_config_update?license.key="+lkey+"&instance_id="
|
62
111
|
end
|
63
112
|
end
|
64
113
|
end
|
data/lib/agent/util/am_util.rb
CHANGED
@@ -1,32 +1,70 @@
|
|
1
|
+
require "agent/am_objectholder"
|
2
|
+
|
1
3
|
require 'socket'
|
4
|
+
require 'openssl'
|
5
|
+
require 'base64'
|
6
|
+
|
2
7
|
module ManageEngine
|
3
8
|
class APMUtil
|
4
|
-
|
9
|
+
|
5
10
|
def setLogger log
|
6
11
|
@log = log
|
7
12
|
end
|
8
13
|
|
14
|
+
def encrypt text, key
|
15
|
+
if (text == nil || key == nil)
|
16
|
+
return nil
|
17
|
+
end
|
18
|
+
cipher_text = nil
|
19
|
+
begin
|
20
|
+
key = key.length > 16 ? key[(key.length-16)..-1] : key
|
21
|
+
cipher = OpenSSL::Cipher.new('AES-128-CBC').encrypt
|
22
|
+
cipher.key = key
|
23
|
+
cipher.iv = ManageEngine::APMObjectHolder.instance.constants.en_alphabets + ManageEngine::APMObjectHolder.instance.constants.en_numerals
|
24
|
+
cipher_text = Base64.encode64(cipher.update(text) + cipher.final)
|
25
|
+
rescue Exception=>e
|
26
|
+
cipher_text = nil
|
27
|
+
end
|
28
|
+
return cipher_text
|
29
|
+
end
|
30
|
+
|
31
|
+
def decrypt cipher_text, key
|
32
|
+
if (cipher_text == nil || key == nil)
|
33
|
+
return nil
|
34
|
+
end
|
35
|
+
plain_text = nil
|
36
|
+
begin
|
37
|
+
key = key.length > 16 ? key[(key.length-16)..-1] : key
|
38
|
+
cipher = OpenSSL::Cipher.new('AES-128-CBC').decrypt
|
39
|
+
cipher.key = key
|
40
|
+
cipher.iv = ManageEngine::APMObjectHolder.instance.constants.en_alphabets + ManageEngine::APMObjectHolder.instance.constants.en_numerals
|
41
|
+
plain_text = cipher.update(Base64.decode64(cipher_text)) + cipher.final
|
42
|
+
rescue Exception=>e
|
43
|
+
plain_text = nil
|
44
|
+
end
|
45
|
+
return plain_text
|
46
|
+
end
|
47
|
+
|
9
48
|
#Reads the Property Files and returns a Hashes
|
10
49
|
def readProperties filepath
|
11
50
|
props = {}
|
12
51
|
begin
|
13
52
|
propsFile=File.open(filepath, 'r')
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
53
|
+
propsFile.read.each_line do |line|
|
54
|
+
line.strip!
|
55
|
+
if (line[0] != ?# and line[0] != ?=)
|
56
|
+
i = line.index('=')
|
57
|
+
if (i)
|
58
|
+
props[line[0..i - 1].strip] = line[i + 1..-1].strip
|
59
|
+
else
|
60
|
+
props[line] = ''
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
propsFile.close
|
25
65
|
rescue Exception=>e
|
26
66
|
@log.info "Problem in Reading Property File : #{e.message} "
|
27
67
|
@log.error "#{e.backtrace}"
|
28
|
-
ensure
|
29
|
-
propsFile.close
|
30
68
|
end
|
31
69
|
props
|
32
70
|
end
|
@@ -126,5 +164,29 @@ module ManageEngine
|
|
126
164
|
qry
|
127
165
|
end
|
128
166
|
|
167
|
+
def formatStacktrace(stacktrace)
|
168
|
+
strace = Array.new
|
169
|
+
|
170
|
+
if (stacktrace != nil)
|
171
|
+
begin
|
172
|
+
stacktrace.each do |stackelement|
|
173
|
+
temp = Array.new
|
174
|
+
temp[0] = stackelement
|
175
|
+
temp[1] = ""
|
176
|
+
temp[2] = ""
|
177
|
+
temp[3] = ""
|
178
|
+
strace.push(temp)
|
179
|
+
if (strace.size == 10)
|
180
|
+
break;
|
181
|
+
end
|
182
|
+
end
|
183
|
+
rescue Exception=>e
|
184
|
+
@log.logException "Error while formatting stack trace. #{e.message}", e
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
strace
|
189
|
+
end
|
190
|
+
|
129
191
|
end#c
|
130
192
|
end#m
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module ManageEngine
|
2
|
+
class TransactionUtil
|
3
|
+
|
4
|
+
def initialize
|
5
|
+
@obj = ManageEngine::APMObjectHolder.instance
|
6
|
+
end
|
7
|
+
|
8
|
+
def normalizeName(txnName)
|
9
|
+
if (txnName != nil)
|
10
|
+
txnName.gsub!(/\/\d+/, "/*") # Replace all numbers with *
|
11
|
+
# Transaction merge patterns - provided by user
|
12
|
+
@obj.config.url_merge_pattern.each do |key, val|
|
13
|
+
if (txnName.match(key) != nil)
|
14
|
+
txnName=val
|
15
|
+
break
|
16
|
+
end
|
17
|
+
end # do
|
18
|
+
end # if (txnName != nil)
|
19
|
+
txnName
|
20
|
+
end # def normalizeName
|
21
|
+
|
22
|
+
def listen?(txnName)
|
23
|
+
if (txnName != nil)
|
24
|
+
@obj.config.txn_skip_listen.each do |pattern|
|
25
|
+
pattern = pattern.start_with?('.*') ? pattern : ('.' + pattern)
|
26
|
+
if (txnName.match(pattern) != nil)
|
27
|
+
return false
|
28
|
+
end
|
29
|
+
end # do
|
30
|
+
end
|
31
|
+
true
|
32
|
+
end # def listen?
|
33
|
+
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# Holds the major and minor versions of the agent
|
2
|
+
# These values are used in gemspec and in agent communication
|
3
|
+
# This is one point change, no need to update version numbers at multiple places
|
4
|
+
#
|
5
|
+
# NOTE: Changing version in 'VERSION' file is optional.
|
6
|
+
|
7
|
+
module ManageEngine
|
8
|
+
class APMInsight
|
9
|
+
VERSION = '1.8.8'
|
10
|
+
MAJOR_VERSION = '1.8'
|
11
|
+
MINOR_VERSION = '8'
|
12
|
+
end
|
13
|
+
end
|
data/lib/apminsight.rb
CHANGED
metadata
CHANGED
@@ -1,134 +1,170 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: apminsight
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 8
|
8
|
+
- 8
|
9
|
+
version: 1.8.8
|
6
10
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
-
|
11
|
+
authors:
|
12
|
+
- Adithyan P
|
9
13
|
autorequire:
|
10
14
|
bindir: bin
|
11
15
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
16
|
+
|
17
|
+
date: 2024-01-31 00:00:00 +05:30
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
15
21
|
name: shoulda
|
16
|
-
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
17
24
|
none: false
|
18
|
-
requirements:
|
19
|
-
- -
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
version: "0"
|
22
31
|
type: :development
|
23
|
-
|
24
|
-
|
25
|
-
- !ruby/object:Gem::Dependency
|
32
|
+
version_requirements: *id001
|
33
|
+
- !ruby/object:Gem::Dependency
|
26
34
|
name: bundler
|
27
|
-
|
35
|
+
prerelease: false
|
36
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
28
37
|
none: false
|
29
|
-
requirements:
|
38
|
+
requirements:
|
30
39
|
- - ~>
|
31
|
-
- !ruby/object:Gem::Version
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
segments:
|
42
|
+
- 1
|
43
|
+
- 0
|
44
|
+
- 0
|
32
45
|
version: 1.0.0
|
33
46
|
type: :development
|
34
|
-
|
35
|
-
|
36
|
-
- !ruby/object:Gem::Dependency
|
47
|
+
version_requirements: *id002
|
48
|
+
- !ruby/object:Gem::Dependency
|
37
49
|
name: jeweler
|
38
|
-
|
50
|
+
prerelease: false
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
39
52
|
none: false
|
40
|
-
requirements:
|
53
|
+
requirements:
|
41
54
|
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
segments:
|
57
|
+
- 1
|
58
|
+
- 6
|
59
|
+
- 4
|
43
60
|
version: 1.6.4
|
44
61
|
type: :development
|
45
|
-
|
46
|
-
|
47
|
-
- !ruby/object:Gem::Dependency
|
62
|
+
version_requirements: *id003
|
63
|
+
- !ruby/object:Gem::Dependency
|
48
64
|
name: rcov
|
49
|
-
|
65
|
+
prerelease: false
|
66
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
50
67
|
none: false
|
51
|
-
requirements:
|
52
|
-
- -
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
segments:
|
72
|
+
- 0
|
73
|
+
version: "0"
|
55
74
|
type: :development
|
56
|
-
|
57
|
-
|
58
|
-
- !ruby/object:Gem::Dependency
|
75
|
+
version_requirements: *id004
|
76
|
+
- !ruby/object:Gem::Dependency
|
59
77
|
name: rails
|
60
|
-
|
78
|
+
prerelease: false
|
79
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
61
80
|
none: false
|
62
|
-
requirements:
|
63
|
-
- -
|
64
|
-
- !ruby/object:Gem::Version
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
segments:
|
85
|
+
- 3
|
86
|
+
- 0
|
87
|
+
- 0
|
65
88
|
version: 3.0.0
|
66
89
|
type: :development
|
67
|
-
|
68
|
-
|
69
|
-
description: ! 'ManageEngine Applications Manager APM Insight gives you end-to-end
|
70
|
-
web-transaction awareness of Rails applications enabling you to isolate performance
|
71
|
-
issues and resolve them quickly. To monitor Rails application performance, download
|
72
|
-
and deploy Applications Manager''s Ruby agent(apminsight) in your Application Server.
|
73
|
-
This agent allows you to send information about Ruby applications.
|
74
|
-
|
75
|
-
|
76
|
-
You can install APM Insight Agent via Rubygems or download it from Applications
|
77
|
-
Manager''s website:http://manageengine/products/applications_manager/apm-insight-agent-installation.html'
|
90
|
+
version_requirements: *id005
|
91
|
+
description: "ManageEngine Applications Manager APM Insight 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 Applications Manager's Ruby agent(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 Applications Manager's website: http://www.manageengine.com/products/applications_manager/apm-insight-agent-installation.html"
|
78
92
|
email: apm-insight@zohocorp.com
|
79
93
|
executables: []
|
94
|
+
|
80
95
|
extensions: []
|
81
|
-
|
96
|
+
|
97
|
+
extra_rdoc_files:
|
82
98
|
- LICENSE.txt
|
83
99
|
- README.rdoc
|
84
|
-
files:
|
100
|
+
files:
|
85
101
|
- LICENSE.txt
|
86
102
|
- README.rdoc
|
87
103
|
- Rakefile
|
88
104
|
- VERSION
|
105
|
+
- apm-agent.gemspec
|
89
106
|
- conf/apminsight.conf
|
90
107
|
- lib/apminsight.rb
|
91
108
|
- lib/agent/am_objectholder.rb
|
92
|
-
- lib/agent/
|
109
|
+
- lib/agent/api/custom_tracker.rb
|
93
110
|
- lib/agent/configuration/am_configuration.rb
|
94
|
-
- lib/agent/
|
95
|
-
- lib/agent/
|
96
|
-
- lib/agent/
|
97
|
-
- lib/agent/
|
111
|
+
- lib/agent/handler/custom_api_handler.rb
|
112
|
+
- lib/agent/handler/sequence_book.rb
|
113
|
+
- lib/agent/handler/tracker_handler.rb
|
114
|
+
- lib/agent/logging/am_logger.rb
|
98
115
|
- lib/agent/metrics/am_metricscollector.rb
|
116
|
+
- lib/agent/metrics/am_metricsformatter.rb
|
99
117
|
- lib/agent/metrics/am_metricsparser.rb
|
118
|
+
- lib/agent/metrics/am_metricstore.rb
|
119
|
+
- lib/agent/metrics/exception_record.rb
|
100
120
|
- lib/agent/server/am_agent.rb
|
101
121
|
- lib/agent/server/am_connector.rb
|
102
|
-
- lib/agent/server/
|
122
|
+
- lib/agent/server/instrument/action_view.rb
|
123
|
+
- lib/agent/server/instrument/active_record.rb
|
103
124
|
- lib/agent/server/instrument/am_apm.rb
|
104
125
|
- lib/agent/server/instrument/am_instrumenter.rb
|
105
|
-
|
126
|
+
- lib/agent/server/instrument/environment.rb
|
127
|
+
- lib/agent/server/instrument/rails.rb
|
128
|
+
- lib/agent/server/instrument/sinatra.rb
|
129
|
+
- lib/agent/server/worker/am_worker.rb
|
130
|
+
- lib/agent/trackers/database_tracker.rb
|
131
|
+
- lib/agent/trackers/default_tracker.rb
|
132
|
+
- lib/agent/trackers/root_tracker.rb
|
133
|
+
- lib/agent/util/am_constants.rb
|
134
|
+
- lib/agent/util/am_util.rb
|
135
|
+
- lib/agent/util/transaction_util.rb
|
136
|
+
- lib/agent/version.rb
|
137
|
+
has_rdoc: true
|
138
|
+
homepage: http://www.manageengine.com/products/applications_manager/ruby-webtransaction-monitoring.html
|
106
139
|
licenses: []
|
140
|
+
|
107
141
|
post_install_message:
|
108
142
|
rdoc_options: []
|
109
|
-
|
143
|
+
|
144
|
+
require_paths:
|
110
145
|
- lib
|
111
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
146
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
147
|
none: false
|
113
|
-
requirements:
|
114
|
-
- -
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
|
117
|
-
|
148
|
+
requirements:
|
149
|
+
- - ">="
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
segments:
|
152
|
+
- 0
|
153
|
+
version: "0"
|
154
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
155
|
none: false
|
119
|
-
requirements:
|
120
|
-
- -
|
121
|
-
- !ruby/object:Gem::Version
|
122
|
-
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
segments:
|
160
|
+
- 0
|
161
|
+
version: "0"
|
123
162
|
requirements: []
|
163
|
+
|
124
164
|
rubyforge_project:
|
125
|
-
rubygems_version: 1.7
|
165
|
+
rubygems_version: 1.3.7
|
126
166
|
signing_key:
|
127
167
|
specification_version: 3
|
128
|
-
summary:
|
129
|
-
awareness of Rails applications enabling you to isolate performance issues and resolve
|
130
|
-
them quickly. To monitor Rails application performance, download and deploy Applications
|
131
|
-
Manager''s Ruby agent(apminsight) in your Application Server. This agent allows
|
132
|
-
you to send information about Ruby applications. You can install APM Insight Agent
|
133
|
-
via Rubygems or download it from Applications Manager''s website : http://manageengine/products/applications_manager/apm-insight-agent-installation.html'
|
168
|
+
summary: "ManageEngine Applications Manager APM Insight 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 Applications Manager's Ruby agent(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 Applications Manager's website : http://www.manageengine.com/products/applications_manager/apm-insight-agent-installation.html"
|
134
169
|
test_files: []
|
170
|
+
|