apminsight 0.0.3
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/LICENSE.txt +60 -0
- data/README.rdoc +69 -0
- data/Rakefile +63 -0
- data/VERSION +1 -0
- data/conf/apminsight.conf +105 -0
- data/lib/agent/am_objectholder.rb +66 -0
- data/lib/agent/configuration/am_configuration.rb +190 -0
- data/lib/agent/logging/am_logger.rb +109 -0
- data/lib/agent/metrics/am_metricscollector.rb +30 -0
- data/lib/agent/metrics/am_metricsformatter.rb +263 -0
- data/lib/agent/metrics/am_metricsparser.rb +540 -0
- data/lib/agent/metrics/am_metricstore.rb +29 -0
- data/lib/agent/server/am_agent.rb +108 -0
- data/lib/agent/server/am_connector.rb +195 -0
- data/lib/agent/server/instrument/am_apm.rb +99 -0
- data/lib/agent/server/instrument/am_instrumenter.rb +43 -0
- data/lib/agent/server/worker/am_worker.rb +254 -0
- data/lib/agent/util/am_constants.rb +64 -0
- data/lib/agent/util/am_util.rb +130 -0
- data/lib/apminsight.rb +5 -0
- metadata +134 -0
metadata
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: apminsight
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Sabarinathan P
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-03-15 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: shoulda
|
16
|
+
requirement: &27137952 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *27137952
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: bundler
|
27
|
+
requirement: &27137664 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ~>
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.0.0
|
33
|
+
type: :development
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *27137664
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: jeweler
|
38
|
+
requirement: &27137376 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ~>
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.6.4
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *27137376
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rcov
|
49
|
+
requirement: &27137088 !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
type: :development
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: *27137088
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: rails
|
60
|
+
requirement: &27136800 !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 3.0.0
|
66
|
+
type: :development
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: *27136800
|
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'
|
78
|
+
email: apm-insight@zohocorp.com
|
79
|
+
executables: []
|
80
|
+
extensions: []
|
81
|
+
extra_rdoc_files:
|
82
|
+
- LICENSE.txt
|
83
|
+
- README.rdoc
|
84
|
+
files:
|
85
|
+
- LICENSE.txt
|
86
|
+
- README.rdoc
|
87
|
+
- Rakefile
|
88
|
+
- VERSION
|
89
|
+
- conf/apminsight.conf
|
90
|
+
- lib/apminsight.rb
|
91
|
+
- lib/agent/am_objectholder.rb
|
92
|
+
- lib/agent/logging/am_logger.rb
|
93
|
+
- lib/agent/configuration/am_configuration.rb
|
94
|
+
- lib/agent/util/am_constants.rb
|
95
|
+
- lib/agent/util/am_util.rb
|
96
|
+
- lib/agent/metrics/am_metricsformatter.rb
|
97
|
+
- lib/agent/metrics/am_metricstore.rb
|
98
|
+
- lib/agent/metrics/am_metricscollector.rb
|
99
|
+
- lib/agent/metrics/am_metricsparser.rb
|
100
|
+
- lib/agent/server/am_agent.rb
|
101
|
+
- lib/agent/server/am_connector.rb
|
102
|
+
- lib/agent/server/worker/am_worker.rb
|
103
|
+
- lib/agent/server/instrument/am_apm.rb
|
104
|
+
- lib/agent/server/instrument/am_instrumenter.rb
|
105
|
+
homepage: http://www.manageengine.com
|
106
|
+
licenses: []
|
107
|
+
post_install_message:
|
108
|
+
rdoc_options: []
|
109
|
+
require_paths:
|
110
|
+
- lib
|
111
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
|
+
none: false
|
113
|
+
requirements:
|
114
|
+
- - ! '>='
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
none: false
|
119
|
+
requirements:
|
120
|
+
- - ! '>='
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
requirements: []
|
124
|
+
rubyforge_project:
|
125
|
+
rubygems_version: 1.7.2
|
126
|
+
signing_key:
|
127
|
+
specification_version: 3
|
128
|
+
summary: ! 'ManageEngine Applications Manager APM Insight gives you end-to-end web-transaction
|
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'
|
134
|
+
test_files: []
|