![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.druid.emitter.prometheus.PrometheusEmitterConfig Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.druid.emitter.prometheus;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.base.Preconditions;
import org.apache.druid.error.DruidException;
import org.apache.druid.java.util.common.StringUtils;
import org.joda.time.Duration;
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.Map;
import java.util.Objects;
import java.util.regex.Pattern;
/**
*
*/
public class PrometheusEmitterConfig
{
static final Pattern PATTERN = Pattern.compile("[a-zA-Z_:][a-zA-Z0-9_:]*");
@JsonProperty
private final Strategy strategy;
@JsonProperty
private final String namespace;
@JsonProperty
@Nullable
private final String dimensionMapPath;
@JsonProperty
@Nullable
private final Integer port;
@JsonProperty
@Nullable
private final String pushGatewayAddress;
@JsonProperty
@Nullable
private final Integer flushPeriod;
@JsonProperty
private final boolean addHostAsLabel;
@JsonProperty
private final boolean addServiceAsLabel;
@JsonProperty
private final Map extraLabels;
@JsonProperty
private final boolean deletePushGatewayMetricsOnShutdown;
@JsonProperty
private final Duration waitForShutdownDelay;
@JsonCreator
public PrometheusEmitterConfig(
@JsonProperty("strategy") @Nullable Strategy strategy,
@JsonProperty("namespace") @Nullable String namespace,
@JsonProperty("dimensionMapPath") @Nullable String dimensionMapPath,
@JsonProperty("port") @Nullable Integer port,
@JsonProperty("pushGatewayAddress") @Nullable String pushGatewayAddress,
@JsonProperty("addHostAsLabel") boolean addHostAsLabel,
@JsonProperty("addServiceAsLabel") boolean addServiceAsLabel,
@JsonProperty("flushPeriod") Integer flushPeriod,
@JsonProperty("extraLabels") @Nullable Map extraLabels,
@JsonProperty("deletePushGatewayMetricsOnShutdown") @Nullable Boolean deletePushGatewayMetricsOnShutdown,
@JsonProperty("waitForShutdownDelay") @Nullable Long waitForShutdownDelay
)
{
this.strategy = strategy != null ? strategy : Strategy.exporter;
this.namespace = namespace != null ? namespace : "druid";
Preconditions.checkArgument(PATTERN.matcher(this.namespace).matches(), "Invalid namespace " + this.namespace);
if (strategy == Strategy.exporter) {
Preconditions.checkArgument(port != null, "For `exporter` strategy, port must be specified.");
} else if (this.strategy == Strategy.pushgateway) {
Preconditions.checkArgument(pushGatewayAddress != null, "For `pushgateway` strategy, pushGatewayAddress must be specified.");
if (Objects.nonNull(flushPeriod)) {
Preconditions.checkArgument(flushPeriod > 0, "flushPeriod must be greater than 0.");
} else {
flushPeriod = 15;
}
}
this.dimensionMapPath = dimensionMapPath;
this.port = port;
this.pushGatewayAddress = pushGatewayAddress;
this.flushPeriod = flushPeriod;
this.addHostAsLabel = addHostAsLabel;
this.addServiceAsLabel = addServiceAsLabel;
this.extraLabels = extraLabels != null ? extraLabels : Collections.emptyMap();
this.deletePushGatewayMetricsOnShutdown = deletePushGatewayMetricsOnShutdown != null && deletePushGatewayMetricsOnShutdown;
if (waitForShutdownDelay == null) {
this.waitForShutdownDelay = Duration.ZERO;
} else if (waitForShutdownDelay >= 0) {
this.waitForShutdownDelay = Duration.millis(waitForShutdownDelay);
} else {
throw DruidException.forPersona(DruidException.Persona.OPERATOR)
.ofCategory(DruidException.Category.INVALID_INPUT)
.build(
StringUtils.format(
"Invalid value for waitForShutdownDelay[%s] specified, waitForShutdownDelay must be >= 0.",
waitForShutdownDelay
)
);
}
// Validate label names early to prevent Prometheus exceptions later.
for (String key : this.extraLabels.keySet()) {
if (!PATTERN.matcher(key).matches()) {
throw DruidException.forPersona(DruidException.Persona.OPERATOR)
.ofCategory(DruidException.Category.INVALID_INPUT)
.build(
StringUtils.format(
"Invalid metric label name [%s]. Label names must conform to the pattern [%s].",
key,
PATTERN.pattern()
)
);
}
}
}
public String getNamespace()
{
return namespace;
}
public String getDimensionMapPath()
{
return dimensionMapPath;
}
public int getPort()
{
return port;
}
public String getPushGatewayAddress()
{
return pushGatewayAddress;
}
@Nullable
public Integer getFlushPeriod()
{
return flushPeriod;
}
public Strategy getStrategy()
{
return strategy;
}
public boolean isAddHostAsLabel()
{
return addHostAsLabel;
}
public boolean isAddServiceAsLabel()
{
return addServiceAsLabel;
}
public Map getExtraLabels()
{
return extraLabels;
}
public boolean isDeletePushGatewayMetricsOnShutdown()
{
return deletePushGatewayMetricsOnShutdown;
}
public Duration getWaitForShutdownDelay()
{
return waitForShutdownDelay;
}
public enum Strategy
{
exporter, pushgateway
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy