All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.spinnaker.gate.services.V2CanaryService.groovy Maven / Gradle / Ivy

There is a newer version: 6.64.0
Show newest version
/*
 * Copyright 2017 Google, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.netflix.spinnaker.gate.services

import static com.netflix.spinnaker.gate.retrofit.UpstreamBadRequest.classifyError

import com.netflix.spinnaker.gate.services.internal.KayentaService
import groovy.transform.CompileStatic
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression
import org.springframework.stereotype.Component
import retrofit.RetrofitError

@Component
@CompileStatic
@ConditionalOnExpression('${services.kayenta.enabled:false}')
class V2CanaryService {

  @Autowired
  KayentaService kayentaService

  List getCredentials() {
    try {
      return kayentaService.getCredentials()
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }

  List listMetricsServiceMetadata(String filter, String metricsAccountName) {
    try {
      return kayentaService.listMetricsServiceMetadata(filter, metricsAccountName)
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }

  List listJudges() {
    try {
      return kayentaService.listJudges()
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }

  Map initiateCanaryWithConfig(Map adhocExecutionRequest,
                               String application,
                               String parentPipelineExecutionId,
                               String metricsAccountName,
                               String storageAccountName) {
    try {
      return kayentaService.initiateCanaryWithConfig(adhocExecutionRequest,
        application,
        parentPipelineExecutionId,
        metricsAccountName,
        storageAccountName)
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }

  Map initiateCanary(String canaryConfigId,
                     Map executionRequest,
                     String application,
                     String parentPipelineExecutionId,
                     String metricsAccountName,
                     String storageAccountName,
                     String configurationAccountName) {
    try {
      return kayentaService.initiateCanary(canaryConfigId,
                                           executionRequest,
                                           application,
                                           parentPipelineExecutionId,
                                           metricsAccountName,
                                           storageAccountName,
                                           configurationAccountName)
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }

  Map getCanaryResults(String canaryExecutionId, String storageAccountName) {
    try {
      return kayentaService.getCanaryResult(canaryExecutionId, storageAccountName)
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }

  List getCanaryResultsByApplication(String application, int limit, int page, String statuses, String storageAccountName) {
    try {
      return kayentaService.getCanaryResultsByApplication(application, limit, page, statuses, storageAccountName)
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }

  List getMetricSetPairList(String metricSetPairListId, String storageAccountName) {
    try {
      return kayentaService.getMetricSetPairList(metricSetPairListId, storageAccountName)
    } catch (RetrofitError error) {
      throw classifyError(error)
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy