class Avo::Services::DebugService

def get_thread_count

def get_thread_count
  Thread.list.count { |thread| thread.status == "run" }
rescue => e
  e
end