update sentinel 1.8.6 => 1.8.8
parent
e5cec7201d
commit
107a38b097
@ -0,0 +1,106 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.discovery.AppInfo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author leyou
|
||||
*/
|
||||
public class ApplicationEntity {
|
||||
|
||||
private Long id;
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
private String app;
|
||||
private Integer appType;
|
||||
private String activeConsole;
|
||||
private Date lastFetch;
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
public Integer getAppType() {
|
||||
return appType;
|
||||
}
|
||||
|
||||
public void setAppType(Integer appType) {
|
||||
this.appType = appType;
|
||||
}
|
||||
|
||||
public String getActiveConsole() {
|
||||
return activeConsole;
|
||||
}
|
||||
|
||||
public Date getLastFetch() {
|
||||
return lastFetch;
|
||||
}
|
||||
|
||||
public void setLastFetch(Date lastFetch) {
|
||||
this.lastFetch = lastFetch;
|
||||
}
|
||||
|
||||
public void setActiveConsole(String activeConsole) {
|
||||
this.activeConsole = activeConsole;
|
||||
}
|
||||
|
||||
public AppInfo toAppInfo() {
|
||||
return new AppInfo(app, appType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ApplicationEntity{" +
|
||||
"id=" + id +
|
||||
", gmtCreate=" + gmtCreate +
|
||||
", gmtModified=" + gmtModified +
|
||||
", app='" + app + '\'' +
|
||||
", activeConsole='" + activeConsole + '\'' +
|
||||
", lastFetch=" + lastFetch +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,125 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.discovery.MachineInfo;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author leyou
|
||||
*/
|
||||
public class MachineEntity {
|
||||
private Long id;
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
private String app;
|
||||
private String ip;
|
||||
private String hostname;
|
||||
private Date timestamp;
|
||||
private Integer port;
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
public String getHostname() {
|
||||
return hostname;
|
||||
}
|
||||
|
||||
public void setHostname(String hostname) {
|
||||
this.hostname = hostname;
|
||||
}
|
||||
|
||||
public Date getTimestamp() {
|
||||
return timestamp;
|
||||
}
|
||||
|
||||
public void setTimestamp(Date timestamp) {
|
||||
this.timestamp = timestamp;
|
||||
}
|
||||
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
public MachineInfo toMachineInfo() {
|
||||
MachineInfo machineInfo = new MachineInfo();
|
||||
|
||||
machineInfo.setApp(app);
|
||||
machineInfo.setHostname(hostname);
|
||||
machineInfo.setIp(ip);
|
||||
machineInfo.setPort(port);
|
||||
machineInfo.setLastHeartbeat(timestamp.getTime());
|
||||
machineInfo.setHeartbeatVersion(timestamp.getTime());
|
||||
|
||||
return machineInfo;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "MachineEntity{" +
|
||||
"id=" + id +
|
||||
", gmtCreate=" + gmtCreate +
|
||||
", gmtModified=" + gmtModified +
|
||||
", app='" + app + '\'' +
|
||||
", ip='" + ip + '\'' +
|
||||
", hostname='" + hostname + '\'' +
|
||||
", timestamp=" + timestamp +
|
||||
", port=" + port +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,219 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author leyou
|
||||
*/
|
||||
public class MetricEntity {
|
||||
private Long id;
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
private String app;
|
||||
/**
|
||||
* 监控信息的时间戳
|
||||
*/
|
||||
private Date timestamp;
|
||||
private String resource;
|
||||
private Long passQps;
|
||||
private Long successQps;
|
||||
private Long blockQps;
|
||||
private Long exceptionQps;
|
||||
|
||||
/**
|
||||
* summary rt of all success exit qps.
|
||||
*/
|
||||
private double rt;
|
||||
|
||||
/**
|
||||
* 本次聚合的总条数
|
||||
*/
|
||||
private int count;
|
||||
|
||||
private int resourceCode;
|
||||
|
||||
public static MetricEntity copyOf(MetricEntity oldEntity) {
|
||||
MetricEntity entity = new MetricEntity();
|
||||
entity.setId(oldEntity.getId());
|
||||
entity.setGmtCreate(oldEntity.getGmtCreate());
|
||||
entity.setGmtModified(oldEntity.getGmtModified());
|
||||
entity.setApp(oldEntity.getApp());
|
||||
entity.setTimestamp(oldEntity.getTimestamp());
|
||||
entity.setResource(oldEntity.getResource());
|
||||
entity.setPassQps(oldEntity.getPassQps());
|
||||
entity.setBlockQps(oldEntity.getBlockQps());
|
||||
entity.setSuccessQps(oldEntity.getSuccessQps());
|
||||
entity.setExceptionQps(oldEntity.getExceptionQps());
|
||||
entity.setRt(oldEntity.getRt());
|
||||
entity.setCount(oldEntity.getCount());
|
||||
return entity;
|
||||
}
|
||||
|
||||
public synchronized void addPassQps(Long passQps) {
|
||||
this.passQps += passQps;
|
||||
}
|
||||
|
||||
public synchronized void addBlockQps(Long blockQps) {
|
||||
this.blockQps += blockQps;
|
||||
}
|
||||
|
||||
public synchronized void addExceptionQps(Long exceptionQps) {
|
||||
this.exceptionQps += exceptionQps;
|
||||
}
|
||||
|
||||
public synchronized void addCount(int count) {
|
||||
this.count += count;
|
||||
}
|
||||
|
||||
public synchronized void addRtAndSuccessQps(double avgRt, Long successQps) {
|
||||
this.rt += avgRt * successQps;
|
||||
this.successQps += successQps;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@link #rt} = {@code avgRt * successQps}
|
||||
*
|
||||
* @param avgRt average rt of {@code successQps}
|
||||
* @param successQps
|
||||
*/
|
||||
public synchronized void setRtAndSuccessQps(double avgRt, Long successQps) {
|
||||
this.rt = avgRt * successQps;
|
||||
this.successQps = successQps;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
public Date getTimestamp() {
|
||||
return timestamp;
|
||||
}
|
||||
|
||||
public void setTimestamp(Date timestamp) {
|
||||
this.timestamp = timestamp;
|
||||
}
|
||||
|
||||
public String getResource() {
|
||||
return resource;
|
||||
}
|
||||
|
||||
public void setResource(String resource) {
|
||||
this.resource = resource;
|
||||
this.resourceCode = resource.hashCode();
|
||||
}
|
||||
|
||||
public Long getPassQps() {
|
||||
return passQps;
|
||||
}
|
||||
|
||||
public void setPassQps(Long passQps) {
|
||||
this.passQps = passQps;
|
||||
}
|
||||
|
||||
public Long getBlockQps() {
|
||||
return blockQps;
|
||||
}
|
||||
|
||||
public void setBlockQps(Long blockQps) {
|
||||
this.blockQps = blockQps;
|
||||
}
|
||||
|
||||
public Long getExceptionQps() {
|
||||
return exceptionQps;
|
||||
}
|
||||
|
||||
public void setExceptionQps(Long exceptionQps) {
|
||||
this.exceptionQps = exceptionQps;
|
||||
}
|
||||
|
||||
public double getRt() {
|
||||
return rt;
|
||||
}
|
||||
|
||||
public void setRt(double rt) {
|
||||
this.rt = rt;
|
||||
}
|
||||
|
||||
public int getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(int count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public int getResourceCode() {
|
||||
return resourceCode;
|
||||
}
|
||||
|
||||
public Long getSuccessQps() {
|
||||
return successQps;
|
||||
}
|
||||
|
||||
public void setSuccessQps(Long successQps) {
|
||||
this.successQps = successQps;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "MetricEntity{" +
|
||||
"id=" + id +
|
||||
", gmtCreate=" + gmtCreate +
|
||||
", gmtModified=" + gmtModified +
|
||||
", app='" + app + '\'' +
|
||||
", timestamp=" + timestamp +
|
||||
", resource='" + resource + '\'' +
|
||||
", passQps=" + passQps +
|
||||
", blockQps=" + blockQps +
|
||||
", successQps=" + successQps +
|
||||
", exceptionQps=" + exceptionQps +
|
||||
", rt=" + rt +
|
||||
", count=" + count +
|
||||
", resourceCode=" + resourceCode +
|
||||
'}';
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,129 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity;
|
||||
|
||||
/**
|
||||
* @author Eric Zhao
|
||||
* @since 0.2.1
|
||||
*/
|
||||
public class SentinelVersion {
|
||||
private int majorVersion;
|
||||
private int minorVersion;
|
||||
private int fixVersion;
|
||||
private String postfix;
|
||||
|
||||
public SentinelVersion() {
|
||||
this(0, 0, 0);
|
||||
}
|
||||
|
||||
public SentinelVersion(int major, int minor, int fix) {
|
||||
this(major, minor, fix, null);
|
||||
}
|
||||
|
||||
public SentinelVersion(int major, int minor, int fix, String postfix) {
|
||||
this.majorVersion = major;
|
||||
this.minorVersion = minor;
|
||||
this.fixVersion = fix;
|
||||
this.postfix = postfix;
|
||||
}
|
||||
|
||||
/**
|
||||
* 000, 000, 000
|
||||
*/
|
||||
public int getFullVersion() {
|
||||
return majorVersion * 1000000 + minorVersion * 1000 + fixVersion;
|
||||
}
|
||||
|
||||
public int getMajorVersion() {
|
||||
return majorVersion;
|
||||
}
|
||||
|
||||
public SentinelVersion setMajorVersion(int majorVersion) {
|
||||
this.majorVersion = majorVersion;
|
||||
return this;
|
||||
}
|
||||
|
||||
public int getMinorVersion() {
|
||||
return minorVersion;
|
||||
}
|
||||
|
||||
public SentinelVersion setMinorVersion(int minorVersion) {
|
||||
this.minorVersion = minorVersion;
|
||||
return this;
|
||||
}
|
||||
|
||||
public int getFixVersion() {
|
||||
return fixVersion;
|
||||
}
|
||||
|
||||
public SentinelVersion setFixVersion(int fixVersion) {
|
||||
this.fixVersion = fixVersion;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getPostfix() {
|
||||
return postfix;
|
||||
}
|
||||
|
||||
public SentinelVersion setPostfix(String postfix) {
|
||||
this.postfix = postfix;
|
||||
return this;
|
||||
}
|
||||
|
||||
public boolean greaterThan(SentinelVersion version) {
|
||||
if (version == null) {
|
||||
return true;
|
||||
}
|
||||
return getFullVersion() > version.getFullVersion();
|
||||
}
|
||||
|
||||
public boolean greaterOrEqual(SentinelVersion version) {
|
||||
if (version == null) {
|
||||
return true;
|
||||
}
|
||||
return getFullVersion() >= version.getFullVersion();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) { return true; }
|
||||
if (o == null || getClass() != o.getClass()) { return false; }
|
||||
|
||||
SentinelVersion that = (SentinelVersion)o;
|
||||
|
||||
if (getFullVersion() != that.getFullVersion()) { return false; }
|
||||
return postfix != null ? postfix.equals(that.postfix) : that.postfix == null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = majorVersion;
|
||||
result = 31 * result + minorVersion;
|
||||
result = 31 * result + fixVersion;
|
||||
result = 31 * result + (postfix != null ? postfix.hashCode() : 0);
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SentinelVersion{" +
|
||||
"majorVersion=" + majorVersion +
|
||||
", minorVersion=" + minorVersion +
|
||||
", fixVersion=" + fixVersion +
|
||||
", postfix='" + postfix + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,209 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.gateway;
|
||||
|
||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiDefinition;
|
||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPathPredicateItem;
|
||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPredicateItem;
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity;
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.RuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.block.Rule;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* Entity for {@link ApiDefinition}.
|
||||
*
|
||||
* @author cdfive
|
||||
* @since 1.7.0
|
||||
*/
|
||||
public class ApiDefinitionEntity implements RuleEntity {
|
||||
|
||||
private Long id;
|
||||
private String app;
|
||||
private String ip;
|
||||
private Integer port;
|
||||
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
|
||||
private String apiName;
|
||||
private Set<com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity> predicateItems;
|
||||
|
||||
public static ApiDefinitionEntity fromApiDefinition(String app, String ip, Integer port, ApiDefinition apiDefinition) {
|
||||
ApiDefinitionEntity entity = new ApiDefinitionEntity();
|
||||
entity.setApp(app);
|
||||
entity.setIp(ip);
|
||||
entity.setPort(port);
|
||||
entity.setApiName(apiDefinition.getApiName());
|
||||
|
||||
Set<com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity> predicateItems = new LinkedHashSet<>();
|
||||
entity.setPredicateItems(predicateItems);
|
||||
|
||||
Set<ApiPredicateItem> apiPredicateItems = apiDefinition.getPredicateItems();
|
||||
if (apiPredicateItems != null) {
|
||||
for (ApiPredicateItem apiPredicateItem : apiPredicateItems) {
|
||||
com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity itemEntity = new com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity();
|
||||
predicateItems.add(itemEntity);
|
||||
ApiPathPredicateItem pathPredicateItem = (ApiPathPredicateItem) apiPredicateItem;
|
||||
itemEntity.setPattern(pathPredicateItem.getPattern());
|
||||
itemEntity.setMatchStrategy(pathPredicateItem.getMatchStrategy());
|
||||
}
|
||||
}
|
||||
|
||||
return entity;
|
||||
}
|
||||
|
||||
public ApiDefinition toApiDefinition() {
|
||||
ApiDefinition apiDefinition = new ApiDefinition();
|
||||
apiDefinition.setApiName(apiName);
|
||||
|
||||
Set<ApiPredicateItem> apiPredicateItems = new LinkedHashSet<>();
|
||||
apiDefinition.setPredicateItems(apiPredicateItems);
|
||||
|
||||
if (predicateItems != null) {
|
||||
for (com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity predicateItem : predicateItems) {
|
||||
ApiPathPredicateItem apiPredicateItem = new ApiPathPredicateItem();
|
||||
apiPredicateItems.add(apiPredicateItem);
|
||||
apiPredicateItem.setMatchStrategy(predicateItem.getMatchStrategy());
|
||||
apiPredicateItem.setPattern(predicateItem.getPattern());
|
||||
}
|
||||
}
|
||||
|
||||
return apiDefinition;
|
||||
}
|
||||
|
||||
public ApiDefinitionEntity() {
|
||||
|
||||
}
|
||||
|
||||
public ApiDefinitionEntity(String apiName, Set<com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity> predicateItems) {
|
||||
this.apiName = apiName;
|
||||
this.predicateItems = predicateItems;
|
||||
}
|
||||
|
||||
public String getApiName() {
|
||||
return apiName;
|
||||
}
|
||||
|
||||
public void setApiName(String apiName) {
|
||||
this.apiName = apiName;
|
||||
}
|
||||
|
||||
public Set<com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.ApiPredicateItemEntity> getPredicateItems() {
|
||||
return predicateItems;
|
||||
}
|
||||
|
||||
public void setPredicateItems(Set<ApiPredicateItemEntity> predicateItems) {
|
||||
this.predicateItems = predicateItems;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Rule toRule() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) { return true; }
|
||||
if (o == null || getClass() != o.getClass()) { return false; }
|
||||
ApiDefinitionEntity entity = (ApiDefinitionEntity) o;
|
||||
return Objects.equals(id, entity.id) &&
|
||||
Objects.equals(app, entity.app) &&
|
||||
Objects.equals(ip, entity.ip) &&
|
||||
Objects.equals(port, entity.port) &&
|
||||
Objects.equals(gmtCreate, entity.gmtCreate) &&
|
||||
Objects.equals(gmtModified, entity.gmtModified) &&
|
||||
Objects.equals(apiName, entity.apiName) &&
|
||||
Objects.equals(predicateItems, entity.predicateItems);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(id, app, ip, port, gmtCreate, gmtModified, apiName, predicateItems);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ApiDefinitionEntity{" +
|
||||
"id=" + id +
|
||||
", app='" + app + '\'' +
|
||||
", ip='" + ip + '\'' +
|
||||
", port=" + port +
|
||||
", gmtCreate=" + gmtCreate +
|
||||
", gmtModified=" + gmtModified +
|
||||
", apiName='" + apiName + '\'' +
|
||||
", predicateItems=" + predicateItems +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.gateway;
|
||||
|
||||
import com.alibaba.csp.sentinel.adapter.gateway.common.api.ApiPredicateItem;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Entity for {@link ApiPredicateItem}.
|
||||
*
|
||||
* @author cdfive
|
||||
* @since 1.7.0
|
||||
*/
|
||||
public class ApiPredicateItemEntity {
|
||||
|
||||
private String pattern;
|
||||
|
||||
private Integer matchStrategy;
|
||||
|
||||
public ApiPredicateItemEntity() {
|
||||
}
|
||||
|
||||
public ApiPredicateItemEntity(String pattern, int matchStrategy) {
|
||||
this.pattern = pattern;
|
||||
this.matchStrategy = matchStrategy;
|
||||
}
|
||||
|
||||
public String getPattern() {
|
||||
return pattern;
|
||||
}
|
||||
|
||||
public void setPattern(String pattern) {
|
||||
this.pattern = pattern;
|
||||
}
|
||||
|
||||
public Integer getMatchStrategy() {
|
||||
return matchStrategy;
|
||||
}
|
||||
|
||||
public void setMatchStrategy(Integer matchStrategy) {
|
||||
this.matchStrategy = matchStrategy;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) { return true; }
|
||||
if (o == null || getClass() != o.getClass()) { return false; }
|
||||
ApiPredicateItemEntity that = (ApiPredicateItemEntity) o;
|
||||
return Objects.equals(pattern, that.pattern) &&
|
||||
Objects.equals(matchStrategy, that.matchStrategy);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(pattern, matchStrategy);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ApiPredicateItemEntity{" +
|
||||
"pattern='" + pattern + '\'' +
|
||||
", matchStrategy=" + matchStrategy +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,355 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.gateway;
|
||||
|
||||
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayFlowRule;
|
||||
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayParamFlowItem;
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.gateway.GatewayParamFlowItemEntity;
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.RuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.block.Rule;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Entity for {@link GatewayFlowRule}.
|
||||
*
|
||||
* @author cdfive
|
||||
* @since 1.7.0
|
||||
*/
|
||||
public class GatewayFlowRuleEntity implements RuleEntity {
|
||||
|
||||
/**间隔单位*/
|
||||
/**0-秒*/
|
||||
public static final int INTERVAL_UNIT_SECOND = 0;
|
||||
/**1-分*/
|
||||
public static final int INTERVAL_UNIT_MINUTE = 1;
|
||||
/**2-时*/
|
||||
public static final int INTERVAL_UNIT_HOUR = 2;
|
||||
/**3-天*/
|
||||
public static final int INTERVAL_UNIT_DAY = 3;
|
||||
|
||||
private Long id;
|
||||
private String app;
|
||||
private String ip;
|
||||
private Integer port;
|
||||
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
|
||||
private String resource;
|
||||
private Integer resourceMode;
|
||||
|
||||
private Integer grade;
|
||||
private Double count;
|
||||
private Long interval;
|
||||
private Integer intervalUnit;
|
||||
|
||||
private Integer controlBehavior;
|
||||
private Integer burst;
|
||||
|
||||
private Integer maxQueueingTimeoutMs;
|
||||
|
||||
private GatewayParamFlowItemEntity paramItem;
|
||||
|
||||
public static Long calIntervalSec(Long interval, Integer intervalUnit) {
|
||||
switch (intervalUnit) {
|
||||
case INTERVAL_UNIT_SECOND:
|
||||
return interval;
|
||||
case INTERVAL_UNIT_MINUTE:
|
||||
return interval * 60;
|
||||
case INTERVAL_UNIT_HOUR:
|
||||
return interval * 60 * 60;
|
||||
case INTERVAL_UNIT_DAY:
|
||||
return interval * 60 * 60 * 24;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
throw new IllegalArgumentException("Invalid intervalUnit: " + intervalUnit);
|
||||
}
|
||||
|
||||
public static Object[] parseIntervalSec(Long intervalSec) {
|
||||
if (intervalSec % (60 * 60 * 24) == 0) {
|
||||
return new Object[] {intervalSec / (60 * 60 * 24), INTERVAL_UNIT_DAY};
|
||||
}
|
||||
|
||||
if (intervalSec % (60 * 60 ) == 0) {
|
||||
return new Object[] {intervalSec / (60 * 60), INTERVAL_UNIT_HOUR};
|
||||
}
|
||||
|
||||
if (intervalSec % 60 == 0) {
|
||||
return new Object[] {intervalSec / 60, INTERVAL_UNIT_MINUTE};
|
||||
}
|
||||
|
||||
return new Object[] {intervalSec, INTERVAL_UNIT_SECOND};
|
||||
}
|
||||
|
||||
public GatewayFlowRule toGatewayFlowRule() {
|
||||
GatewayFlowRule rule = new GatewayFlowRule();
|
||||
rule.setResource(resource);
|
||||
rule.setResourceMode(resourceMode);
|
||||
|
||||
rule.setGrade(grade);
|
||||
rule.setCount(count);
|
||||
rule.setIntervalSec(calIntervalSec(interval, intervalUnit));
|
||||
|
||||
rule.setControlBehavior(controlBehavior);
|
||||
|
||||
if (burst != null) {
|
||||
rule.setBurst(burst);
|
||||
}
|
||||
|
||||
if (maxQueueingTimeoutMs != null) {
|
||||
rule.setMaxQueueingTimeoutMs(maxQueueingTimeoutMs);
|
||||
}
|
||||
|
||||
if (paramItem != null) {
|
||||
GatewayParamFlowItem ruleItem = new GatewayParamFlowItem();
|
||||
rule.setParamItem(ruleItem);
|
||||
ruleItem.setParseStrategy(paramItem.getParseStrategy());
|
||||
ruleItem.setFieldName(paramItem.getFieldName());
|
||||
ruleItem.setPattern(paramItem.getPattern());
|
||||
|
||||
if (paramItem.getMatchStrategy() != null) {
|
||||
ruleItem.setMatchStrategy(paramItem.getMatchStrategy());
|
||||
}
|
||||
}
|
||||
|
||||
return rule;
|
||||
}
|
||||
|
||||
public static GatewayFlowRuleEntity fromGatewayFlowRule(String app, String ip, Integer port, GatewayFlowRule rule) {
|
||||
GatewayFlowRuleEntity entity = new GatewayFlowRuleEntity();
|
||||
entity.setApp(app);
|
||||
entity.setIp(ip);
|
||||
entity.setPort(port);
|
||||
|
||||
entity.setResource(rule.getResource());
|
||||
entity.setResourceMode(rule.getResourceMode());
|
||||
|
||||
entity.setGrade(rule.getGrade());
|
||||
entity.setCount(rule.getCount());
|
||||
Object[] intervalSecResult = parseIntervalSec(rule.getIntervalSec());
|
||||
entity.setInterval((Long) intervalSecResult[0]);
|
||||
entity.setIntervalUnit((Integer) intervalSecResult[1]);
|
||||
|
||||
entity.setControlBehavior(rule.getControlBehavior());
|
||||
entity.setBurst(rule.getBurst());
|
||||
entity.setMaxQueueingTimeoutMs(rule.getMaxQueueingTimeoutMs());
|
||||
|
||||
GatewayParamFlowItem paramItem = rule.getParamItem();
|
||||
if (paramItem != null) {
|
||||
GatewayParamFlowItemEntity itemEntity = new GatewayParamFlowItemEntity();
|
||||
entity.setParamItem(itemEntity);
|
||||
itemEntity.setParseStrategy(paramItem.getParseStrategy());
|
||||
itemEntity.setFieldName(paramItem.getFieldName());
|
||||
itemEntity.setPattern(paramItem.getPattern());
|
||||
itemEntity.setMatchStrategy(paramItem.getMatchStrategy());
|
||||
}
|
||||
|
||||
return entity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Rule toRule() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
public GatewayParamFlowItemEntity getParamItem() {
|
||||
return paramItem;
|
||||
}
|
||||
|
||||
public void setParamItem(GatewayParamFlowItemEntity paramItem) {
|
||||
this.paramItem = paramItem;
|
||||
}
|
||||
|
||||
public String getResource() {
|
||||
return resource;
|
||||
}
|
||||
|
||||
public void setResource(String resource) {
|
||||
this.resource = resource;
|
||||
}
|
||||
|
||||
public Integer getResourceMode() {
|
||||
return resourceMode;
|
||||
}
|
||||
|
||||
public void setResourceMode(Integer resourceMode) {
|
||||
this.resourceMode = resourceMode;
|
||||
}
|
||||
|
||||
public Integer getGrade() {
|
||||
return grade;
|
||||
}
|
||||
|
||||
public void setGrade(Integer grade) {
|
||||
this.grade = grade;
|
||||
}
|
||||
|
||||
public Double getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(Double count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public Long getInterval() {
|
||||
return interval;
|
||||
}
|
||||
|
||||
public void setInterval(Long interval) {
|
||||
this.interval = interval;
|
||||
}
|
||||
|
||||
public Integer getIntervalUnit() {
|
||||
return intervalUnit;
|
||||
}
|
||||
|
||||
public void setIntervalUnit(Integer intervalUnit) {
|
||||
this.intervalUnit = intervalUnit;
|
||||
}
|
||||
|
||||
public Integer getControlBehavior() {
|
||||
return controlBehavior;
|
||||
}
|
||||
|
||||
public void setControlBehavior(Integer controlBehavior) {
|
||||
this.controlBehavior = controlBehavior;
|
||||
}
|
||||
|
||||
public Integer getBurst() {
|
||||
return burst;
|
||||
}
|
||||
|
||||
public void setBurst(Integer burst) {
|
||||
this.burst = burst;
|
||||
}
|
||||
|
||||
public Integer getMaxQueueingTimeoutMs() {
|
||||
return maxQueueingTimeoutMs;
|
||||
}
|
||||
|
||||
public void setMaxQueueingTimeoutMs(Integer maxQueueingTimeoutMs) {
|
||||
this.maxQueueingTimeoutMs = maxQueueingTimeoutMs;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) { return true; }
|
||||
if (o == null || getClass() != o.getClass()) { return false; }
|
||||
GatewayFlowRuleEntity that = (GatewayFlowRuleEntity) o;
|
||||
return Objects.equals(id, that.id) &&
|
||||
Objects.equals(app, that.app) &&
|
||||
Objects.equals(ip, that.ip) &&
|
||||
Objects.equals(port, that.port) &&
|
||||
Objects.equals(gmtCreate, that.gmtCreate) &&
|
||||
Objects.equals(gmtModified, that.gmtModified) &&
|
||||
Objects.equals(resource, that.resource) &&
|
||||
Objects.equals(resourceMode, that.resourceMode) &&
|
||||
Objects.equals(grade, that.grade) &&
|
||||
Objects.equals(count, that.count) &&
|
||||
Objects.equals(interval, that.interval) &&
|
||||
Objects.equals(intervalUnit, that.intervalUnit) &&
|
||||
Objects.equals(controlBehavior, that.controlBehavior) &&
|
||||
Objects.equals(burst, that.burst) &&
|
||||
Objects.equals(maxQueueingTimeoutMs, that.maxQueueingTimeoutMs) &&
|
||||
Objects.equals(paramItem, that.paramItem);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(id, app, ip, port, gmtCreate, gmtModified, resource, resourceMode, grade, count, interval, intervalUnit, controlBehavior, burst, maxQueueingTimeoutMs, paramItem);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "GatewayFlowRuleEntity{" +
|
||||
"id=" + id +
|
||||
", app='" + app + '\'' +
|
||||
", ip='" + ip + '\'' +
|
||||
", port=" + port +
|
||||
", gmtCreate=" + gmtCreate +
|
||||
", gmtModified=" + gmtModified +
|
||||
", resource='" + resource + '\'' +
|
||||
", resourceMode=" + resourceMode +
|
||||
", grade=" + grade +
|
||||
", count=" + count +
|
||||
", interval=" + interval +
|
||||
", intervalUnit=" + intervalUnit +
|
||||
", controlBehavior=" + controlBehavior +
|
||||
", burst=" + burst +
|
||||
", maxQueueingTimeoutMs=" + maxQueueingTimeoutMs +
|
||||
", paramItem=" + paramItem +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,95 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.gateway;
|
||||
|
||||
import com.alibaba.csp.sentinel.adapter.gateway.common.rule.GatewayParamFlowItem;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Entity for {@link GatewayParamFlowItem}.
|
||||
*
|
||||
* @author cdfive
|
||||
* @since 1.7.0
|
||||
*/
|
||||
public class GatewayParamFlowItemEntity {
|
||||
|
||||
private Integer parseStrategy;
|
||||
|
||||
private String fieldName;
|
||||
|
||||
private String pattern;
|
||||
|
||||
private Integer matchStrategy;
|
||||
|
||||
public Integer getParseStrategy() {
|
||||
return parseStrategy;
|
||||
}
|
||||
|
||||
public void setParseStrategy(Integer parseStrategy) {
|
||||
this.parseStrategy = parseStrategy;
|
||||
}
|
||||
|
||||
public String getFieldName() {
|
||||
return fieldName;
|
||||
}
|
||||
|
||||
public void setFieldName(String fieldName) {
|
||||
this.fieldName = fieldName;
|
||||
}
|
||||
|
||||
public String getPattern() {
|
||||
return pattern;
|
||||
}
|
||||
|
||||
public void setPattern(String pattern) {
|
||||
this.pattern = pattern;
|
||||
}
|
||||
|
||||
public Integer getMatchStrategy() {
|
||||
return matchStrategy;
|
||||
}
|
||||
|
||||
public void setMatchStrategy(Integer matchStrategy) {
|
||||
this.matchStrategy = matchStrategy;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) { return true; }
|
||||
if (o == null || getClass() != o.getClass()) { return false; }
|
||||
GatewayParamFlowItemEntity that = (GatewayParamFlowItemEntity) o;
|
||||
return Objects.equals(parseStrategy, that.parseStrategy) &&
|
||||
Objects.equals(fieldName, that.fieldName) &&
|
||||
Objects.equals(pattern, that.pattern) &&
|
||||
Objects.equals(matchStrategy, that.matchStrategy);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(parseStrategy, fieldName, pattern, matchStrategy);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "GatewayParamFlowItemEntity{" +
|
||||
"parseStrategy=" + parseStrategy +
|
||||
", fieldName='" + fieldName + '\'' +
|
||||
", pattern='" + pattern + '\'' +
|
||||
", matchStrategy=" + matchStrategy +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,112 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.rule;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.RuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.block.AbstractRule;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author Eric Zhao
|
||||
* @since 0.2.1
|
||||
*/
|
||||
public abstract class AbstractRuleEntity<T extends AbstractRule> implements RuleEntity {
|
||||
|
||||
protected Long id;
|
||||
|
||||
protected String app;
|
||||
protected String ip;
|
||||
protected Integer port;
|
||||
|
||||
protected T rule;
|
||||
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
|
||||
@Override
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public AbstractRuleEntity<T> setApp(String app) {
|
||||
this.app = app;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public AbstractRuleEntity<T> setIp(String ip) {
|
||||
this.ip = ip;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public AbstractRuleEntity<T> setPort(Integer port) {
|
||||
this.port = port;
|
||||
return this;
|
||||
}
|
||||
|
||||
public T getRule() {
|
||||
return rule;
|
||||
}
|
||||
|
||||
public AbstractRuleEntity<T> setRule(T rule) {
|
||||
this.rule = rule;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public AbstractRuleEntity<T> setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public AbstractRuleEntity<T> setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public T toRule() {
|
||||
return rule;
|
||||
}
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.rule;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.AbstractRuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.block.authority.AuthorityRule;
|
||||
import com.alibaba.csp.sentinel.util.AssertUtil;
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
|
||||
/**
|
||||
* @author Eric Zhao
|
||||
* @since 0.2.1
|
||||
*/
|
||||
public class AuthorityRuleEntity extends AbstractRuleEntity<AuthorityRule> {
|
||||
|
||||
public AuthorityRuleEntity() {
|
||||
}
|
||||
|
||||
public AuthorityRuleEntity(AuthorityRule authorityRule) {
|
||||
AssertUtil.notNull(authorityRule, "Authority rule should not be null");
|
||||
this.rule = authorityRule;
|
||||
}
|
||||
|
||||
public static AuthorityRuleEntity fromAuthorityRule(String app, String ip, Integer port, AuthorityRule rule) {
|
||||
AuthorityRuleEntity entity = new AuthorityRuleEntity(rule);
|
||||
entity.setApp(app);
|
||||
entity.setIp(ip);
|
||||
entity.setPort(port);
|
||||
return entity;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public String getLimitApp() {
|
||||
return rule.getLimitApp();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public String getResource() {
|
||||
return rule.getResource();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public int getStrategy() {
|
||||
return rule.getStrategy();
|
||||
}
|
||||
}
|
@ -0,0 +1,203 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.rule;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.RuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.block.degrade.DegradeRule;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author leyou
|
||||
*/
|
||||
public class DegradeRuleEntity implements RuleEntity {
|
||||
|
||||
private Long id;
|
||||
private String app;
|
||||
|
||||
private String ip;
|
||||
private Integer port;
|
||||
|
||||
private String resource;
|
||||
private String limitApp;
|
||||
private Double count;
|
||||
private Integer timeWindow;
|
||||
private Integer grade;
|
||||
private Integer minRequestAmount;
|
||||
private Double slowRatioThreshold;
|
||||
private Integer statIntervalMs;
|
||||
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
|
||||
public static DegradeRuleEntity fromDegradeRule(String app, String ip, Integer port, DegradeRule rule) {
|
||||
DegradeRuleEntity entity = new DegradeRuleEntity();
|
||||
entity.setApp(app);
|
||||
entity.setIp(ip);
|
||||
entity.setPort(port);
|
||||
entity.setResource(rule.getResource());
|
||||
entity.setLimitApp(rule.getLimitApp());
|
||||
entity.setCount(rule.getCount());
|
||||
entity.setTimeWindow(rule.getTimeWindow());
|
||||
entity.setGrade(rule.getGrade());
|
||||
entity.setMinRequestAmount(rule.getMinRequestAmount());
|
||||
entity.setSlowRatioThreshold(rule.getSlowRatioThreshold());
|
||||
entity.setStatIntervalMs(rule.getStatIntervalMs());
|
||||
return entity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
public String getResource() {
|
||||
return resource;
|
||||
}
|
||||
|
||||
public void setResource(String resource) {
|
||||
this.resource = resource;
|
||||
}
|
||||
|
||||
public String getLimitApp() {
|
||||
return limitApp;
|
||||
}
|
||||
|
||||
public void setLimitApp(String limitApp) {
|
||||
this.limitApp = limitApp;
|
||||
}
|
||||
|
||||
public Double getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(Double count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public Integer getTimeWindow() {
|
||||
return timeWindow;
|
||||
}
|
||||
|
||||
public void setTimeWindow(Integer timeWindow) {
|
||||
this.timeWindow = timeWindow;
|
||||
}
|
||||
|
||||
public Integer getGrade() {
|
||||
return grade;
|
||||
}
|
||||
|
||||
public void setGrade(Integer grade) {
|
||||
this.grade = grade;
|
||||
}
|
||||
|
||||
public Integer getMinRequestAmount() {
|
||||
return minRequestAmount;
|
||||
}
|
||||
|
||||
public DegradeRuleEntity setMinRequestAmount(Integer minRequestAmount) {
|
||||
this.minRequestAmount = minRequestAmount;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Double getSlowRatioThreshold() {
|
||||
return slowRatioThreshold;
|
||||
}
|
||||
|
||||
public DegradeRuleEntity setSlowRatioThreshold(Double slowRatioThreshold) {
|
||||
this.slowRatioThreshold = slowRatioThreshold;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Integer getStatIntervalMs() {
|
||||
return statIntervalMs;
|
||||
}
|
||||
|
||||
public DegradeRuleEntity setStatIntervalMs(Integer statIntervalMs) {
|
||||
this.statIntervalMs = statIntervalMs;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DegradeRule toRule() {
|
||||
DegradeRule rule = new DegradeRule();
|
||||
rule.setResource(resource);
|
||||
rule.setLimitApp(limitApp);
|
||||
rule.setCount(count);
|
||||
rule.setTimeWindow(timeWindow);
|
||||
rule.setGrade(grade);
|
||||
if (minRequestAmount != null) {
|
||||
rule.setMinRequestAmount(minRequestAmount);
|
||||
}
|
||||
if (slowRatioThreshold != null) {
|
||||
rule.setSlowRatioThreshold(slowRatioThreshold);
|
||||
}
|
||||
if (statIntervalMs != null) {
|
||||
rule.setStatIntervalMs(statIntervalMs);
|
||||
}
|
||||
|
||||
return rule;
|
||||
}
|
||||
}
|
@ -0,0 +1,250 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.rule;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.RuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.block.flow.ClusterFlowConfig;
|
||||
import com.alibaba.csp.sentinel.slots.block.flow.FlowRule;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author leyou
|
||||
*/
|
||||
public class FlowRuleEntity implements RuleEntity {
|
||||
|
||||
private Long id;
|
||||
private String app;
|
||||
private String ip;
|
||||
private Integer port;
|
||||
private String limitApp;
|
||||
private String resource;
|
||||
/**
|
||||
* 0为线程数;1为qps
|
||||
*/
|
||||
private Integer grade;
|
||||
private Double count;
|
||||
/**
|
||||
* 0为直接限流;1为关联限流;2为链路限流
|
||||
***/
|
||||
private Integer strategy;
|
||||
private String refResource;
|
||||
/**
|
||||
* 0. default, 1. warm up, 2. rate limiter
|
||||
*/
|
||||
private Integer controlBehavior;
|
||||
private Integer warmUpPeriodSec;
|
||||
/**
|
||||
* max queueing time in rate limiter behavior
|
||||
*/
|
||||
private Integer maxQueueingTimeMs;
|
||||
|
||||
private boolean clusterMode;
|
||||
/**
|
||||
* Flow rule config for cluster mode.
|
||||
*/
|
||||
private ClusterFlowConfig clusterConfig;
|
||||
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
|
||||
public static FlowRuleEntity fromFlowRule(String app, String ip, Integer port, FlowRule rule) {
|
||||
FlowRuleEntity entity = new FlowRuleEntity();
|
||||
entity.setApp(app);
|
||||
entity.setIp(ip);
|
||||
entity.setPort(port);
|
||||
entity.setLimitApp(rule.getLimitApp());
|
||||
entity.setResource(rule.getResource());
|
||||
entity.setGrade(rule.getGrade());
|
||||
entity.setCount(rule.getCount());
|
||||
entity.setStrategy(rule.getStrategy());
|
||||
entity.setRefResource(rule.getRefResource());
|
||||
entity.setControlBehavior(rule.getControlBehavior());
|
||||
entity.setWarmUpPeriodSec(rule.getWarmUpPeriodSec());
|
||||
entity.setMaxQueueingTimeMs(rule.getMaxQueueingTimeMs());
|
||||
entity.setClusterMode(rule.isClusterMode());
|
||||
entity.setClusterConfig(rule.getClusterConfig());
|
||||
return entity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getLimitApp() {
|
||||
return limitApp;
|
||||
}
|
||||
|
||||
public void setLimitApp(String limitApp) {
|
||||
this.limitApp = limitApp;
|
||||
}
|
||||
|
||||
public String getResource() {
|
||||
return resource;
|
||||
}
|
||||
|
||||
public void setResource(String resource) {
|
||||
this.resource = resource;
|
||||
}
|
||||
|
||||
public Integer getGrade() {
|
||||
return grade;
|
||||
}
|
||||
|
||||
public void setGrade(Integer grade) {
|
||||
this.grade = grade;
|
||||
}
|
||||
|
||||
public Double getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(Double count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public Integer getStrategy() {
|
||||
return strategy;
|
||||
}
|
||||
|
||||
public void setStrategy(Integer strategy) {
|
||||
this.strategy = strategy;
|
||||
}
|
||||
|
||||
public String getRefResource() {
|
||||
return refResource;
|
||||
}
|
||||
|
||||
public void setRefResource(String refResource) {
|
||||
this.refResource = refResource;
|
||||
}
|
||||
|
||||
public Integer getControlBehavior() {
|
||||
return controlBehavior;
|
||||
}
|
||||
|
||||
public void setControlBehavior(Integer controlBehavior) {
|
||||
this.controlBehavior = controlBehavior;
|
||||
}
|
||||
|
||||
public Integer getWarmUpPeriodSec() {
|
||||
return warmUpPeriodSec;
|
||||
}
|
||||
|
||||
public void setWarmUpPeriodSec(Integer warmUpPeriodSec) {
|
||||
this.warmUpPeriodSec = warmUpPeriodSec;
|
||||
}
|
||||
|
||||
public Integer getMaxQueueingTimeMs() {
|
||||
return maxQueueingTimeMs;
|
||||
}
|
||||
|
||||
public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) {
|
||||
this.maxQueueingTimeMs = maxQueueingTimeMs;
|
||||
}
|
||||
|
||||
public boolean isClusterMode() {
|
||||
return clusterMode;
|
||||
}
|
||||
|
||||
public FlowRuleEntity setClusterMode(boolean clusterMode) {
|
||||
this.clusterMode = clusterMode;
|
||||
return this;
|
||||
}
|
||||
|
||||
public ClusterFlowConfig getClusterConfig() {
|
||||
return clusterConfig;
|
||||
}
|
||||
|
||||
public FlowRuleEntity setClusterConfig(ClusterFlowConfig clusterConfig) {
|
||||
this.clusterConfig = clusterConfig;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FlowRule toRule() {
|
||||
FlowRule flowRule = new FlowRule();
|
||||
flowRule.setCount(this.count);
|
||||
flowRule.setGrade(this.grade);
|
||||
flowRule.setResource(this.resource);
|
||||
flowRule.setLimitApp(this.limitApp);
|
||||
flowRule.setRefResource(this.refResource);
|
||||
flowRule.setStrategy(this.strategy);
|
||||
if (this.controlBehavior != null) {
|
||||
flowRule.setControlBehavior(controlBehavior);
|
||||
}
|
||||
if (this.warmUpPeriodSec != null) {
|
||||
flowRule.setWarmUpPeriodSec(warmUpPeriodSec);
|
||||
}
|
||||
if (this.maxQueueingTimeMs != null) {
|
||||
flowRule.setMaxQueueingTimeMs(maxQueueingTimeMs);
|
||||
}
|
||||
flowRule.setClusterMode(clusterMode);
|
||||
flowRule.setClusterConfig(clusterConfig);
|
||||
return flowRule;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,121 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.rule;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.AbstractRuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.block.flow.param.ParamFlowClusterConfig;
|
||||
import com.alibaba.csp.sentinel.slots.block.flow.param.ParamFlowItem;
|
||||
import com.alibaba.csp.sentinel.slots.block.flow.param.ParamFlowRule;
|
||||
import com.alibaba.csp.sentinel.util.AssertUtil;
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Eric Zhao
|
||||
* @since 0.2.1
|
||||
*/
|
||||
public class ParamFlowRuleEntity extends AbstractRuleEntity<ParamFlowRule> {
|
||||
|
||||
public ParamFlowRuleEntity() {
|
||||
}
|
||||
|
||||
public ParamFlowRuleEntity(ParamFlowRule rule) {
|
||||
AssertUtil.notNull(rule, "Authority rule should not be null");
|
||||
this.rule = rule;
|
||||
}
|
||||
|
||||
public static ParamFlowRuleEntity fromParamFlowRule(String app, String ip, Integer port, ParamFlowRule rule) {
|
||||
ParamFlowRuleEntity entity = new ParamFlowRuleEntity(rule);
|
||||
entity.setApp(app);
|
||||
entity.setIp(ip);
|
||||
entity.setPort(port);
|
||||
return entity;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public String getLimitApp() {
|
||||
return rule.getLimitApp();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public String getResource() {
|
||||
return rule.getResource();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public int getGrade() {
|
||||
return rule.getGrade();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public Integer getParamIdx() {
|
||||
return rule.getParamIdx();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public double getCount() {
|
||||
return rule.getCount();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public List<ParamFlowItem> getParamFlowItemList() {
|
||||
return rule.getParamFlowItemList();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public int getControlBehavior() {
|
||||
return rule.getControlBehavior();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public int getMaxQueueingTimeMs() {
|
||||
return rule.getMaxQueueingTimeMs();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public int getBurstCount() {
|
||||
return rule.getBurstCount();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public long getDurationInSec() {
|
||||
return rule.getDurationInSec();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public boolean isClusterMode() {
|
||||
return rule.isClusterMode();
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
@JSONField(serialize = false)
|
||||
public ParamFlowClusterConfig getClusterConfig() {
|
||||
return rule.getClusterConfig();
|
||||
}
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.rule;
|
||||
|
||||
import com.alibaba.csp.sentinel.slots.block.Rule;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author leyou
|
||||
*/
|
||||
public interface RuleEntity {
|
||||
|
||||
Long getId();
|
||||
|
||||
void setId(Long id);
|
||||
|
||||
String getApp();
|
||||
|
||||
String getIp();
|
||||
|
||||
Integer getPort();
|
||||
|
||||
Date getGmtCreate();
|
||||
|
||||
Rule toRule();
|
||||
}
|
@ -0,0 +1,159 @@
|
||||
/*
|
||||
* Copyright 1999-2018 Alibaba Group Holding Ltd.
|
||||
*
|
||||
* 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 com.alibaba.csp.sentinel.dashboard.entity.rule;
|
||||
|
||||
import com.alibaba.csp.sentinel.dashboard.datasource.entity.rule.RuleEntity;
|
||||
import com.alibaba.csp.sentinel.slots.system.SystemRule;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author leyou
|
||||
*/
|
||||
public class SystemRuleEntity implements RuleEntity {
|
||||
|
||||
private Long id;
|
||||
|
||||
private String app;
|
||||
private String ip;
|
||||
private Integer port;
|
||||
private Double highestSystemLoad;
|
||||
private Long avgRt;
|
||||
private Long maxThread;
|
||||
private Double qps;
|
||||
private Double highestCpuUsage;
|
||||
|
||||
private Date gmtCreate;
|
||||
private Date gmtModified;
|
||||
|
||||
public static SystemRuleEntity fromSystemRule(String app, String ip, Integer port, SystemRule rule) {
|
||||
SystemRuleEntity entity = new SystemRuleEntity();
|
||||
entity.setApp(app);
|
||||
entity.setIp(ip);
|
||||
entity.setPort(port);
|
||||
entity.setHighestSystemLoad(rule.getHighestSystemLoad());
|
||||
entity.setHighestCpuUsage(rule.getHighestCpuUsage());
|
||||
entity.setAvgRt(rule.getAvgRt());
|
||||
entity.setMaxThread(rule.getMaxThread());
|
||||
entity.setQps(rule.getQps());
|
||||
return entity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
this.port = port;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getApp() {
|
||||
return app;
|
||||
}
|
||||
|
||||
public void setApp(String app) {
|
||||
this.app = app;
|
||||
}
|
||||
|
||||
public Double getHighestSystemLoad() {
|
||||
return highestSystemLoad;
|
||||
}
|
||||
|
||||
public void setHighestSystemLoad(Double highestSystemLoad) {
|
||||
this.highestSystemLoad = highestSystemLoad;
|
||||
}
|
||||
|
||||
public Long getAvgRt() {
|
||||
return avgRt;
|
||||
}
|
||||
|
||||
public void setAvgRt(Long avgRt) {
|
||||
this.avgRt = avgRt;
|
||||
}
|
||||
|
||||
public Long getMaxThread() {
|
||||
return maxThread;
|
||||
}
|
||||
|
||||
public void setMaxThread(Long maxThread) {
|
||||
this.maxThread = maxThread;
|
||||
}
|
||||
|
||||
public Double getQps() {
|
||||
return qps;
|
||||
}
|
||||
|
||||
public void setQps(Double qps) {
|
||||
this.qps = qps;
|
||||
}
|
||||
|
||||
public Double getHighestCpuUsage() {
|
||||
return highestCpuUsage;
|
||||
}
|
||||
|
||||
public void setHighestCpuUsage(Double highestCpuUsage) {
|
||||
this.highestCpuUsage = highestCpuUsage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Date getGmtCreate() {
|
||||
return gmtCreate;
|
||||
}
|
||||
|
||||
public void setGmtCreate(Date gmtCreate) {
|
||||
this.gmtCreate = gmtCreate;
|
||||
}
|
||||
|
||||
public Date getGmtModified() {
|
||||
return gmtModified;
|
||||
}
|
||||
|
||||
public void setGmtModified(Date gmtModified) {
|
||||
this.gmtModified = gmtModified;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SystemRule toRule() {
|
||||
SystemRule rule = new SystemRule();
|
||||
rule.setHighestSystemLoad(highestSystemLoad);
|
||||
rule.setAvgRt(avgRt);
|
||||
rule.setMaxThread(maxThread);
|
||||
rule.setQps(qps);
|
||||
rule.setHighestCpuUsage(highestCpuUsage);
|
||||
return rule;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue