Remove other unused commands in HealthController.

dump relies on the old paster setup, so it doesn't even work
anymore.
This commit is contained in:
Neil Williams
2011-12-22 20:34:27 -08:00
parent 9a6c4369c4
commit ef45362d59
2 changed files with 0 additions and 55 deletions

View File

@@ -146,8 +146,6 @@ def make_map(global_conf={}, app_conf={}):
sort = "")
mc('/health', controller='health', action='health')
mc('/health/:action', controller='health',
requirements=dict(action="threads|dump|sleep"))
mc('/', controller='hot', action='listing')

View File

@@ -24,56 +24,3 @@ class HealthController(MinimalController):
c.dontcache = True
response.headers['Content-Type'] = 'text/plain'
return "i'm still alive!"
@validate(secret=nop('secret'))
def GET_sleep(self, secret):
if not g.shutdown_secret:
self.abort404()
if not secret or secret != g.shutdown_secret:
self.abort403()
from time import sleep
seconds = int(request.GET.get('time', 60))
seconds = min(seconds, 300)
sleep(seconds)
response.headers['Content-Type'] = 'text/plain'
return "slept"
@validate(secret=nop('secret'))
def GET_dump(self, secret):
import sys, traceback, threading
if not g.shutdown_secret:
self.abort404()
if not secret or secret != g.shutdown_secret:
self.abort403()
thread_pool = c.thread_pool
this_thread = threading.current_thread().ident
idle = thread_pool.idle_workers
busy = []
for thread in thread_pool.workers:
if thread.ident not in idle:
busy.append(thread.ident)
output = ''
for thread_id, stack in sys._current_frames().items():
if thread_id == this_thread:
continue
if thread_id not in busy:
continue
output += '%s\n' % thread_id
tb = traceback.extract_stack(stack)
for i, (filename, lineno, fnname, line) in enumerate(tb):
output += (' %(filename)s(%(lineno)d): %(fnname)s\n'
% dict(filename=filename, lineno=lineno, fnname=fnname))
output += (' %(line)s\n' % dict(line=line))
output += "\n"
response.headers['Content-Type'] = 'text/plain'
return output or 'no busy threads'