func (c httpClient) StopService(serviceName string) error {
    response, err := c.makeRequest(c.monitURL(serviceName), "POST", "action=stop")
    if err != nil {
        return bosherr.WrapError(err, "Sending stop request to monit")
    }