io.dekorate.prometheus.handler.ServiceMonitorHandler Maven / Gradle / Ivy
/**
* Copyright 2018 The original authors.
*
* 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 io.dekorate.prometheus.handler;
import io.dekorate.Handler;
import io.dekorate.Resources;
import io.dekorate.kubernetes.config.Configuration;
import io.dekorate.prometheus.config.EditableServiceMonitorConfig;
import io.dekorate.prometheus.config.ServiceMonitorConfig;
import io.dekorate.prometheus.model.ServiceMonitorBuilder;
public class ServiceMonitorHandler implements Handler {
private final Resources resources;
public ServiceMonitorHandler(Resources resources) {
this.resources = resources;
}
@Override
public int order() {
return 450;
}
@Override
public void handle(ServiceMonitorConfig config) {
resources.add(new ServiceMonitorBuilder()
.withNewMetadata()
.withName(resources.getName())
.withLabels(resources.getLabels())
.endMetadata()
.withNewSpec()
.withNewSelector()
.addToMatchLabels(resources.getLabels())
.endSelector()
.addNewEndpoint()
.withPort(config.getPort())
.withNewPath(config.getPath())
.withInterval(config.getInterval() + "s")
.withHonorLabels(config.isHonorLabels())
.endEndpoint()
.endSpec()
.build());
}
@Override
public boolean canHandle(Class extends Configuration> type) {
return type.equals(ServiceMonitorConfig.class) || type.equals(EditableServiceMonitorConfig.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy