Skip to content
This repository was archived by the owner on Aug 29, 2018. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 140e3c5

Browse files
Ravi Sankar PentaMiciah
Ravi Sankar Penta
authored andcommittedMay 25, 2016
Option to enable/disable broker stats
Broker - report broker stats as JSON
1 parent feaf88b commit 140e3c5

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed
 

‎broker/conf/broker.conf

+4
Original file line numberDiff line numberDiff line change
@@ -224,3 +224,7 @@ ALLOW_REGION_SELECTION="true"
224224

225225
# Additional rubygems (space seperated) that will be loaded in the broker's Gemfile.
226226
# ADDITIONAL_RUBYGEMS=""
227+
228+
# Enables logging of stats like current request id,
229+
# heap memory, #objects, #symbols for the broker process.
230+
ENABLE_BROKER_STATS="false"

‎broker/config/environments/development.rb

+1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@
121121
:use_predictable_gear_uuids => conf.get_bool("USE_PREDICTABLE_GEAR_UUIDS", false),
122122
:limit_app_name_chars => conf.get("LIMIT_APP_NAME_CHARS", -1).to_i,
123123
:app_advertise_https => conf.get_bool("APP_ADVERTISE_HTTPS", false),
124+
:broker_stats_enabled => conf.get_bool("ENABLE_BROKER_STATS", "false"),
124125
}
125126

126127
config.auth = {

‎broker/config/environments/production.rb

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
:use_predictable_gear_uuids => conf.get_bool("USE_PREDICTABLE_GEAR_UUIDS", false),
111111
:limit_app_name_chars => conf.get("LIMIT_APP_NAME_CHARS", -1).to_i,
112112
:app_advertise_https => conf.get_bool("APP_ADVERTISE_HTTPS", false),
113+
:broker_stats_enabled => conf.get_bool("ENABLE_BROKER_STATS", "false"),
113114
}
114115

115116
config.auth = {

‎broker/config/environments/test.rb

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
:use_predictable_gear_uuids => conf.get_bool("USE_PREDICTABLE_GEAR_UUIDS", false),
120120
:limit_app_name_chars => conf.get("LIMIT_APP_NAME_CHARS", -1).to_i,
121121
:app_advertise_https => conf.get_bool("APP_ADVERTISE_HTTPS", false),
122+
:broker_stats_enabled => conf.get_bool("ENABLE_BROKER_STATS", "false"),
122123
}
123124

124125
config.auth = {

‎controller/lib/openshift/controller/api_responses.rb

+13
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def render_error(status, msg, err_code=nil, field=nil, msg_type=nil, messages=ni
4747
end
4848
@analytics_tracker.track_event(event_name, @domain, @application, {'request_path' => request.fullpath, 'request_method' => request.method, 'status_code' => status, 'error_code' => err_code, 'error_field' => field})
4949
end
50+
log_broker_stats(request.uuid)
5051
respond_with reply, :status => reply.status
5152
end
5253

@@ -225,6 +226,7 @@ def render_success(status, type, data, message=nil, result=nil ,extra_messages=n
225226
else
226227
log_action(action_log_tag, status, true, message, log_args)
227228
end
229+
log_broker_stats(request.uuid)
228230
respond_with reply
229231
end
230232

@@ -277,6 +279,17 @@ def extract_node_messages(ex, code=nil, message=nil, field=nil)
277279
end
278280
[code, message, messages]
279281
end
282+
283+
def log_broker_stats(request_uuid)
284+
if Rails.configuration.openshift[:broker_stats_enabled]
285+
stats = Hash.new
286+
stats[:request_id] = request_uuid
287+
stats[:gc_stat] = GC::stat
288+
stats[:count_objects] = ObjectSpace.count_objects
289+
stats[:count_objects][:T_SYMBOL] = Symbol.all_symbols.size
290+
Rails.logger.info("BROKER_STATS => #{stats.to_json}")
291+
end
292+
end
280293
end
281294
end
282295
end

0 commit comments

Comments
 (0)
This repository has been archived.