use of com.sequenceiq.periscope.api.model.MetricAlertResponse in project cloudbreak by hortonworks.
the class MetricAlertResponseConverter method convert.
@Override
public MetricAlertResponse convert(MetricAlert source) {
MetricAlertResponse json = new MetricAlertResponse();
json.setId(source.getId());
json.setScalingPolicyId(source.getScalingPolicyId());
json.setAlertName(source.getName());
json.setDescription(source.getDescription());
json.setPeriod(source.getPeriod());
json.setAlertDefinition(source.getDefinitionName());
json.setAlertState(source.getAlertState());
if (source.getScalingPolicy() != null) {
json.setScalingPolicy(scalingPolicyRequestConverter.convert(source.getScalingPolicy()));
}
return json;
}
use of com.sequenceiq.periscope.api.model.MetricAlertResponse in project cloudbreak by hortonworks.
the class ClusterConverter method convert.
@Override
public AutoscaleClusterResponse convert(Cluster source) {
AutoscaleClusterResponse json = new AutoscaleClusterResponse(source.getHost(), source.getPort(), source.getAmbariUser(), source.getStackId(), source.isAutoscalingEnabled(), source.getId(), source.getState().name());
if (!source.getMetricAlerts().isEmpty()) {
List<MetricAlertResponse> metricAlerts = metricAlertResponseConverter.convertAllToJson(new ArrayList<>(source.getMetricAlerts()));
json.setMetricAlerts(metricAlerts);
}
if (!source.getTimeAlerts().isEmpty()) {
List<TimeAlertResponse> timeAlertRequests = timeAlertResponseConverter.convertAllToJson(new ArrayList<>(source.getTimeAlerts()));
json.setTimeAlerts(timeAlertRequests);
}
if (!source.getPrometheusAlerts().isEmpty()) {
List<PrometheusAlertResponse> prometheusAlertRequests = prometheusAlertResponseConverter.convertAllToJson(new ArrayList<>(source.getPrometheusAlerts()));
json.setPrometheusAlerts(prometheusAlertRequests);
}
ScalingConfigurationRequest scalingConfig = new ScalingConfigurationRequest(source.getMinSize(), source.getMaxSize(), source.getCoolDown());
json.setScalingConfiguration(scalingConfig);
return json;
}
Aggregations