Ejemplo n.º 1
0
// ListLogs method retrieves activity logs of an alert from OpsGenie.
func (cli *OpsGenieAlertClient) ListLogs(req alerts.ListAlertLogsRequest) (*alerts.ListAlertLogsResponse, error) {
	req.APIKey = cli.apiKey
	resp, err := cli.sendRequest(cli.buildGetRequest(listAlertLogsURL, req))

	if resp == nil {
		return nil, err
	}
	defer resp.Body.Close()

	var listAlertLogsResp alerts.ListAlertLogsResponse

	if err = resp.Body.FromJsonTo(&listAlertLogsResp); err != nil {
		message := "Server response can not be parsed, " + err.Error()
		logging.Logger().Warn(message)
		return nil, errors.New(message)
	}
	return &listAlertLogsResp, nil
}
Ejemplo n.º 2
0
func (cli *OpsGenieAlertClient) ListLogs(req alerts.ListAlertLogsRequest) (*alerts.ListAlertLogsResponse, error) {
	req.ApiKey = cli.apiKey
	// validate the mandatory parameters: apiKey, id/alias
	if req.ApiKey == "" {
		return nil, errors.New("ApiKey is a mandatory field and can not be empty.")
	}
	if req.Id == "" && req.Alias == "" {
		return nil, errors.New("At least either Id or Alias should be set in the request.")
	}
	if req.Id != "" && req.Alias != "" {
		return nil, errors.New("Either Id or Alias should be set in the request not both.")
	}
	v, _ := goquery.Values(req)
	var resp *goreq.Response
	var err error
	for i := 0; i < cli.retries; i++ {
		resp, err = cli.buildRequest("GET", LIST_ALERT_LOGS_URL+"?"+v.Encode(), nil).Do()
		if err == nil {
			break
		}
		time.Sleep(TIME_SLEEP_BETWEEN_REQUESTS)
	}
	if err != nil {
		return nil, errors.New("Could not retrieve the logs: a problem occured while sending the request")
	}
	// check the returning HTTP status code
	httpStatusCode := resp.StatusCode
	if httpStatusCode >= 400 && httpStatusCode < 500 {
		return nil, errors.New(fmt.Sprintf("Client error %d returned", httpStatusCode))
	}
	if httpStatusCode >= 500 {
		return nil, errors.New(fmt.Sprintf("Server error %d returned", httpStatusCode))
	}
	var listAlertLogsResp alerts.ListAlertLogsResponse
	// check if the response can be unmarshalled
	if err = resp.Body.FromJsonTo(&listAlertLogsResp); err != nil {
		return nil, errors.New("Server response can not be parsed.")
	}
	return &listAlertLogsResp, nil
}