164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
# File 'lib/agent/configuration/am_configuration.rb', line 164
def initValues
@apmport=8080
@appname="My Application"
@proxyneeded = false
@proxy_host="localhost"
@proxy_port=80
@proxy_user=""
@proxy_pass=""
@is_secured=false
@logs_dir="./log"
@connection_retry = 0
@connect_interval = 60
@apdex_t=0.5
@txn_skip_listen=Array.new
@trans_trace_t=2
@sql_trace_t=3
@metric_overflow_t=250
@dbmetric_overflow_t=500
@trace_overflow_t=30
@site24x7url = @obj.constants.site24x7USurl
@delayedStart = false
end
|