def cmd_haproxy_stats(self, *argv, **kwargs):
        """
        haproxy.stats[]
        """
        try:
            ha = ECMHASocket()
            return {
                'stats': ha.get_server_stats(),
                'info':  ha.get_server_info()
            }

        except:
            raise Exception("Unable to get config")