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