class Utils::ProbeServer

def docs

def docs
  annotations = self.class.doc_annotations.sort_by(&:first)
  max_size = annotations.map { |a| a.first.size }.max
  annotations.map { |n, v| "#{n.to_s.ljust(max_size + 1)}#{v}" }
end