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

com.xxl.job.spring.boot.XxlJobMetricsProperties Maven / Gradle / Ivy

package com.xxl.job.spring.boot;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

import java.util.LinkedHashMap;
import java.util.Map;

@ConfigurationProperties(XxlJobMetricsProperties.PREFIX)
@Data
public class XxlJobMetricsProperties {

	public static final String PREFIX = "xxl.job.metrics";

	/**
	 * Whether Enable Xxl Job Metrics.
	 */
	private boolean enabled = false;

	/**
	 * Extra tags for metrics.
	 */
	private Map extraTags = new LinkedHashMap<>(16);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy