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

org.macrocloud.kernel.prometheus.data.Service Maven / Gradle / Ivy

package org.macrocloud.kernel.prometheus.data;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Getter;

import java.util.List;
import java.util.Map;

/**
 * model details see https://www.consul.io/api/catalog.html#serviceport
 *
 * @author consul
 */
@Getter
@Builder
public class Service {

	@JsonProperty("Address")
	private String address;

	@JsonProperty("Node")
	private String node;

	@JsonProperty("ServiceAddress")
	private String serviceAddress;

	@JsonProperty("ServiceName")
	private String serviceName;

	@JsonProperty("ServiceID")
	private String serviceId;

	@JsonProperty("ServicePort")
	private int servicePort;

	@JsonProperty("NodeMeta")
	private Map nodeMeta;

	@JsonProperty("ServiceMeta")
	private Map serviceMeta;

	/**
	 * will be empty, eureka does not have the concept of service tags
	 */
	@JsonProperty("ServiceTags")
	private List serviceTags;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy