public async Task <bool> IsHealthy()
        {
            try
            {
                var status = await _client.GetResponseCode(new GetHealthRequest());

                return(status == HttpStatusCode.OK);
            }
            catch
            {
                return(false);
            }
        }