mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 11:52:08 +08:00
Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf979fa3b3 | ||
|
|
b3b88891e9 | ||
|
|
01c5de60dc | ||
|
|
47b8fe5022 | ||
|
|
324b37b875 | ||
|
|
76e7e192d8 | ||
|
|
f9f3c4d923 | ||
|
|
a476476bd1 | ||
|
|
82a60a884a | ||
|
|
f17727de18 | ||
|
|
f98446e139 | ||
|
|
57a48dadaa | ||
|
|
c65ec68e46 | ||
|
|
d6559be3fc | ||
|
|
59df5b24fe | ||
|
|
3e1544294b | ||
|
|
a12c398816 | ||
|
|
0bd3e28348 | ||
|
|
ad4e39c088 | ||
|
|
2668d96e6a | ||
|
|
357c496aad | ||
|
|
22a513ba22 | ||
|
|
e6dd1119be | ||
|
|
2dbe454e04 | ||
|
|
e3a59b76eb | ||
|
|
8bfde9fbaf | ||
|
|
1fdecf8def | ||
|
|
f41e29ab3a | ||
|
|
5f1a839620 |
2
build.sh
2
build.sh
@@ -4,7 +4,7 @@ cd $workspace
|
|||||||
|
|
||||||
## constant
|
## constant
|
||||||
OUTPUT_DIR=./output
|
OUTPUT_DIR=./output
|
||||||
KM_VERSION=2.3.1
|
KM_VERSION=2.4.0
|
||||||
APP_NAME=kafka-manager
|
APP_NAME=kafka-manager
|
||||||
APP_DIR=${APP_NAME}-${KM_VERSION}
|
APP_DIR=${APP_NAME}-${KM_VERSION}
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||
FROM openjdk:8-jdk-alpine3.9
|
FROM openjdk:16-jdk-alpine3.13
|
||||||
|
|
||||||
LABEL author="yangvipguang"
|
LABEL author="yangvipguang"
|
||||||
|
|
||||||
ENV VERSION 2.1.0
|
ENV VERSION 2.3.1
|
||||||
ENV JAR_PATH kafka-manager-web/target
|
|
||||||
COPY $JAR_PATH/kafka-manager-web-$VERSION-SNAPSHOT.jar /tmp/app.jar
|
|
||||||
COPY $JAR_PATH/application.yml /km/
|
|
||||||
|
|
||||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
||||||
RUN apk add --no-cache --virtual .build-deps \
|
RUN apk add --no-cache --virtual .build-deps \
|
||||||
font-adobe-100dpi \
|
font-adobe-100dpi \
|
||||||
ttf-dejavu \
|
ttf-dejavu \
|
||||||
fontconfig \
|
fontconfig \
|
||||||
@@ -19,26 +16,28 @@ RUN apk add --no-cache --virtual .build-deps \
|
|||||||
tomcat-native \
|
tomcat-native \
|
||||||
&& apk del .build-deps
|
&& apk del .build-deps
|
||||||
|
|
||||||
|
RUN apk add --no-cache tini
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ENV AGENT_HOME /opt/agent/
|
ENV AGENT_HOME /opt/agent/
|
||||||
|
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
|
|
||||||
|
COPY $JAR_PATH/kafka-manager.jar app.jar
|
||||||
|
# COPY application.yml application.yml ##默认使用helm 挂载,防止敏感配置泄露
|
||||||
|
|
||||||
COPY docker-depends/config.yaml $AGENT_HOME
|
COPY docker-depends/config.yaml $AGENT_HOME
|
||||||
COPY docker-depends/jmx_prometheus_javaagent-0.14.0.jar $AGENT_HOME
|
COPY docker-depends/jmx_prometheus_javaagent-0.15.0.jar $AGENT_HOME
|
||||||
|
|
||||||
ENV JAVA_AGENT="-javaagent:$AGENT_HOME/jmx_prometheus_javaagent-0.14.0.jar=9999:$AGENT_HOME/config.yaml"
|
|
||||||
|
|
||||||
|
ENV JAVA_AGENT="-javaagent:$AGENT_HOME/jmx_prometheus_javaagent-0.15.0.jar=9999:$AGENT_HOME/config.yaml"
|
||||||
ENV JAVA_HEAP_OPTS="-Xms1024M -Xmx1024M -Xmn100M "
|
ENV JAVA_HEAP_OPTS="-Xms1024M -Xmx1024M -Xmn100M "
|
||||||
|
|
||||||
ENV JAVA_OPTS="-verbose:gc \
|
ENV JAVA_OPTS="-verbose:gc \
|
||||||
-XX:+PrintGC -XX:+PrintGCDetails -XX:+PrintHeapAtGC -Xloggc:/tmp/gc.log -XX:+PrintGCDateStamps -XX:+PrintGCTimeStamps \
|
|
||||||
-XX:MaxMetaspaceSize=256M -XX:+DisableExplicitGC -XX:+UseStringDeduplication \
|
-XX:MaxMetaspaceSize=256M -XX:+DisableExplicitGC -XX:+UseStringDeduplication \
|
||||||
-XX:+UseG1GC -XX:+HeapDumpOnOutOfMemoryError -XX:-UseContainerSupport"
|
-XX:+UseG1GC -XX:+HeapDumpOnOutOfMemoryError -XX:-UseContainerSupport"
|
||||||
#-Xlog:gc -Xlog:gc* -Xlog:gc+heap=trace -Xlog:safepoint
|
|
||||||
|
|
||||||
EXPOSE 8080 9999
|
EXPOSE 8080 9999
|
||||||
|
|
||||||
ENTRYPOINT ["sh","-c","java -jar $JAVA_HEAP_OPTS $JAVA_OPTS /tmp/app.jar --spring.config.location=/km/application.yml"]
|
ENTRYPOINT ["tini", "--"]
|
||||||
|
|
||||||
## 默认不带Prometheus JMX监控,需要可以自行取消以下注释并注释上面一行默认Entrypoint 命令。
|
|
||||||
## ENTRYPOINT ["sh","-c","java -jar $JAVA_AGENT $JAVA_HEAP_OPTS $JAVA_OPTS /tmp/app.jar --spring.config.location=/km/application.yml"]
|
|
||||||
|
|
||||||
|
CMD ["sh","-c","java -jar $JAVA_AGENT $JAVA_HEAP_OPTS $JAVA_OPTS app.jar --spring.config.location=application.yml"]
|
||||||
|
|||||||
Binary file not shown.
@@ -46,7 +46,7 @@ public enum OperateEnum {
|
|||||||
|
|
||||||
public static boolean validate(Integer code) {
|
public static boolean validate(Integer code) {
|
||||||
if (code == null) {
|
if (code == null) {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
for (OperateEnum state : OperateEnum.values()) {
|
for (OperateEnum state : OperateEnum.values()) {
|
||||||
if (state.getCode() == code) {
|
if (state.getCode() == code) {
|
||||||
|
|||||||
@@ -25,6 +25,9 @@ public enum ResultStatus {
|
|||||||
CHANGE_ZOOKEEPER_FORBIDDEN(1405, "change zookeeper forbidden"),
|
CHANGE_ZOOKEEPER_FORBIDDEN(1405, "change zookeeper forbidden"),
|
||||||
|
|
||||||
|
|
||||||
|
APP_OFFLINE_FORBIDDEN(1406, "先下线topic,才能下线应用~"),
|
||||||
|
|
||||||
|
|
||||||
TOPIC_OPERATION_PARAM_NULL_POINTER(1450, "参数错误"),
|
TOPIC_OPERATION_PARAM_NULL_POINTER(1450, "参数错误"),
|
||||||
TOPIC_OPERATION_PARTITION_NUM_ILLEGAL(1451, "分区数错误"),
|
TOPIC_OPERATION_PARTITION_NUM_ILLEGAL(1451, "分区数错误"),
|
||||||
TOPIC_OPERATION_BROKER_NUM_NOT_ENOUGH(1452, "Broker数不足错误"),
|
TOPIC_OPERATION_BROKER_NUM_NOT_ENOUGH(1452, "Broker数不足错误"),
|
||||||
|
|||||||
@@ -40,6 +40,9 @@ public class TopicCreationDTO extends ClusterTopicDTO {
|
|||||||
@ApiModelProperty(value = "Topic属性列表")
|
@ApiModelProperty(value = "Topic属性列表")
|
||||||
private Properties properties;
|
private Properties properties;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "最大写入字节数")
|
||||||
|
private Long peakBytesIn;
|
||||||
|
|
||||||
public String getAppId() {
|
public String getAppId() {
|
||||||
return appId;
|
return appId;
|
||||||
}
|
}
|
||||||
@@ -104,6 +107,14 @@ public class TopicCreationDTO extends ClusterTopicDTO {
|
|||||||
this.properties = properties;
|
this.properties = properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Long getPeakBytesIn() {
|
||||||
|
return peakBytesIn;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPeakBytesIn(Long peakBytesIn) {
|
||||||
|
this.peakBytesIn = peakBytesIn;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "TopicCreationDTO{" +
|
return "TopicCreationDTO{" +
|
||||||
@@ -135,4 +146,4 @@ public class TopicCreationDTO extends ClusterTopicDTO {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -81,11 +81,6 @@ public class OperateRecordDTO {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean legal() {
|
public boolean legal() {
|
||||||
if (!ModuleEnum.validate(moduleId) ||
|
return !ValidateUtils.isNull(moduleId) && ModuleEnum.validate(moduleId) && OperateEnum.validate(operateId);
|
||||||
(!ValidateUtils.isNull(operateId) && OperateEnum.validate(operateId))
|
|
||||||
) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package com.xiaojukeji.kafka.manager.common.entity.pojo;
|
package com.xiaojukeji.kafka.manager.common.entity.pojo;
|
||||||
|
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.dto.op.topic.TopicCreationDTO;
|
import com.xiaojukeji.kafka.manager.common.entity.dto.op.topic.TopicCreationDTO;
|
||||||
|
import com.xiaojukeji.kafka.manager.common.utils.ValidateUtils;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
@@ -95,6 +96,7 @@ public class TopicDO {
|
|||||||
topicDO.setClusterId(dto.getClusterId());
|
topicDO.setClusterId(dto.getClusterId());
|
||||||
topicDO.setTopicName(dto.getTopicName());
|
topicDO.setTopicName(dto.getTopicName());
|
||||||
topicDO.setDescription(dto.getDescription());
|
topicDO.setDescription(dto.getDescription());
|
||||||
|
topicDO.setPeakBytesIn(ValidateUtils.isNull(dto.getPeakBytesIn()) ? -1L : dto.getPeakBytesIn());
|
||||||
return topicDO;
|
return topicDO;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.xiaojukeji.kafka.manager.openapi.common.vo;
|
package com.xiaojukeji.kafka.manager.common.entity.vo.normal.topic;
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModel;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
@@ -14,7 +14,6 @@ public class TopicStatisticMetricsVO {
|
|||||||
|
|
||||||
public TopicStatisticMetricsVO(Double peakBytesIn) {
|
public TopicStatisticMetricsVO(Double peakBytesIn) {
|
||||||
this.peakBytesIn = peakBytesIn;
|
this.peakBytesIn = peakBytesIn;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Double getPeakBytesIn() {
|
public Double getPeakBytesIn() {
|
||||||
@@ -1,8 +1,5 @@
|
|||||||
package com.xiaojukeji.kafka.manager.common.zookeeper.znode.brokers;
|
package com.xiaojukeji.kafka.manager.common.zookeeper.znode.brokers;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -18,12 +15,11 @@ import java.util.List;
|
|||||||
* "host":null,
|
* "host":null,
|
||||||
* "timestamp":"1546632983233",
|
* "timestamp":"1546632983233",
|
||||||
* "port":-1,
|
* "port":-1,
|
||||||
* "version":4
|
* "version":4,
|
||||||
|
* "rack": "CY"
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
public class BrokerMetadata implements Cloneable {
|
public class BrokerMetadata implements Cloneable {
|
||||||
private final static Logger LOGGER = LoggerFactory.getLogger(TopicMetadata.class);
|
|
||||||
|
|
||||||
private long clusterId;
|
private long clusterId;
|
||||||
|
|
||||||
private int brokerId;
|
private int brokerId;
|
||||||
@@ -43,6 +39,8 @@ public class BrokerMetadata implements Cloneable {
|
|||||||
|
|
||||||
private long timestamp;
|
private long timestamp;
|
||||||
|
|
||||||
|
private String rack;
|
||||||
|
|
||||||
public long getClusterId() {
|
public long getClusterId() {
|
||||||
return clusterId;
|
return clusterId;
|
||||||
}
|
}
|
||||||
@@ -107,14 +105,12 @@ public class BrokerMetadata implements Cloneable {
|
|||||||
this.timestamp = timestamp;
|
this.timestamp = timestamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
public String getRack() {
|
||||||
public Object clone() {
|
return rack;
|
||||||
try {
|
}
|
||||||
return super.clone();
|
|
||||||
} catch (CloneNotSupportedException var3) {
|
public void setRack(String rack) {
|
||||||
LOGGER.error("clone BrokerMetadata failed.", var3);
|
this.rack = rack;
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -128,6 +124,7 @@ public class BrokerMetadata implements Cloneable {
|
|||||||
", jmxPort=" + jmx_port +
|
", jmxPort=" + jmx_port +
|
||||||
", version='" + version + '\'' +
|
", version='" + version + '\'' +
|
||||||
", timestamp=" + timestamp +
|
", timestamp=" + timestamp +
|
||||||
|
", rack='" + rack + '\'' +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -68,8 +68,8 @@ export class StatusGraghCom<T extends IFlowInfo> extends React.Component {
|
|||||||
public render() {
|
public render() {
|
||||||
const statusData = this.getData();
|
const statusData = this.getData();
|
||||||
const loading = this.getLoading();
|
const loading = this.getLoading();
|
||||||
if (!statusData) return null;
|
|
||||||
const data: any[] = [];
|
const data: any[] = [];
|
||||||
|
if (!statusData) return <Table columns={flowColumns} dataSource={data} />;
|
||||||
Object.keys(statusData).map((key) => {
|
Object.keys(statusData).map((key) => {
|
||||||
if (statusData[key]) {
|
if (statusData[key]) {
|
||||||
const v = key === 'byteIn' || key === 'byteOut' ? statusData[key].map(i => i && (i / 1024).toFixed(2)) :
|
const v = key === 'byteIn' || key === 'byteOut' ? statusData[key].map(i => i && (i / 1024).toFixed(2)) :
|
||||||
@@ -85,7 +85,7 @@ export class StatusGraghCom<T extends IFlowInfo> extends React.Component {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
return (
|
return (
|
||||||
<Table columns={flowColumns} dataSource={data} pagination={false} loading={loading}/>
|
<Table columns={flowColumns} dataSource={data} pagination={false} loading={loading} />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.ant-input-number {
|
.ant-input-number, .ant-form-item-children .ant-select {
|
||||||
width: 314px
|
width: 314px
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -59,6 +59,10 @@ export const adminMenu = [{
|
|||||||
href: `/admin/bill`,
|
href: `/admin/bill`,
|
||||||
i: 'k-icon-renwuliebiao',
|
i: 'k-icon-renwuliebiao',
|
||||||
title: '用户账单',
|
title: '用户账单',
|
||||||
|
},{
|
||||||
|
href: `/admin/operation-record`,
|
||||||
|
i: 'k-icon-operationrecord',
|
||||||
|
title: '操作记录',
|
||||||
}] as ILeftMenu[];
|
}] as ILeftMenu[];
|
||||||
|
|
||||||
export const expertMenu = [{
|
export const expertMenu = [{
|
||||||
|
|||||||
@@ -172,7 +172,7 @@ export class ClusterTopic extends SearchAndFilterContainer {
|
|||||||
key: 'appName',
|
key: 'appName',
|
||||||
// width: '10%',
|
// width: '10%',
|
||||||
render: (val: string, record: IClusterTopics) => (
|
render: (val: string, record: IClusterTopics) => (
|
||||||
<Tooltip placement="bottomLeft" title={record.appId} >
|
<Tooltip placement="bottomLeft" title={val} >
|
||||||
{val}
|
{val}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -314,8 +314,7 @@ export class ExclusiveCluster extends SearchAndFilterContainer {
|
|||||||
>
|
>
|
||||||
<div className="region-prompt">
|
<div className="region-prompt">
|
||||||
<span>
|
<span>
|
||||||
由于该Region已被逻辑集群【 {this.state.logicalClusterName} 】使用
|
该Region已被逻辑集群【 {this.state.logicalClusterName} 】使用,请先解除Region与逻辑集群的关系
|
||||||
请先解除Region与逻辑集群的关系
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
.traffic-table {
|
.traffic-table {
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
min-height: 450px;
|
min-height: 330px;
|
||||||
.traffic-header {
|
.traffic-header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 44px;
|
height: 44px;
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { wrapper } from 'store';
|
|||||||
import { observer } from 'mobx-react';
|
import { observer } from 'mobx-react';
|
||||||
import { IXFormWrapper, IMetaData, IRegister } from 'types/base-type';
|
import { IXFormWrapper, IMetaData, IRegister } from 'types/base-type';
|
||||||
import { admin } from 'store/admin';
|
import { admin } from 'store/admin';
|
||||||
|
import { users } from 'store/users';
|
||||||
import { registerCluster, createCluster, pauseMonitoring } from 'lib/api';
|
import { registerCluster, createCluster, pauseMonitoring } from 'lib/api';
|
||||||
import { SearchAndFilterContainer } from 'container/search-filter';
|
import { SearchAndFilterContainer } from 'container/search-filter';
|
||||||
import { cluster } from 'store/cluster';
|
import { cluster } from 'store/cluster';
|
||||||
@@ -78,34 +79,34 @@ export class ClusterList extends SearchAndFilterContainer {
|
|||||||
disabled: item ? true : false,
|
disabled: item ? true : false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
key: 'idc',
|
// key: 'idc',
|
||||||
label: '数据中心',
|
// label: '数据中心',
|
||||||
defaultValue: region.regionName,
|
// defaultValue: region.regionName,
|
||||||
rules: [{ required: true, message: '请输入数据中心' }],
|
// rules: [{ required: true, message: '请输入数据中心' }],
|
||||||
attrs: {
|
// attrs: {
|
||||||
placeholder: '请输入数据中心',
|
// placeholder: '请输入数据中心',
|
||||||
disabled: true,
|
// disabled: true,
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
key: 'mode',
|
// key: 'mode',
|
||||||
label: '集群类型',
|
// label: '集群类型',
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
options: cluster.clusterModes.map(ele => {
|
// options: cluster.clusterModes.map(ele => {
|
||||||
return {
|
// return {
|
||||||
label: ele.message,
|
// label: ele.message,
|
||||||
value: ele.code,
|
// value: ele.code,
|
||||||
};
|
// };
|
||||||
}),
|
// }),
|
||||||
rules: [{
|
// rules: [{
|
||||||
required: true,
|
// required: true,
|
||||||
message: '请选择集群类型',
|
// message: '请选择集群类型',
|
||||||
}],
|
// }],
|
||||||
attrs: {
|
// attrs: {
|
||||||
placeholder: '请选择集群类型',
|
// placeholder: '请选择集群类型',
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
key: 'kafkaVersion',
|
key: 'kafkaVersion',
|
||||||
label: 'kafka版本',
|
label: 'kafka版本',
|
||||||
@@ -148,7 +149,7 @@ export class ClusterList extends SearchAndFilterContainer {
|
|||||||
attrs: {
|
attrs: {
|
||||||
placeholder: `请输入JMX认证,例如:
|
placeholder: `请输入JMX认证,例如:
|
||||||
{
|
{
|
||||||
"maxConn": 10, #KM对单台Broker对最大连接数
|
"maxConn": 10, #KM对单台Broker的最大jmx连接数
|
||||||
"username": "xxxxx", #用户名
|
"username": "xxxxx", #用户名
|
||||||
"password": "xxxxx", #密码
|
"password": "xxxxx", #密码
|
||||||
"openSSL": true, #开启SSL,true表示开启SSL,false表示关闭
|
"openSSL": true, #开启SSL,true表示开启SSL,false表示关闭
|
||||||
@@ -276,32 +277,41 @@ export class ClusterList extends SearchAndFilterContainer {
|
|||||||
|
|
||||||
public getColumns = () => {
|
public getColumns = () => {
|
||||||
const cols = getAdminClusterColumns();
|
const cols = getAdminClusterColumns();
|
||||||
|
const role = users.currentUser.role;
|
||||||
const col = {
|
const col = {
|
||||||
title: '操作',
|
title: '操作',
|
||||||
render: (value: string, item: IMetaData) => (
|
render: (value: string, item: IMetaData) => (
|
||||||
<>
|
<>
|
||||||
<a
|
{
|
||||||
onClick={this.createOrRegisterCluster.bind(this, item)}
|
role && role === 2 ? <>
|
||||||
className="action-button"
|
|
||||||
>编辑
|
|
||||||
</a>
|
|
||||||
<Popconfirm
|
|
||||||
title={`确定${item.status === 1 ? '暂停' : '开始'}${item.clusterName}监控?`}
|
|
||||||
onConfirm={() => this.pauseMonitor(item)}
|
|
||||||
cancelText="取消"
|
|
||||||
okText="确认"
|
|
||||||
>
|
|
||||||
<Tooltip title="暂停监控将无法正常监控指标信息,建议开启监控">
|
|
||||||
<a
|
<a
|
||||||
|
onClick={this.createOrRegisterCluster.bind(this, item)}
|
||||||
className="action-button"
|
className="action-button"
|
||||||
>
|
>编辑
|
||||||
{item.status === 1 ? '暂停监控' : '开始监控'}
|
|
||||||
</a>
|
</a>
|
||||||
</Tooltip>
|
<Popconfirm
|
||||||
</Popconfirm>
|
title={`确定${item.status === 1 ? '暂停' : '开始'}${item.clusterName}监控?`}
|
||||||
<a onClick={this.showMonitor.bind(this, item)}>
|
onConfirm={() => this.pauseMonitor(item)}
|
||||||
删除
|
cancelText="取消"
|
||||||
</a>
|
okText="确认"
|
||||||
|
>
|
||||||
|
<Tooltip placement="left" title="暂停监控将无法正常监控指标信息,建议开启监控">
|
||||||
|
<a
|
||||||
|
className="action-button"
|
||||||
|
>
|
||||||
|
{item.status === 1 ? '暂停监控' : '开始监控'}
|
||||||
|
</a>
|
||||||
|
</Tooltip>
|
||||||
|
</Popconfirm>
|
||||||
|
<a onClick={this.showMonitor.bind(this, item)}>
|
||||||
|
删除
|
||||||
|
</a>
|
||||||
|
</> : <Tooltip placement="left" title="该功能只对运维人员开放">
|
||||||
|
<a style={{ color: '#a0a0a0' }} className="action-button">编辑</a>
|
||||||
|
<a className="action-button" style={{ color: '#a0a0a0' }}>{item.status === 1 ? '暂停监控' : '开始监控'}</a>
|
||||||
|
<a style={{ color: '#a0a0a0' }}>删除</a>
|
||||||
|
</Tooltip>
|
||||||
|
}
|
||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
@@ -310,6 +320,7 @@ export class ClusterList extends SearchAndFilterContainer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public renderClusterList() {
|
public renderClusterList() {
|
||||||
|
const role = users.currentUser.role;
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
@@ -318,7 +329,14 @@ export class ClusterList extends SearchAndFilterContainer {
|
|||||||
{this.renderSearch('', '请输入集群名称')}
|
{this.renderSearch('', '请输入集群名称')}
|
||||||
<li className="right-btn-1">
|
<li className="right-btn-1">
|
||||||
<a style={{ display: 'inline-block', marginRight: '20px' }} href={indexUrl.cagUrl} target="_blank">集群接入指南</a>
|
<a style={{ display: 'inline-block', marginRight: '20px' }} href={indexUrl.cagUrl} target="_blank">集群接入指南</a>
|
||||||
<Button type="primary" onClick={this.createOrRegisterCluster.bind(this, null)}>接入集群</Button>
|
{
|
||||||
|
role && role === 2 ?
|
||||||
|
<Button type="primary" onClick={this.createOrRegisterCluster.bind(this, null)}>接入集群</Button>
|
||||||
|
:
|
||||||
|
<Tooltip placement="left" title="该功能只对运维人员开放" trigger='hover'>
|
||||||
|
<Button disabled type="primary">接入集群</Button>
|
||||||
|
</Tooltip>
|
||||||
|
}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -11,3 +11,5 @@ export * from './operation-management/migration-detail';
|
|||||||
export * from './configure-management';
|
export * from './configure-management';
|
||||||
export * from './individual-bill';
|
export * from './individual-bill';
|
||||||
export * from './bill-detail';
|
export * from './bill-detail';
|
||||||
|
export * from './operation-record';
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,134 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import { cellStyle } from 'constants/table';
|
||||||
|
|
||||||
|
import { Tooltip } from 'antd';
|
||||||
|
import { admin } from 'store/admin';
|
||||||
|
import moment = require('moment');
|
||||||
|
|
||||||
|
const moduleList = [
|
||||||
|
{ moduleId: 0, moduleName: 'Topic' },
|
||||||
|
{ moduleId: 1, moduleName: '应用' },
|
||||||
|
{ moduleId: 2, moduleName: '配额' },
|
||||||
|
{ moduleId: 3, moduleName: '权限' },
|
||||||
|
{ moduleId: 4, moduleName: '集群' },
|
||||||
|
{ moduleId: 5, moduleName: '分区' },
|
||||||
|
{ moduleId: 6, moduleName: 'Gateway配置' },
|
||||||
|
]
|
||||||
|
|
||||||
|
export const operateList = {
|
||||||
|
0: '新增',
|
||||||
|
1: '删除',
|
||||||
|
2: '修改'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// [
|
||||||
|
// { operate: '新增', operateId: 0 },
|
||||||
|
// { operate: '删除', operateId: 1 },
|
||||||
|
// { operate: '修改', operateId: 2 },
|
||||||
|
// ]
|
||||||
|
|
||||||
|
export const getJarFuncForm: any = (props: any) => {
|
||||||
|
const formMap = [
|
||||||
|
{
|
||||||
|
key: 'moduleId',
|
||||||
|
label: '模块',
|
||||||
|
type: 'select',
|
||||||
|
attrs: {
|
||||||
|
style: {
|
||||||
|
width: '130px'
|
||||||
|
},
|
||||||
|
placeholder: '请选择模块',
|
||||||
|
},
|
||||||
|
options: moduleList.map(item => {
|
||||||
|
return {
|
||||||
|
label: item.moduleName,
|
||||||
|
value: item.moduleId
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
formAttrs: {
|
||||||
|
initialvalue: 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'operator',
|
||||||
|
label: '操作人',
|
||||||
|
type: 'input',
|
||||||
|
attrs: {
|
||||||
|
style: {
|
||||||
|
width: '170px'
|
||||||
|
},
|
||||||
|
placeholder: '请输入操作人'
|
||||||
|
},
|
||||||
|
getvaluefromevent: (event: any) => {
|
||||||
|
return event.target.value.replace(/\s+/g, '')
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// key: 'resource',
|
||||||
|
// label: '资源名称',
|
||||||
|
// type: 'input',
|
||||||
|
// attrs: {
|
||||||
|
// style: {
|
||||||
|
// width: '170px'
|
||||||
|
// },
|
||||||
|
// placeholder: '请输入资源名称'
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// key: 'content',
|
||||||
|
// label: '操作内容',
|
||||||
|
// type: 'input',
|
||||||
|
// attrs: {
|
||||||
|
// style: {
|
||||||
|
// width: '170px'
|
||||||
|
// },
|
||||||
|
// placeholder: '请输入操作内容'
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
]
|
||||||
|
return formMap;
|
||||||
|
}
|
||||||
|
export const getOperateColumns = () => {
|
||||||
|
|
||||||
|
const columns: any = [
|
||||||
|
{
|
||||||
|
title: '模块',
|
||||||
|
dataIndex: 'module',
|
||||||
|
key: 'module',
|
||||||
|
align: 'center',
|
||||||
|
width: '12%'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '资源名称',
|
||||||
|
dataIndex: 'resource',
|
||||||
|
key: 'resource',
|
||||||
|
align: 'center',
|
||||||
|
width: '12%'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '操作内容',
|
||||||
|
dataIndex: 'content',
|
||||||
|
key: 'content',
|
||||||
|
align: 'center',
|
||||||
|
width: '25%',
|
||||||
|
onCell: () => ({
|
||||||
|
style: {
|
||||||
|
maxWidth: 350,
|
||||||
|
...cellStyle,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
render: (text: string, record: any) => {
|
||||||
|
return (
|
||||||
|
<Tooltip placement="topLeft" title={text} >{text}</Tooltip>);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '操作人',
|
||||||
|
dataIndex: 'operator',
|
||||||
|
align: 'center',
|
||||||
|
width: '12%'
|
||||||
|
},
|
||||||
|
];
|
||||||
|
return columns
|
||||||
|
}
|
||||||
@@ -0,0 +1,130 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import { observer } from 'mobx-react';
|
||||||
|
import { SearchAndFilterContainer } from 'container/search-filter';
|
||||||
|
import { IXFormWrapper, IMetaData, IRegister } from 'types/base-type';
|
||||||
|
import { admin } from 'store/admin';
|
||||||
|
import { customPagination, cellStyle } from 'constants/table';
|
||||||
|
import { Table, Tooltip } from 'component/antd';
|
||||||
|
import { timeFormat } from 'constants/strategy';
|
||||||
|
import { SearchFormComponent } from '../searchForm';
|
||||||
|
import { getJarFuncForm, operateList, getOperateColumns } from './config'
|
||||||
|
import moment = require('moment');
|
||||||
|
import { tableFilter } from 'lib/utils';
|
||||||
|
|
||||||
|
@observer
|
||||||
|
export class OperationRecord extends SearchAndFilterContainer {
|
||||||
|
public state: any = {
|
||||||
|
searchKey: '',
|
||||||
|
filteredInfo: null,
|
||||||
|
sortedInfo: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
public getData<T extends IMetaData>(origin: T[]) {
|
||||||
|
let data: T[] = origin;
|
||||||
|
let { searchKey } = this.state;
|
||||||
|
searchKey = (searchKey + '').trim().toLowerCase();
|
||||||
|
|
||||||
|
data = searchKey ? origin.filter((item: IMetaData) =>
|
||||||
|
(item.clusterName !== undefined && item.clusterName !== null) && item.clusterName.toLowerCase().includes(searchKey as string),
|
||||||
|
) : origin;
|
||||||
|
return data;
|
||||||
|
};
|
||||||
|
|
||||||
|
public searchForm = (params: any) => {
|
||||||
|
// this.props.setFuncSubValue(params)
|
||||||
|
// getSystemFuncList(params).then(res => {
|
||||||
|
// this.props.setSysFuncList(res.data)
|
||||||
|
// this.props.setPagination(res.pagination)
|
||||||
|
// })
|
||||||
|
const { operator, moduleId } = params || {}
|
||||||
|
operator ? admin.getOperationRecordData(params) : admin.getOperationRecordData({ moduleId })
|
||||||
|
// getJarList(params).then(res => {
|
||||||
|
// this.props.setJarList(res.data)
|
||||||
|
// this.props.setPagination(res.pagination)
|
||||||
|
// })
|
||||||
|
}
|
||||||
|
|
||||||
|
public clearAll = () => {
|
||||||
|
this.setState({
|
||||||
|
filteredInfo: null,
|
||||||
|
sortedInfo: null,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
public setHandleChange = (pagination: any, filters: any, sorter: any) => {
|
||||||
|
this.setState({
|
||||||
|
filteredInfo: filters,
|
||||||
|
sortedInfo: sorter,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public renderOperationRecordList() {
|
||||||
|
let { sortedInfo, filteredInfo } = this.state;
|
||||||
|
sortedInfo = sortedInfo || {};
|
||||||
|
filteredInfo = filteredInfo || {};
|
||||||
|
const operatingTime = Object.assign({
|
||||||
|
title: '操作时间',
|
||||||
|
dataIndex: 'modifyTime',
|
||||||
|
key: 'modifyTime',
|
||||||
|
align: 'center',
|
||||||
|
sorter: (a: any, b: any) => a.modifyTime - b.modifyTime,
|
||||||
|
render: (t: number) => moment(t).format(timeFormat),
|
||||||
|
width: '15%',
|
||||||
|
sortOrder: sortedInfo.columnKey === 'modifyTime' && sortedInfo.order,
|
||||||
|
});
|
||||||
|
|
||||||
|
const operatingPractice = Object.assign({
|
||||||
|
title: '行为',
|
||||||
|
dataIndex: 'operate',
|
||||||
|
key: 'operate',
|
||||||
|
align: 'center',
|
||||||
|
width: '12%',
|
||||||
|
filters: tableFilter<any>(this.getData(admin.oRList), 'operateId', operateList),
|
||||||
|
// filteredValue: filteredInfo.operate || null,
|
||||||
|
onFilter: (value: any, record: any) => {
|
||||||
|
return record.operateId === value
|
||||||
|
}
|
||||||
|
}, this.renderColumnsFilter('modifyTime'))
|
||||||
|
|
||||||
|
const columns = getOperateColumns()
|
||||||
|
columns.splice(0, 0, operatingTime);
|
||||||
|
columns.splice(3, 0, operatingPractice);
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="container">
|
||||||
|
<div className="table-operation-panel">
|
||||||
|
<SearchFormComponent
|
||||||
|
formMap={getJarFuncForm()}
|
||||||
|
onSubmit={(params: any) => this.searchForm(params)}
|
||||||
|
clearAll={() => this.clearAll()}
|
||||||
|
isReset={true}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="table-wrapper">
|
||||||
|
<Table
|
||||||
|
rowKey="key"
|
||||||
|
loading={admin.loading}
|
||||||
|
dataSource={this.getData(admin.oRList)}
|
||||||
|
columns={columns}
|
||||||
|
pagination={customPagination}
|
||||||
|
bordered
|
||||||
|
onChange={this.setHandleChange}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
admin.getOperationRecordData({ moduleId: 0 });
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return <div>
|
||||||
|
{
|
||||||
|
this.renderOperationRecordList()
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
}
|
||||||
120
kafka-manager-console/src/container/admin/searchForm.tsx
Normal file
120
kafka-manager-console/src/container/admin/searchForm.tsx
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import { Select, Input, InputNumber, Form, Switch, Checkbox, DatePicker, Radio, Upload, Button, Icon, Tooltip } from 'component/antd';
|
||||||
|
// import './index.less';
|
||||||
|
const Search = Input.Search;
|
||||||
|
export interface IFormItem {
|
||||||
|
key: string;
|
||||||
|
label: string;
|
||||||
|
type: string;
|
||||||
|
value?: string;
|
||||||
|
// 内部组件属性注入
|
||||||
|
attrs?: any;
|
||||||
|
// form属性注入
|
||||||
|
formAttrs?: any;
|
||||||
|
defaultValue?: string | number | any[];
|
||||||
|
rules?: any[];
|
||||||
|
invisible?: boolean;
|
||||||
|
getvaluefromevent: Function;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SerachFormProps {
|
||||||
|
formMap: IFormItem[];
|
||||||
|
// formData: any;
|
||||||
|
form: any;
|
||||||
|
onSubmit: Function;
|
||||||
|
isReset?: boolean;
|
||||||
|
clearAll: Function;
|
||||||
|
layout?: 'inline' | 'horizontal' | 'vertical';
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IFormSelect extends IFormItem {
|
||||||
|
options: Array<{ key?: string | number, value: string | number, label: string }>;
|
||||||
|
}
|
||||||
|
|
||||||
|
class SearchForm extends React.Component<SerachFormProps>{
|
||||||
|
public onSubmit = () => {
|
||||||
|
// this.props.onSubmit()
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
public renderFormItem(item: IFormItem) {
|
||||||
|
switch (item.type) {
|
||||||
|
default:
|
||||||
|
case 'input':
|
||||||
|
return <Input key={item.key} {...item.attrs} />;
|
||||||
|
case 'select':
|
||||||
|
return (
|
||||||
|
<Select
|
||||||
|
// size="small"
|
||||||
|
key={item.key}
|
||||||
|
{...item.attrs}
|
||||||
|
invisibleValue={item.formAttrs.invisibleValue}
|
||||||
|
>
|
||||||
|
{(item as IFormSelect).options && (item as IFormSelect).options.map((v, index) => (
|
||||||
|
|
||||||
|
<Select.Option
|
||||||
|
key={v.value || v.key || index}
|
||||||
|
value={v.value}
|
||||||
|
>
|
||||||
|
{v.label}
|
||||||
|
{/* <Tooltip placement='left' title={v.value}>
|
||||||
|
{v.label}
|
||||||
|
</Tooltip> */}
|
||||||
|
</Select.Option>
|
||||||
|
))}
|
||||||
|
</Select>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public theQueryClick = (value: any) => {
|
||||||
|
this.props.onSubmit(value)
|
||||||
|
this.props.clearAll()
|
||||||
|
// this.props.form.resetFields()
|
||||||
|
}
|
||||||
|
public resetClick = () => {
|
||||||
|
this.props.form.resetFields()
|
||||||
|
this.props.clearAll()
|
||||||
|
this.theQueryClick(this.props.form.getFieldsValue())
|
||||||
|
}
|
||||||
|
|
||||||
|
public render() {
|
||||||
|
const { form, formMap, isReset } = this.props;
|
||||||
|
const { getFieldDecorator, getFieldsValue } = form;
|
||||||
|
return (
|
||||||
|
<Form layout='inline' onSubmit={this.onSubmit}>
|
||||||
|
{
|
||||||
|
formMap.map(formItem => {
|
||||||
|
// const { initialValue, valuePropName } = this.handleFormItem(formItem, formData);
|
||||||
|
// const getFieldValue = {
|
||||||
|
// initialValue,
|
||||||
|
// rules: formItem.rules || [{ required: false, message: '' }],
|
||||||
|
// valuePropName,
|
||||||
|
// };
|
||||||
|
return (
|
||||||
|
<Form.Item
|
||||||
|
key={formItem.key}
|
||||||
|
label={formItem.label}
|
||||||
|
{...formItem.formAttrs}
|
||||||
|
>
|
||||||
|
{getFieldDecorator(formItem.key, {
|
||||||
|
initialValue: formItem.formAttrs?.initialvalue,
|
||||||
|
getValueFromEvent: formItem?.getvaluefromevent,
|
||||||
|
})(
|
||||||
|
this.renderFormItem(formItem),
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
<Form.Item>
|
||||||
|
{
|
||||||
|
isReset && <Button style={{ width: '80px', marginRight: '20px' }} type="primary" onClick={() => this.resetClick()}>重置</Button>
|
||||||
|
}
|
||||||
|
<Button style={{ width: '80px' }} type="primary" onClick={() => this.theQueryClick(getFieldsValue())}>查询</Button>
|
||||||
|
</Form.Item>
|
||||||
|
</Form>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
export const SearchFormComponent = Form.create<SerachFormProps>({ name: 'search-form' })(SearchForm);
|
||||||
@@ -149,9 +149,9 @@ export class DynamicSetFilter extends React.Component<IDynamicProps> {
|
|||||||
public handleSelectChange = (e: string, type: 'topic' | 'consumerGroup' | 'location') => {
|
public handleSelectChange = (e: string, type: 'topic' | 'consumerGroup' | 'location') => {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'topic':
|
case 'topic':
|
||||||
if (!this.clusterId) {
|
// if (!this.clusterId) {
|
||||||
return message.info('请选择集群');
|
// return message.info('请选择集群');
|
||||||
}
|
// }
|
||||||
this.topicName = e;
|
this.topicName = e;
|
||||||
const type = this.dealMonitorType();
|
const type = this.dealMonitorType();
|
||||||
if (['kafka-consumer-maxLag', 'kafka-consumer-maxDelayTime', 'kafka-consumer-lag'].indexOf(type) > -1) {
|
if (['kafka-consumer-maxLag', 'kafka-consumer-maxDelayTime', 'kafka-consumer-lag'].indexOf(type) > -1) {
|
||||||
|
|||||||
@@ -52,8 +52,7 @@ export class CommonAppList extends SearchAndFilterContainer {
|
|||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
render: (text: string, record: IAppItem) => {
|
render: (text: string, record: IAppItem) => {
|
||||||
return (
|
return (<Tooltip placement="bottomLeft" title={record.name}>{text}</Tooltip>);
|
||||||
<Tooltip placement="bottomLeft" title={record.name}>{text}</Tooltip>);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -103,7 +102,7 @@ export class CommonAppList extends SearchAndFilterContainer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public getOnlineConnect(record: IAppItem) {
|
public getOnlineConnect(record: IAppItem) {
|
||||||
modal.showOfflineAppModal(record.appId);
|
modal.showOfflineAppNewModal(record.appId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public getData<T extends IAppItem>(origin: T[]) {
|
public getData<T extends IAppItem>(origin: T[]) {
|
||||||
@@ -114,7 +113,7 @@ export class CommonAppList extends SearchAndFilterContainer {
|
|||||||
data = searchKey ? origin.filter((item: IAppItem) =>
|
data = searchKey ? origin.filter((item: IAppItem) =>
|
||||||
((item.name !== undefined && item.name !== null) && item.name.toLowerCase().includes(searchKey as string)) ||
|
((item.name !== undefined && item.name !== null) && item.name.toLowerCase().includes(searchKey as string)) ||
|
||||||
((item.principals !== undefined && item.principals !== null) && item.principals.toLowerCase().includes(searchKey as string)) ||
|
((item.principals !== undefined && item.principals !== null) && item.principals.toLowerCase().includes(searchKey as string)) ||
|
||||||
((item.appId !== undefined && item.appId !== null) && item.appId.toLowerCase().includes(searchKey as string)) ) : origin;
|
((item.appId !== undefined && item.appId !== null) && item.appId.toLowerCase().includes(searchKey as string))) : origin;
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,16 +29,16 @@ export class MyCluster extends SearchAndFilterContainer {
|
|||||||
public applyCluster() {
|
public applyCluster() {
|
||||||
const xFormModal = {
|
const xFormModal = {
|
||||||
formMap: [
|
formMap: [
|
||||||
{
|
// {
|
||||||
key: 'idc',
|
// key: 'idc',
|
||||||
label: '数据中心',
|
// label: '数据中心',
|
||||||
defaultValue: region.regionName,
|
// defaultValue: region.regionName,
|
||||||
rules: [{ required: true, message: '请输入数据中心' }],
|
// rules: [{ required: true, message: '请输入数据中心' }],
|
||||||
attrs: {
|
// attrs: {
|
||||||
placeholder: '请输入数据中心',
|
// placeholder: '请输入数据中心',
|
||||||
disabled: true,
|
// disabled: true,
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
key: 'appId',
|
key: 'appId',
|
||||||
label: '所属应用',
|
label: '所属应用',
|
||||||
|
|||||||
@@ -133,15 +133,15 @@ export class GovernanceTopic extends SearchAndFilterContainer {
|
|||||||
width: '30%',
|
width: '30%',
|
||||||
sorter: (a: IResource, b: IResource) => a.topicName.charCodeAt(0) - b.topicName.charCodeAt(0),
|
sorter: (a: IResource, b: IResource) => a.topicName.charCodeAt(0) - b.topicName.charCodeAt(0),
|
||||||
render: (text: string, item: IResource) =>
|
render: (text: string, item: IResource) =>
|
||||||
(
|
(
|
||||||
<Tooltip placement="bottomLeft" title={text}>
|
<Tooltip placement="bottomLeft" title={text}>
|
||||||
<a
|
<a
|
||||||
// tslint:disable-next-line:max-line-length
|
// tslint:disable-next-line:max-line-length
|
||||||
href={`${this.urlPrefix}/topic/topic-detail?clusterId=${item.clusterId}&topic=${item.topicName}&isPhysicalClusterId=true®ion=${region.currentRegion}`}
|
href={`${this.urlPrefix}/topic/topic-detail?clusterId=${item.clusterId}&topic=${item.topicName}&isPhysicalClusterId=true®ion=${region.currentRegion}`}
|
||||||
>
|
>
|
||||||
{text}
|
{text}
|
||||||
</a>
|
</a>
|
||||||
</Tooltip>),
|
</Tooltip>),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '所在集群',
|
title: '所在集群',
|
||||||
@@ -215,7 +215,7 @@ export class GovernanceTopic extends SearchAndFilterContainer {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{this.pendingTopic(this.getData(expert.resourceData))}
|
{this.pendingTopic(this.getData(expert.resourceData))}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,14 @@
|
|||||||
line-height: 64px;
|
line-height: 64px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
.kafka-header-version{
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
padding-top:5px;
|
||||||
|
font-size: 12px;
|
||||||
|
margin-left:10px;
|
||||||
|
color:#a0a0a0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mid-content {
|
.mid-content {
|
||||||
|
|||||||
@@ -145,6 +145,8 @@ export const Header = observer((props: IHeader) => {
|
|||||||
<div className="left-content">
|
<div className="left-content">
|
||||||
<img className="kafka-header-icon" src={logoUrl} alt="" />
|
<img className="kafka-header-icon" src={logoUrl} alt="" />
|
||||||
<span className="kafka-header-text">Kafka Manager</span>
|
<span className="kafka-header-text">Kafka Manager</span>
|
||||||
|
<a className='kafka-header-version' href="https://github.com/didi/Logi-KafkaManager/releases" target='_blank'>v2.4.0</a>
|
||||||
|
{/* 添加版本超链接 */}
|
||||||
</div>
|
</div>
|
||||||
<div className="mid-content">
|
<div className="mid-content">
|
||||||
{headerMenu.map((item: IMenuItem, index: number) =>
|
{headerMenu.map((item: IMenuItem, index: number) =>
|
||||||
|
|||||||
@@ -22,11 +22,11 @@ export const showEditClusterTopic = (item: IClusterTopics) => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'appId',
|
key: 'appId',
|
||||||
label: '应用ID',
|
label: '应用名称',
|
||||||
type: 'select',
|
type: 'select',
|
||||||
options: app.adminAppData.map(item => {
|
options: app.adminAppData.map(item => {
|
||||||
return {
|
return {
|
||||||
label: item.appId,
|
label: item.name,
|
||||||
value: item.appId,
|
value: item.appId,
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
@@ -61,7 +61,7 @@ export const showEditClusterTopic = (item: IClusterTopics) => {
|
|||||||
attrs: {
|
attrs: {
|
||||||
placeholder: '请输入保存时间',
|
placeholder: '请输入保存时间',
|
||||||
suffix: '小时',
|
suffix: '小时',
|
||||||
prompttype:'修改保存时间,预计一分钟左右生效!'
|
prompttype: '修改保存时间,预计一分钟左右生效!'
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -35,7 +35,6 @@ class CustomForm extends React.Component<IXFormProps> {
|
|||||||
this.props.form.validateFields((err: any, values: any) => {
|
this.props.form.validateFields((err: any, values: any) => {
|
||||||
const deleteData = this.props.formData;
|
const deleteData = this.props.formData;
|
||||||
if (!err) {
|
if (!err) {
|
||||||
// console.log('values', values);
|
|
||||||
if (values.topicName !== this.props.formData.topicName) {
|
if (values.topicName !== this.props.formData.topicName) {
|
||||||
notification.error({ message: 'topic名称不正确,请重新输入' });
|
notification.error({ message: 'topic名称不正确,请重新输入' });
|
||||||
} else {
|
} else {
|
||||||
@@ -77,7 +76,6 @@ class CustomForm extends React.Component<IXFormProps> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
// console.log('props', this.props);
|
|
||||||
const { formData = {} as any, visible } = this.props;
|
const { formData = {} as any, visible } = this.props;
|
||||||
const { getFieldDecorator } = this.props.form;
|
const { getFieldDecorator } = this.props.form;
|
||||||
let metadata = [] as IBrokersMetadata[];
|
let metadata = [] as IBrokersMetadata[];
|
||||||
|
|||||||
@@ -111,11 +111,11 @@ class CustomForm extends React.Component<IXFormProps> {
|
|||||||
})(<Input placeholder="请输入分区数" />)}
|
})(<Input placeholder="请输入分区数" />)}
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label="类型">
|
<Form.Item label="类型">
|
||||||
{/* <Form.Item label={this.state.checked ? 'Region类型' : 'Borker类型'} > */}
|
{/* <Form.Item label={this.state.checked ? 'Region类型' : 'Broker类型'} > */}
|
||||||
{/* <Switch onChange={(checked) => this.onSwitchChange(checked)} /> */}
|
{/* <Switch onChange={(checked) => this.onSwitchChange(checked)} /> */}
|
||||||
<Radio.Group value={this.state.checked ? 'region' : 'broker'} onChange={(e) => { this.onSwitchChange(e.target.value === 'region' ? true : false); }}>
|
<Radio.Group value={this.state.checked ? 'region' : 'broker'} onChange={(e) => { this.onSwitchChange(e.target.value === 'region' ? true : false); }}>
|
||||||
<Radio.Button value="region">Region类型</Radio.Button>
|
<Radio.Button value="region">Region类型</Radio.Button>
|
||||||
<Radio.Button value="broker">Borker类型</Radio.Button>
|
<Radio.Button value="broker">Broker类型</Radio.Button>
|
||||||
</Radio.Group>
|
</Radio.Group>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item label="brokerIdList" style={{ display: this.state.checked ? 'none' : '' }}>
|
<Form.Item label="brokerIdList" style={{ display: this.state.checked ? 'none' : '' }}>
|
||||||
|
|||||||
@@ -28,8 +28,8 @@ const updateInputModal = (status?: string) => {
|
|||||||
formMap[4].invisible = status === 'region';
|
formMap[4].invisible = status === 'region';
|
||||||
formMap[5].invisible = status !== 'region';
|
formMap[5].invisible = status !== 'region';
|
||||||
|
|
||||||
formMap[4].rules = [{required: status !== 'region'}];
|
formMap[4].rules = [{ required: status !== 'region' }];
|
||||||
formMap[5].rules = [{required: status === 'region'}];
|
formMap[5].rules = [{ required: status === 'region' }];
|
||||||
// tslint:disable-next-line:no-unused-expression
|
// tslint:disable-next-line:no-unused-expression
|
||||||
wrapper.ref && wrapper.ref.updateFormMap$(formMap, wrapper.xFormWrapper.formData);
|
wrapper.ref && wrapper.ref.updateFormMap$(formMap, wrapper.xFormWrapper.formData);
|
||||||
};
|
};
|
||||||
@@ -103,7 +103,7 @@ export const createMigrationTasks = () => {
|
|||||||
label: 'Region',
|
label: 'Region',
|
||||||
value: 'region',
|
value: 'region',
|
||||||
}, {
|
}, {
|
||||||
label: 'Borker',
|
label: 'Broker',
|
||||||
value: 'broker',
|
value: 'broker',
|
||||||
}],
|
}],
|
||||||
rules: [{
|
rules: [{
|
||||||
@@ -141,7 +141,7 @@ export const createMigrationTasks = () => {
|
|||||||
placeholder: '请选择目标Region',
|
placeholder: '请选择目标Region',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
key: 'beginTime',
|
key: 'beginTime',
|
||||||
label: '计划开始时间',
|
label: '计划开始时间',
|
||||||
|
|||||||
@@ -0,0 +1,78 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import { Table, Modal, Tooltip, Icon, message, notification, Alert, Button } from 'component/antd';
|
||||||
|
import { app } from 'store/app';
|
||||||
|
import { getApplyOnlineColumns } from 'container/topic/config';
|
||||||
|
import { observer } from 'mobx-react';
|
||||||
|
import { modal } from 'store/modal';
|
||||||
|
import { users } from 'store/users';
|
||||||
|
import { urlPrefix } from 'constants/left-menu';
|
||||||
|
import { region } from 'store';
|
||||||
|
|
||||||
|
@observer
|
||||||
|
export class ConnectAppNewList extends React.Component {
|
||||||
|
|
||||||
|
public componentDidMount() {
|
||||||
|
app.getAppsConnections(modal.params);
|
||||||
|
}
|
||||||
|
|
||||||
|
public handleCancel = () => {
|
||||||
|
app.setAppsConnections([]);
|
||||||
|
modal.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
public handleSubmit = () => {
|
||||||
|
const connectionList = app.appsConnections;
|
||||||
|
if (connectionList && connectionList.length) {
|
||||||
|
return message.warning('存在连接信息,无法申请下线!');
|
||||||
|
}
|
||||||
|
const offlineParams = {
|
||||||
|
type: 11,
|
||||||
|
applicant: users.currentUser.username,
|
||||||
|
description: '',
|
||||||
|
extensions: JSON.stringify({ appId: modal.params }),
|
||||||
|
};
|
||||||
|
app.applyAppOffline(offlineParams).then((data: any) => {
|
||||||
|
notification.success({ message: '申请下线成功' });
|
||||||
|
window.location.href = `${urlPrefix}/user/order-detail/?orderId=${data.id}®ion=${region.currentRegion}`;
|
||||||
|
});
|
||||||
|
modal.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
public render() {
|
||||||
|
const connectionList = app.appsConnections;
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Modal
|
||||||
|
visible={true}
|
||||||
|
className="stream-debug-modal"
|
||||||
|
title="提示"
|
||||||
|
maskClosable={false}
|
||||||
|
onCancel={this.handleCancel}
|
||||||
|
// onOk={this.handleSubmit}
|
||||||
|
// okText="确认"
|
||||||
|
// cancelText="取消"
|
||||||
|
okButtonProps={{ disabled: app.connectLoading || !!app.appsConnections.length }}
|
||||||
|
footer={connectionList && connectionList.length ?
|
||||||
|
<Button type="primary" onClick={this.handleCancel}>确定</Button>
|
||||||
|
:
|
||||||
|
<>
|
||||||
|
<Button onClick={this.handleCancel}>取消</Button>
|
||||||
|
<Button type="primary" onClick={this.handleSubmit}>确定</Button>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
width={500}
|
||||||
|
>
|
||||||
|
<div style={{ textAlign: 'center', fontWeight: "bolder" }}>
|
||||||
|
{
|
||||||
|
connectionList && connectionList.length
|
||||||
|
?
|
||||||
|
<span>该应用已与Topic关联,请先解除应用与Topic之间的关系。<a href={`${urlPrefix}/topic/app-detail?appId=${modal.params}`}>点击查看</a></span>
|
||||||
|
:
|
||||||
|
<span>应用下线后,AppID、密钥将会失效,请谨慎操作!</span>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,6 +4,7 @@ import { message, Icon, notification, Modal, Table, Tooltip } from 'component/an
|
|||||||
import { IApprovalOrder, IBaseOrder, IOrderInfo } from 'types/base-type';
|
import { IApprovalOrder, IBaseOrder, IOrderInfo } from 'types/base-type';
|
||||||
import { admin } from 'store/admin';
|
import { admin } from 'store/admin';
|
||||||
import { modal } from 'store/modal';
|
import { modal } from 'store/modal';
|
||||||
|
import { cluster } from 'store/cluster';
|
||||||
import { cellStyle } from 'constants/table';
|
import { cellStyle } from 'constants/table';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
|
|
||||||
@@ -37,6 +38,12 @@ const renderModalTilte = (type: number, status: number) => {
|
|||||||
export const showApprovalModal = (info: IOrderInfo, status: number, from?: string) => {
|
export const showApprovalModal = (info: IOrderInfo, status: number, from?: string) => {
|
||||||
const { id, type } = info;
|
const { id, type } = info;
|
||||||
const formMap = [{
|
const formMap = [{
|
||||||
|
key: 'clusterId',
|
||||||
|
label: '所属集群',
|
||||||
|
type: 'input_number',
|
||||||
|
defaultValue: info.detail.logicalClusterName,
|
||||||
|
attrs: { disabled: true },
|
||||||
|
}, {
|
||||||
key: 'partitionNum',
|
key: 'partitionNum',
|
||||||
label: '分区数',
|
label: '分区数',
|
||||||
type: 'input_number',
|
type: 'input_number',
|
||||||
@@ -87,7 +94,7 @@ export const showApprovalModal = (info: IOrderInfo, status: number, from?: strin
|
|||||||
label: 'Region',
|
label: 'Region',
|
||||||
value: 'region',
|
value: 'region',
|
||||||
}, {
|
}, {
|
||||||
label: 'Borker',
|
label: 'Broker',
|
||||||
value: 'broker',
|
value: 'broker',
|
||||||
}],
|
}],
|
||||||
rules: [{ required: false, message: '请选择类型' }],
|
rules: [{ required: false, message: '请选择类型' }],
|
||||||
|
|||||||
@@ -399,8 +399,8 @@ export const updateAllTopicFormModal = () => {
|
|||||||
const formMap = wrapper.xFormWrapper.formMap;
|
const formMap = wrapper.xFormWrapper.formMap;
|
||||||
if (topic.authorities) {
|
if (topic.authorities) {
|
||||||
const { consume, send, checkStatus } = judgeAccessStatus(topic.authorities.access);
|
const { consume, send, checkStatus } = judgeAccessStatus(topic.authorities.access);
|
||||||
formMap[3].defaultValue = checkStatus;
|
formMap[2].defaultValue = checkStatus;
|
||||||
formMap[3].options = [{
|
formMap[2].options = [{
|
||||||
label: `消费权限${consume ? '(已拥有)' : ''}`,
|
label: `消费权限${consume ? '(已拥有)' : ''}`,
|
||||||
value: '1',
|
value: '1',
|
||||||
disabled: consume,
|
disabled: consume,
|
||||||
@@ -409,7 +409,7 @@ export const updateAllTopicFormModal = () => {
|
|||||||
value: '2',
|
value: '2',
|
||||||
disabled: send,
|
disabled: send,
|
||||||
}];
|
}];
|
||||||
formMap[3].rules = [{
|
formMap[2].rules = [{
|
||||||
required: true,
|
required: true,
|
||||||
validator: (rule: any, value: any, callback: any) => getPowerValidator(rule, value, callback, checkStatus, 'allTopic'),
|
validator: (rule: any, value: any, callback: any) => getPowerValidator(rule, value, callback, checkStatus, 'allTopic'),
|
||||||
}];
|
}];
|
||||||
@@ -476,7 +476,6 @@ export const showAllPermissionModal = (item: ITopic) => {
|
|||||||
|
|
||||||
const showAllPermission = (appId: string, item: ITopic, access: number) => {
|
const showAllPermission = (appId: string, item: ITopic, access: number) => {
|
||||||
const { consume, send, checkStatus } = judgeAccessStatus(access);
|
const { consume, send, checkStatus } = judgeAccessStatus(access);
|
||||||
|
|
||||||
const xFormModal = {
|
const xFormModal = {
|
||||||
formMap: [
|
formMap: [
|
||||||
{
|
{
|
||||||
@@ -489,16 +488,6 @@ const showAllPermission = (appId: string, item: ITopic, access: number) => {
|
|||||||
disabled: true,
|
disabled: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
key: 'clusterName',
|
|
||||||
label: '集群名称',
|
|
||||||
defaultValue: item.clusterName,
|
|
||||||
rules: [{ required: true, message: '请输入集群名称' }],
|
|
||||||
attrs: {
|
|
||||||
placeholder: '请输入集群名称',
|
|
||||||
disabled: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: 'appId',
|
key: 'appId',
|
||||||
label: '绑定应用',
|
label: '绑定应用',
|
||||||
@@ -526,6 +515,26 @@ const showAllPermission = (appId: string, item: ITopic, access: number) => {
|
|||||||
validator: (rule: any, value: any, callback: any) => getPowerValidator(rule, value, callback, checkStatus, 'allTopic'),
|
validator: (rule: any, value: any, callback: any) => getPowerValidator(rule, value, callback, checkStatus, 'allTopic'),
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// key: 'clusterName',
|
||||||
|
// label: '集群名称',
|
||||||
|
// defaultValue: item.clusterName,
|
||||||
|
// rules: [{ required: true, message: '请输入集群名称' }],
|
||||||
|
// attrs: {
|
||||||
|
// placeholder: '请输入集群名称',
|
||||||
|
// disabled: true,
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// key: 'clusterName',
|
||||||
|
// label: '集群名称',
|
||||||
|
// defaultValue: item.clusterName,
|
||||||
|
// rules: [{ required: true, message: '请输入集群名称' }],
|
||||||
|
// attrs: {
|
||||||
|
// placeholder: '请输入集群名称',
|
||||||
|
// disabled: true,
|
||||||
|
// },
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
key: 'description',
|
key: 'description',
|
||||||
label: '申请原因',
|
label: '申请原因',
|
||||||
@@ -587,16 +596,16 @@ export const showPermissionModal = (item: ITopic) => {
|
|||||||
disabled: true,
|
disabled: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
key: 'clusterName',
|
// key: 'clusterName',
|
||||||
label: '集群名称',
|
// label: '集群名称',
|
||||||
defaultValue: item.clusterName,
|
// defaultValue: item.clusterName,
|
||||||
rules: [{ required: true, message: '请输入集群名称' }],
|
// rules: [{ required: true, message: '请输入集群名称' }],
|
||||||
attrs: {
|
// attrs: {
|
||||||
placeholder: '请输入集群名称',
|
// placeholder: '请输入集群名称',
|
||||||
disabled: true,
|
// disabled: true,
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
key: 'appName',
|
key: 'appName',
|
||||||
label: '绑定应用',
|
label: '绑定应用',
|
||||||
|
|||||||
@@ -194,7 +194,7 @@ export class SearchAndFilterContainer extends React.Component<any, ISearchAndFil
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public renderColumnsFilter = (type: string) => {
|
public renderColumnsFilter = (type: string, params?: any) => {
|
||||||
return {
|
return {
|
||||||
filterIcon: this.renderFilterIcon.bind(null, type),
|
filterIcon: this.renderFilterIcon.bind(null, type),
|
||||||
filterDropdownVisible: this.state[type] as boolean,
|
filterDropdownVisible: this.state[type] as boolean,
|
||||||
|
|||||||
@@ -28,7 +28,8 @@ export class StaffSelect extends React.Component<IStaffSelectProps> {
|
|||||||
public getStaffList = () => {
|
public getStaffList = () => {
|
||||||
const { value } = this.props;
|
const { value } = this.props;
|
||||||
const current = users.currentUser.username || getCookie('username');
|
const current = users.currentUser.username || getCookie('username');
|
||||||
const principals = value || (current ? [current] : []);
|
const principals = [''];
|
||||||
|
// const principals = value || (current ? [current] : []);
|
||||||
const promises: any[] = [];
|
const promises: any[] = [];
|
||||||
|
|
||||||
for (const item of principals) {
|
for (const item of principals) {
|
||||||
@@ -64,7 +65,6 @@ export class StaffSelect extends React.Component<IStaffSelectProps> {
|
|||||||
const { value, isDisabled } = this.props;
|
const { value, isDisabled } = this.props;
|
||||||
const current = users.currentUser.username || getCookie('username');
|
const current = users.currentUser.username || getCookie('username');
|
||||||
const principals = value || (current ? [current] : []);
|
const principals = value || (current ? [current] : []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Select
|
<Select
|
||||||
mode="multiple"
|
mode="multiple"
|
||||||
@@ -72,6 +72,7 @@ export class StaffSelect extends React.Component<IStaffSelectProps> {
|
|||||||
defaultValue={principals}
|
defaultValue={principals}
|
||||||
onChange={(e: string[]) => this.handleChange(e)}
|
onChange={(e: string[]) => this.handleChange(e)}
|
||||||
onSearch={(e: string) => this.handleSearch(e)}
|
onSearch={(e: string) => this.handleSearch(e)}
|
||||||
|
onFocus={() => this.getFocus()}
|
||||||
disabled={isDisabled}
|
disabled={isDisabled}
|
||||||
{...searchProps}
|
{...searchProps}
|
||||||
>
|
>
|
||||||
@@ -83,6 +84,10 @@ export class StaffSelect extends React.Component<IStaffSelectProps> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getFocus() {
|
||||||
|
this.getStaffList();
|
||||||
|
}
|
||||||
|
|
||||||
public handleSearch(params: string) {
|
public handleSearch(params: string) {
|
||||||
debounce(() => {
|
debounce(() => {
|
||||||
getStaff(params).then((data: IStaff[]) => {
|
getStaff(params).then((data: IStaff[]) => {
|
||||||
@@ -98,9 +103,9 @@ export class StaffSelect extends React.Component<IStaffSelectProps> {
|
|||||||
});
|
});
|
||||||
}, 300)();
|
}, 300)();
|
||||||
}
|
}
|
||||||
|
|
||||||
public handleChange(params: string[]) {
|
public handleChange(params: string[]) {
|
||||||
const { onChange } = this.props;
|
const { onChange } = this.props;
|
||||||
|
|
||||||
// tslint:disable-next-line:no-unused-expression
|
// tslint:disable-next-line:no-unused-expression
|
||||||
onChange && onChange(params);
|
onChange && onChange(params);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -129,16 +129,17 @@ export class BaseInformation extends React.Component<IInfoProps> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public realTimeTraffic() {
|
public realTimeTraffic() {
|
||||||
const realTraffic = topic.realTraffic;
|
// const realTraffic = topic.realTraffic;
|
||||||
if (realTraffic) {
|
|
||||||
return (
|
// if (realTraffic) {
|
||||||
<>
|
return (
|
||||||
<Spin spinning={topic.realLoading}>
|
<>
|
||||||
{renderTrafficTable(this.updateRealStatus, StatusGragh)}
|
<Spin spinning={topic.realLoading}>
|
||||||
</Spin>
|
{renderTrafficTable(this.updateRealStatus, StatusGragh)}
|
||||||
</>
|
</Spin>
|
||||||
);
|
</>
|
||||||
}
|
);
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
public realTimeConsume() {
|
public realTimeConsume() {
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ export const getInfoRenderItem = (orderInfo: IOrderInfo, result: boolean) => {
|
|||||||
value: orderInfo.detail.principals,
|
value: orderInfo.detail.principals,
|
||||||
}];
|
}];
|
||||||
|
|
||||||
const clusterTypelist: ILabelValue[] = [ {
|
const clusterTypelist: ILabelValue[] = [{
|
||||||
label: '物理集群名称',
|
label: '物理集群名称',
|
||||||
value: orderInfo.detail.physicalClusterName,
|
value: orderInfo.detail.physicalClusterName,
|
||||||
}, {
|
}, {
|
||||||
@@ -80,23 +80,25 @@ export const getInfoRenderItem = (orderInfo: IOrderInfo, result: boolean) => {
|
|||||||
phyAuthOfflineList.splice(3, 0, ...clusterTypelist);
|
phyAuthOfflineList.splice(3, 0, ...clusterTypelist);
|
||||||
|
|
||||||
const clusterInfoList: ILabelValue[] = [{
|
const clusterInfoList: ILabelValue[] = [{
|
||||||
label: '流入流量',
|
label: '流入流量',
|
||||||
value: `${transBToMB(orderInfo.detail.bytesIn)} MB/s`,
|
value: `${transBToMB(orderInfo.detail.bytesIn)} MB/s`,
|
||||||
}, {
|
},
|
||||||
label: '数据中心',
|
// {
|
||||||
value: orderInfo.detail.idc,
|
// label: '数据中心',
|
||||||
}, {
|
// value: orderInfo.detail.idc,
|
||||||
label: '集群类型',
|
// },
|
||||||
value: clusterTypeMap[orderInfo.detail.mode],
|
{
|
||||||
}, {
|
label: '集群类型',
|
||||||
label: '应用ID',
|
value: clusterTypeMap[orderInfo.detail.mode],
|
||||||
value: orderInfo.detail.appId,
|
}, {
|
||||||
},
|
label: '应用ID',
|
||||||
|
value: orderInfo.detail.appId,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const clusterOfflineList: ILabelValue[] = expansionList;
|
const clusterOfflineList: ILabelValue[] = expansionList;
|
||||||
const phyClusterOfflineList: ILabelValue[] = clusterTypelist;
|
const phyClusterOfflineList: ILabelValue[] = clusterTypelist;
|
||||||
const maxAvgBytesIn = orderInfo.detail.maxAvgBytesInList && orderInfo.detail.maxAvgBytesInList.map(item => {
|
const maxAvgBytesIn = orderInfo.detail.maxAvgBytesInList && orderInfo.detail.maxAvgBytesInList.map(item => {
|
||||||
const val = `${transBToMB(item)} MB/s`;
|
const val = `${transBToMB(item)} MB/s`;
|
||||||
return val;
|
return val;
|
||||||
});
|
});
|
||||||
@@ -125,18 +127,18 @@ export const getInfoRenderItem = (orderInfo: IOrderInfo, result: boolean) => {
|
|||||||
phyQuotaInfoList.splice(3, 0, ...clusterTypelist);
|
phyQuotaInfoList.splice(3, 0, ...clusterTypelist);
|
||||||
|
|
||||||
const partitionList: ILabelValue[] = expansionList.concat([{
|
const partitionList: ILabelValue[] = expansionList.concat([{
|
||||||
label: 'Topic名称',
|
label: 'Topic名称',
|
||||||
value: orderInfo.detail.topicName,
|
value: orderInfo.detail.topicName,
|
||||||
}, {
|
}, {
|
||||||
label: '申请分区数',
|
label: '申请分区数',
|
||||||
value: orderInfo.detail.needIncrPartitionNum,
|
value: orderInfo.detail.needIncrPartitionNum,
|
||||||
}, {
|
}, {
|
||||||
label: '当前流入流量',
|
label: '当前流入流量',
|
||||||
value: `${transBToMB(orderInfo.detail.bytesIn)} MB/s`,
|
value: `${transBToMB(orderInfo.detail.bytesIn)} MB/s`,
|
||||||
}, {
|
}, {
|
||||||
label: '近三天峰值流入流量',
|
label: '近三天峰值流入流量',
|
||||||
value: maxAvgBytesIn && maxAvgBytesIn.join('、'),
|
value: maxAvgBytesIn && maxAvgBytesIn.join('、'),
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const phyPartitionList: ILabelValue[] = partitionList.filter(i => !cluster.includes(i.label));
|
const phyPartitionList: ILabelValue[] = partitionList.filter(i => !cluster.includes(i.label));
|
||||||
|
|||||||
@@ -133,6 +133,12 @@ export class OrderDetail extends React.Component {
|
|||||||
width: '20%',
|
width: '20%',
|
||||||
render: (t: string) => <span>{t === 'consumer' ? '消费' : '生产'}</span>,
|
render: (t: string) => <span>{t === 'consumer' ? '消费' : '生产'}</span>,
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: '客户端语言',
|
||||||
|
// dataIndex: 'language',
|
||||||
|
// key: 'language',
|
||||||
|
// width: '20%',
|
||||||
|
// },
|
||||||
];
|
];
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { observer } from 'mobx-react';
|
|||||||
import { modal } from 'store/modal';
|
import { modal } from 'store/modal';
|
||||||
import { ConnectTopicList } from '../modal/connect-topic-list';
|
import { ConnectTopicList } from '../modal/connect-topic-list';
|
||||||
import { ConnectAppList } from '../modal/offline-app-modal';
|
import { ConnectAppList } from '../modal/offline-app-modal';
|
||||||
|
import { ConnectAppNewList } from '../modal/offline-app-modal-new';
|
||||||
import { CancelTopicPermission } from 'container/modal/cancel-topic-permission';
|
import { CancelTopicPermission } from 'container/modal/cancel-topic-permission';
|
||||||
import { OfflineClusterModal } from 'container/modal/offline-cluster-modal';
|
import { OfflineClusterModal } from 'container/modal/offline-cluster-modal';
|
||||||
import { RenderOrderOpResult } from 'container/modal/order';
|
import { RenderOrderOpResult } from 'container/modal/order';
|
||||||
@@ -22,6 +23,7 @@ export default class AllCustomModalInOne extends React.Component {
|
|||||||
|
|
||||||
const modalMap = {
|
const modalMap = {
|
||||||
offlineTopicModal: <ConnectTopicList />,
|
offlineTopicModal: <ConnectTopicList />,
|
||||||
|
offlineAppNewModal: <ConnectAppNewList />,
|
||||||
offlineAppModal: <ConnectAppList />,
|
offlineAppModal: <ConnectAppList />,
|
||||||
cancelTopicPermission: <CancelTopicPermission />,
|
cancelTopicPermission: <CancelTopicPermission />,
|
||||||
offlineClusterModal: <OfflineClusterModal />,
|
offlineClusterModal: <OfflineClusterModal />,
|
||||||
|
|||||||
@@ -418,6 +418,13 @@ export const getMetaData = (needDetail: boolean = true) => {
|
|||||||
return fetch(`/rd/clusters/basic-info?need-detail=${needDetail}`);
|
return fetch(`/rd/clusters/basic-info?need-detail=${needDetail}`);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getOperationRecordData = (params: any) => {
|
||||||
|
return fetch(`/rd/operate-record`,{
|
||||||
|
method: 'POST',
|
||||||
|
body: JSON.stringify(params),
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
export const getConfigure = () => {
|
export const getConfigure = () => {
|
||||||
return fetch(`/rd/configs`);
|
return fetch(`/rd/configs`);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import CommonRoutePage from './common';
|
|||||||
import urlParser from 'lib/url-parser';
|
import urlParser from 'lib/url-parser';
|
||||||
import urlQuery from 'store/url-query';
|
import urlQuery from 'store/url-query';
|
||||||
import { AppDetail } from 'container/app';
|
import { AppDetail } from 'container/app';
|
||||||
import { AdminAppList, ClusterList, ClusterDetail, BrokerDetail, UserManagement, VersionManagement, OperationManagement, OperationDetail, BillManagement, ConfigureManagement, IndividualBill, MigrationDetail, BillDetail } from 'container/admin';
|
import { AdminAppList, ClusterList, ClusterDetail, BrokerDetail, UserManagement, VersionManagement, OperationManagement, OperationDetail, BillManagement, ConfigureManagement, IndividualBill, MigrationDetail, BillDetail, OperationRecord } from 'container/admin';
|
||||||
import { PlatformManagement } from 'container/admin/platform-management';
|
import { PlatformManagement } from 'container/admin/platform-management';
|
||||||
|
|
||||||
export default class Home extends React.Component<any> {
|
export default class Home extends React.Component<any> {
|
||||||
@@ -52,7 +52,11 @@ export default class Home extends React.Component<any> {
|
|||||||
path: '/admin/migration-detail',
|
path: '/admin/migration-detail',
|
||||||
exact: true,
|
exact: true,
|
||||||
component: MigrationDetail,
|
component: MigrationDetail,
|
||||||
}];
|
}, {
|
||||||
|
path: '/admin/operation-record',
|
||||||
|
exact: true,
|
||||||
|
component: OperationRecord,
|
||||||
|
},];
|
||||||
|
|
||||||
constructor(props: any) {
|
constructor(props: any) {
|
||||||
super(props);
|
super(props);
|
||||||
@@ -66,7 +70,7 @@ export default class Home extends React.Component<any> {
|
|||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
return (
|
return (
|
||||||
<CommonRoutePage pageRoute={this.pageRoute} mode="admin" active="admin"/>
|
<CommonRoutePage pageRoute={this.pageRoute} mode="admin" active="admin" />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import {
|
|||||||
getTopicsBasicInfo,
|
getTopicsBasicInfo,
|
||||||
getTasksKafkaFiles,
|
getTasksKafkaFiles,
|
||||||
getMetaData,
|
getMetaData,
|
||||||
|
getOperationRecordData,
|
||||||
getConfigure,
|
getConfigure,
|
||||||
addNewConfigure,
|
addNewConfigure,
|
||||||
editConfigure,
|
editConfigure,
|
||||||
@@ -103,6 +104,14 @@ class Admin {
|
|||||||
@observable
|
@observable
|
||||||
public metaList: IMetaData[] = [];
|
public metaList: IMetaData[] = [];
|
||||||
|
|
||||||
|
@observable
|
||||||
|
public oRList: any[] = [];
|
||||||
|
|
||||||
|
@observable
|
||||||
|
public oRparams:any={
|
||||||
|
moduleId:0
|
||||||
|
};
|
||||||
|
|
||||||
@observable
|
@observable
|
||||||
public configureList: IConfigure[] = [];
|
public configureList: IConfigure[] = [];
|
||||||
|
|
||||||
@@ -319,6 +328,15 @@ class Admin {
|
|||||||
}) : [];
|
}) : [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@action.bound
|
||||||
|
public setOperationRecordList(data:any){
|
||||||
|
this.setLoading(false);
|
||||||
|
this.oRList = data ? data.map((item:any, index: any) => {
|
||||||
|
item.key = index;
|
||||||
|
return item;
|
||||||
|
}) : [];
|
||||||
|
}
|
||||||
|
|
||||||
@action.bound
|
@action.bound
|
||||||
public setConfigure(data: IConfigure[]) {
|
public setConfigure(data: IConfigure[]) {
|
||||||
this.configureList = data ? data.map((item, index) => {
|
this.configureList = data ? data.map((item, index) => {
|
||||||
@@ -657,6 +675,12 @@ class Admin {
|
|||||||
getMetaData(needDetail).then(this.setMetaList);
|
getMetaData(needDetail).then(this.setMetaList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getOperationRecordData(params: any) {
|
||||||
|
this.setLoading(true);
|
||||||
|
this.oRparams = params
|
||||||
|
getOperationRecordData(params).then(this.setOperationRecordList);
|
||||||
|
}
|
||||||
|
|
||||||
public getConfigure() {
|
public getConfigure() {
|
||||||
getConfigure().then(this.setConfigure);
|
getConfigure().then(this.setConfigure);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,6 +31,12 @@ class CustomModal {
|
|||||||
this.params = value;
|
this.params = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@action.bound
|
||||||
|
public showOfflineAppNewModal(value: any) {
|
||||||
|
this.modalId = 'offlineAppNewModal';
|
||||||
|
this.params = value;
|
||||||
|
}
|
||||||
|
|
||||||
@action.bound
|
@action.bound
|
||||||
public showOrderOpResult() {
|
public showOrderOpResult() {
|
||||||
this.modalId = 'orderOpResult';
|
this.modalId = 'orderOpResult';
|
||||||
|
|||||||
@@ -6,6 +6,16 @@
|
|||||||
url('//at.alicdn.com/t/font_1251424_q66z80q0hio.ttf?t=1577526422376') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
|
url('//at.alicdn.com/t/font_1251424_q66z80q0hio.ttf?t=1577526422376') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
|
||||||
url('//at.alicdn.com/t/font_1251424_q66z80q0hio.svg?t=1577526422376#kafka-manager') format('svg'); /* iOS 4.1- */
|
url('//at.alicdn.com/t/font_1251424_q66z80q0hio.svg?t=1577526422376#kafka-manager') format('svg'); /* iOS 4.1- */
|
||||||
}
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: 'kafka-manager';
|
||||||
|
/* project id 2406313 */
|
||||||
|
src: url('//at.alicdn.com/t/font_2406313_rbsze6uqtta.eot');
|
||||||
|
src: url('//at.alicdn.com/t/font_2406313_rbsze6uqtta.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('//at.alicdn.com/t/font_2406313_rbsze6uqtta.woff2') format('woff2'),
|
||||||
|
url('//at.alicdn.com/t/font_2406313_rbsze6uqtta.woff') format('woff'),
|
||||||
|
url('//at.alicdn.com/t/font_2406313_rbsze6uqtta.ttf') format('truetype'),
|
||||||
|
url('//at.alicdn.com/t/font_2406313_rbsze6uqtta.svg#iconfont') format('svg');
|
||||||
|
}
|
||||||
|
|
||||||
.kafka-manager {
|
.kafka-manager {
|
||||||
font-family: "kafka-manager" !important;
|
font-family: "kafka-manager" !important;
|
||||||
@@ -15,6 +25,15 @@
|
|||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* .kafka-manager-record {
|
||||||
|
font-family: "kafka-manager" !important;
|
||||||
|
font-size: 16px;
|
||||||
|
font-style: normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
} */
|
||||||
|
|
||||||
|
|
||||||
.k-icon-fuwurenwuguanli:before {
|
.k-icon-fuwurenwuguanli:before {
|
||||||
content: "\e660";
|
content: "\e660";
|
||||||
}
|
}
|
||||||
@@ -47,6 +66,10 @@
|
|||||||
content: "\e634";
|
content: "\e634";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.k-icon-operationrecord:before {
|
||||||
|
content: "\e772";
|
||||||
|
}
|
||||||
|
|
||||||
.k-icon-menu2:before {
|
.k-icon-menu2:before {
|
||||||
content: "\e609";
|
content: "\e609";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ export interface IUser {
|
|||||||
chineseName?: string;
|
chineseName?: string;
|
||||||
department?: string;
|
department?: string;
|
||||||
key?: number;
|
key?: number;
|
||||||
confirmPassword?:string
|
confirmPassword?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IOffset {
|
export interface IOffset {
|
||||||
@@ -939,7 +939,7 @@ export interface INewLogical {
|
|||||||
logicalClusterName?: string;
|
logicalClusterName?: string;
|
||||||
logicalClusterNameCn?: string;
|
logicalClusterNameCn?: string;
|
||||||
regionIdList: number[];
|
regionIdList: number[];
|
||||||
logicalClusterIdentification?:string
|
logicalClusterIdentification?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IPartitionsLocation {
|
export interface IPartitionsLocation {
|
||||||
|
|||||||
@@ -17,5 +17,5 @@ public interface OperateRecordService {
|
|||||||
|
|
||||||
int insert(String operator, ModuleEnum module, String resourceName, OperateEnum operate, Map<String, String> content);
|
int insert(String operator, ModuleEnum module, String resourceName, OperateEnum operate, Map<String, String> content);
|
||||||
|
|
||||||
List<OperateRecordDO> queryByCondt(OperateRecordDTO dto);
|
List<OperateRecordDO> queryByCondition(OperateRecordDTO dto);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ import java.util.Map;
|
|||||||
public interface TopicManagerService {
|
public interface TopicManagerService {
|
||||||
List<TopicDO> listAll();
|
List<TopicDO> listAll();
|
||||||
|
|
||||||
|
List<TopicDO> getByClusterIdFromCache(Long clusterId);
|
||||||
|
|
||||||
List<TopicDO> getByClusterId(Long clusterId);
|
List<TopicDO> getByClusterId(Long clusterId);
|
||||||
|
|
||||||
TopicDO getByTopicName(Long clusterId, String topicName);
|
TopicDO getByTopicName(Long clusterId, String topicName);
|
||||||
@@ -30,6 +32,15 @@ public interface TopicManagerService {
|
|||||||
|
|
||||||
Map<String, List<Double>> getTopicMaxAvgBytesIn(Long clusterId, Integer latestDay, Double minMaxAvgBytesIn);
|
Map<String, List<Double>> getTopicMaxAvgBytesIn(Long clusterId, Integer latestDay, Double minMaxAvgBytesIn);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取指定时间范围内Topic的峰值均值流量
|
||||||
|
* @param clusterId 集群ID
|
||||||
|
* @param topicName Topic名称
|
||||||
|
* @param startTime 开始时间
|
||||||
|
* @param endTime 结束时间
|
||||||
|
* @param maxAvgDay 最大几天的均值
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
Double getTopicMaxAvgBytesIn(Long clusterId, String topicName, Date startTime, Date endTime, Integer maxAvgDay);
|
Double getTopicMaxAvgBytesIn(Long clusterId, String topicName, Date startTime, Date endTime, Integer maxAvgDay);
|
||||||
|
|
||||||
TopicStatisticsDO getByTopicAndDay(Long clusterId, String topicName, String gmtDay);
|
TopicStatisticsDO getByTopicAndDay(Long clusterId, String topicName, String gmtDay);
|
||||||
|
|||||||
@@ -1,16 +1,17 @@
|
|||||||
package com.xiaojukeji.kafka.manager.service.service.gateway.impl;
|
package com.xiaojukeji.kafka.manager.service.service.gateway.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.bizenum.ModuleEnum;
|
import com.xiaojukeji.kafka.manager.common.bizenum.ModuleEnum;
|
||||||
import com.xiaojukeji.kafka.manager.common.bizenum.OperateEnum;
|
import com.xiaojukeji.kafka.manager.common.bizenum.OperateEnum;
|
||||||
import com.xiaojukeji.kafka.manager.common.bizenum.OperationStatusEnum;
|
import com.xiaojukeji.kafka.manager.common.bizenum.OperationStatusEnum;
|
||||||
|
import com.xiaojukeji.kafka.manager.common.bizenum.TopicAuthorityEnum;
|
||||||
|
import com.xiaojukeji.kafka.manager.common.entity.ResultStatus;
|
||||||
|
import com.xiaojukeji.kafka.manager.common.entity.ao.gateway.TopicQuota;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.pojo.OperateRecordDO;
|
import com.xiaojukeji.kafka.manager.common.entity.pojo.OperateRecordDO;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.pojo.gateway.AuthorityDO;
|
import com.xiaojukeji.kafka.manager.common.entity.pojo.gateway.AuthorityDO;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.pojo.gateway.KafkaAclDO;
|
import com.xiaojukeji.kafka.manager.common.entity.pojo.gateway.KafkaAclDO;
|
||||||
import com.xiaojukeji.kafka.manager.dao.gateway.AuthorityDao;
|
import com.xiaojukeji.kafka.manager.common.utils.JsonUtils;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.ao.gateway.TopicQuota;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.ResultStatus;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.utils.ValidateUtils;
|
import com.xiaojukeji.kafka.manager.common.utils.ValidateUtils;
|
||||||
|
import com.xiaojukeji.kafka.manager.dao.gateway.AuthorityDao;
|
||||||
import com.xiaojukeji.kafka.manager.dao.gateway.KafkaAclDao;
|
import com.xiaojukeji.kafka.manager.dao.gateway.KafkaAclDao;
|
||||||
import com.xiaojukeji.kafka.manager.service.service.OperateRecordService;
|
import com.xiaojukeji.kafka.manager.service.service.OperateRecordService;
|
||||||
import com.xiaojukeji.kafka.manager.service.service.gateway.AuthorityService;
|
import com.xiaojukeji.kafka.manager.service.service.gateway.AuthorityService;
|
||||||
@@ -20,10 +21,8 @@ import org.slf4j.LoggerFactory;
|
|||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.HashMap;
|
import java.util.stream.Collectors;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author zhongyuankai
|
* @author zhongyuankai
|
||||||
@@ -120,7 +119,7 @@ public class AuthorityServiceImpl implements AuthorityService {
|
|||||||
operateRecordDO.setModuleId(ModuleEnum.AUTHORITY.getCode());
|
operateRecordDO.setModuleId(ModuleEnum.AUTHORITY.getCode());
|
||||||
operateRecordDO.setOperateId(OperateEnum.DELETE.getCode());
|
operateRecordDO.setOperateId(OperateEnum.DELETE.getCode());
|
||||||
operateRecordDO.setResource(topicName);
|
operateRecordDO.setResource(topicName);
|
||||||
operateRecordDO.setContent(JSONObject.toJSONString(content));
|
operateRecordDO.setContent(JsonUtils.toJSONString(content));
|
||||||
operateRecordDO.setOperator(operator);
|
operateRecordDO.setOperator(operator);
|
||||||
operateRecordService.insert(operateRecordDO);
|
operateRecordService.insert(operateRecordDO);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@@ -150,7 +149,7 @@ public class AuthorityServiceImpl implements AuthorityService {
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOGGER.error("get authority failed, clusterId:{} topicName:{}.", clusterId, topicName, e);
|
LOGGER.error("get authority failed, clusterId:{} topicName:{}.", clusterId, topicName, e);
|
||||||
}
|
}
|
||||||
return null;
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -164,7 +163,11 @@ public class AuthorityServiceImpl implements AuthorityService {
|
|||||||
if (ValidateUtils.isEmptyList(doList)) {
|
if (ValidateUtils.isEmptyList(doList)) {
|
||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
return doList;
|
|
||||||
|
// 去除掉权限列表中无权限的数据
|
||||||
|
return doList.stream()
|
||||||
|
.filter(authorityDO -> !TopicAuthorityEnum.DENY.getCode().equals(authorityDO.getAccess()))
|
||||||
|
.collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -66,7 +66,10 @@ public class AdminServiceImpl implements AdminService {
|
|||||||
String applicant,
|
String applicant,
|
||||||
String operator) {
|
String operator) {
|
||||||
List<Integer> fullBrokerIdList = regionService.getFullBrokerIdList(clusterDO.getId(), regionId, brokerIdList);
|
List<Integer> fullBrokerIdList = regionService.getFullBrokerIdList(clusterDO.getId(), regionId, brokerIdList);
|
||||||
if (PhysicalClusterMetadataManager.getNotAliveBrokerNum(clusterDO.getId(), fullBrokerIdList) > DEFAULT_DEAD_BROKER_LIMIT_NUM) {
|
|
||||||
|
Long notAliveBrokerNum = PhysicalClusterMetadataManager.getNotAliveBrokerNum(clusterDO.getId(), fullBrokerIdList);
|
||||||
|
if (notAliveBrokerNum >= fullBrokerIdList.size() || notAliveBrokerNum > DEFAULT_DEAD_BROKER_LIMIT_NUM) {
|
||||||
|
// broker全挂了,或者是挂的数量大于了DEFAULT_DEAD_BROKER_LIMIT_NUM时, 则认为broker参数不合法
|
||||||
return ResultStatus.BROKER_NOT_EXIST;
|
return ResultStatus.BROKER_NOT_EXIST;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -82,6 +82,7 @@ public class ClusterServiceImpl implements ClusterService {
|
|||||||
content.put("security properties", clusterDO.getSecurityProperties());
|
content.put("security properties", clusterDO.getSecurityProperties());
|
||||||
content.put("jmx properties", clusterDO.getJmxProperties());
|
content.put("jmx properties", clusterDO.getJmxProperties());
|
||||||
operateRecordService.insert(operator, ModuleEnum.CLUSTER, clusterDO.getClusterName(), OperateEnum.ADD, content);
|
operateRecordService.insert(operator, ModuleEnum.CLUSTER, clusterDO.getClusterName(), OperateEnum.ADD, content);
|
||||||
|
|
||||||
if (clusterDao.insert(clusterDO) <= 0) {
|
if (clusterDao.insert(clusterDO) <= 0) {
|
||||||
LOGGER.error("add new cluster failed, clusterDO:{}.", clusterDO);
|
LOGGER.error("add new cluster failed, clusterDO:{}.", clusterDO);
|
||||||
return ResultStatus.MYSQL_ERROR;
|
return ResultStatus.MYSQL_ERROR;
|
||||||
|
|||||||
@@ -41,8 +41,8 @@ public class OperateRecordServiceImpl implements OperateRecordService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<OperateRecordDO> queryByCondt(OperateRecordDTO dto) {
|
public List<OperateRecordDO> queryByCondition(OperateRecordDTO dto) {
|
||||||
return operateRecordDao.queryByCondt(
|
return operateRecordDao.queryByCondition(
|
||||||
dto.getModuleId(),
|
dto.getModuleId(),
|
||||||
dto.getOperateId(),
|
dto.getOperateId(),
|
||||||
dto.getOperator(),
|
dto.getOperator(),
|
||||||
|
|||||||
@@ -95,6 +95,14 @@ public class TopicManagerServiceImpl implements TopicManagerService {
|
|||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<TopicDO> getByClusterIdFromCache(Long clusterId) {
|
||||||
|
if (clusterId == null) {
|
||||||
|
return new ArrayList<>();
|
||||||
|
}
|
||||||
|
return topicDao.getByClusterIdFromCache(clusterId);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<TopicDO> getByClusterId(Long clusterId) {
|
public List<TopicDO> getByClusterId(Long clusterId) {
|
||||||
if (clusterId == null) {
|
if (clusterId == null) {
|
||||||
@@ -139,12 +147,14 @@ public class TopicManagerServiceImpl implements TopicManagerService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Double getTopicMaxAvgBytesIn(Long clusterId,
|
public Double getTopicMaxAvgBytesIn(Long clusterId, String topicName, Date startTime, Date endTime, Integer maxAvgDay) {
|
||||||
String topicName,
|
try {
|
||||||
Date startTime,
|
return topicStatisticsDao.getTopicMaxAvgBytesIn(clusterId, topicName, startTime, endTime, maxAvgDay);
|
||||||
Date endTime,
|
} catch (Exception e) {
|
||||||
Integer maxAvgDay) {
|
LOGGER.error("class=TopicManagerServiceImpl||method=getTopicMaxAvgBytesIn||clusterId={}||topicName={}||startTime={}||endTime={}||maxAvgDay={}||errMsg={}",
|
||||||
return topicStatisticsDao.getTopicMaxAvgBytesIn(clusterId, topicName, startTime, endTime, maxAvgDay);
|
clusterId, topicName, startTime, endTime, maxAvgDay, e.getMessage());
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -381,7 +381,7 @@ public class TopicServiceImpl implements TopicService {
|
|||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
List<TopicDO> topicDOList = topicManagerService.getByClusterId(clusterId);
|
List<TopicDO> topicDOList = topicManagerService.getByClusterIdFromCache(clusterId);
|
||||||
if (ValidateUtils.isNull(topicDOList)) {
|
if (ValidateUtils.isNull(topicDOList)) {
|
||||||
topicDOList = new ArrayList<>();
|
topicDOList = new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,5 +14,5 @@ public interface OperateRecordDao {
|
|||||||
|
|
||||||
int insert(OperateRecordDO operateRecordDO);
|
int insert(OperateRecordDO operateRecordDO);
|
||||||
|
|
||||||
List<OperateRecordDO> queryByCondt(Integer moduleId, Integer operateId, String operator, Date startTime, Date endTime);
|
List<OperateRecordDO> queryByCondition(Integer moduleId, Integer operateId, String operator, Date startTime, Date endTime);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ public interface TopicDao {
|
|||||||
|
|
||||||
TopicDO getByTopicName(Long clusterId, String topicName);
|
TopicDO getByTopicName(Long clusterId, String topicName);
|
||||||
|
|
||||||
|
List<TopicDO> getByClusterIdFromCache(Long clusterId);
|
||||||
|
|
||||||
List<TopicDO> getByClusterId(Long clusterId);
|
List<TopicDO> getByClusterId(Long clusterId);
|
||||||
|
|
||||||
List<TopicDO> getByAppId(String appId);
|
List<TopicDO> getByAppId(String appId);
|
||||||
|
|||||||
@@ -78,13 +78,14 @@ public class AppDaoImpl implements AppDao {
|
|||||||
* 更新APP缓存
|
* 更新APP缓存
|
||||||
*/
|
*/
|
||||||
private synchronized void updateTopicCache(List<AppDO> doList, long timestamp) {
|
private synchronized void updateTopicCache(List<AppDO> doList, long timestamp) {
|
||||||
|
if (APP_CACHE_LATEST_UPDATE_TIME == Constant.START_TIMESTAMP) {
|
||||||
|
APP_MAP.clear();
|
||||||
|
}
|
||||||
|
|
||||||
if (doList == null || doList.isEmpty() || APP_CACHE_LATEST_UPDATE_TIME >= timestamp) {
|
if (doList == null || doList.isEmpty() || APP_CACHE_LATEST_UPDATE_TIME >= timestamp) {
|
||||||
// 本次无数据更新, 或者本次更新过时 时, 忽略本次更新
|
// 本次无数据更新, 或者本次更新过时 时, 忽略本次更新
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (APP_CACHE_LATEST_UPDATE_TIME == Constant.START_TIMESTAMP) {
|
|
||||||
APP_MAP.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
for (AppDO elem: doList) {
|
for (AppDO elem: doList) {
|
||||||
APP_MAP.put(elem.getAppId(), elem);
|
APP_MAP.put(elem.getAppId(), elem);
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ public class AuthorityDaoImpl implements AuthorityDao {
|
|||||||
|
|
||||||
|
|
||||||
private void updateAuthorityCache() {
|
private void updateAuthorityCache() {
|
||||||
Long timestamp = System.currentTimeMillis();
|
long timestamp = System.currentTimeMillis();
|
||||||
|
|
||||||
if (timestamp + 1000 <= AUTHORITY_CACHE_LATEST_UPDATE_TIME) {
|
if (timestamp + 1000 <= AUTHORITY_CACHE_LATEST_UPDATE_TIME) {
|
||||||
// 近一秒内的请求不走db
|
// 近一秒内的请求不走db
|
||||||
@@ -109,13 +109,14 @@ public class AuthorityDaoImpl implements AuthorityDao {
|
|||||||
* 更新Topic缓存
|
* 更新Topic缓存
|
||||||
*/
|
*/
|
||||||
private synchronized void updateAuthorityCache(List<AuthorityDO> doList, Long timestamp) {
|
private synchronized void updateAuthorityCache(List<AuthorityDO> doList, Long timestamp) {
|
||||||
|
if (AUTHORITY_CACHE_LATEST_UPDATE_TIME == Constant.START_TIMESTAMP) {
|
||||||
|
AUTHORITY_MAP.clear();
|
||||||
|
}
|
||||||
|
|
||||||
if (doList == null || doList.isEmpty() || AUTHORITY_CACHE_LATEST_UPDATE_TIME >= timestamp) {
|
if (doList == null || doList.isEmpty() || AUTHORITY_CACHE_LATEST_UPDATE_TIME >= timestamp) {
|
||||||
// 本次无数据更新, 或者本次更新过时 时, 忽略本次更新
|
// 本次无数据更新, 或者本次更新过时 时, 忽略本次更新
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (AUTHORITY_CACHE_LATEST_UPDATE_TIME == Constant.START_TIMESTAMP) {
|
|
||||||
AUTHORITY_MAP.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
for (AuthorityDO elem: doList) {
|
for (AuthorityDO elem: doList) {
|
||||||
Map<Long, Map<String, AuthorityDO>> doMap =
|
Map<Long, Map<String, AuthorityDO>> doMap =
|
||||||
|
|||||||
@@ -30,13 +30,13 @@ public class OperateRecordDaoImpl implements OperateRecordDao {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<OperateRecordDO> queryByCondt(Integer moduleId, Integer operateId, String operator, Date startTime, Date endTime) {
|
public List<OperateRecordDO> queryByCondition(Integer moduleId, Integer operateId, String operator, Date startTime, Date endTime) {
|
||||||
Map<String, Object> params = new HashMap<>(5);
|
Map<String, Object> params = new HashMap<>(5);
|
||||||
params.put("moduleId", moduleId);
|
params.put("moduleId", moduleId);
|
||||||
params.put("operateId", operateId);
|
params.put("operateId", operateId);
|
||||||
params.put("operator", operator);
|
params.put("operator", operator);
|
||||||
params.put("startTime", startTime);
|
params.put("startTime", startTime);
|
||||||
params.put("endTime", endTime);
|
params.put("endTime", endTime);
|
||||||
return sqlSession.selectList("OperateRecordDao.queryByCondt", params);
|
return sqlSession.selectList("OperateRecordDao.queryByCondition", params);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,11 +62,16 @@ public class TopicDaoImpl implements TopicDao {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<TopicDO> getByClusterId(Long clusterId) {
|
public List<TopicDO> getByClusterIdFromCache(Long clusterId) {
|
||||||
updateTopicCache();
|
updateTopicCache();
|
||||||
return new ArrayList<>(TOPIC_MAP.getOrDefault(clusterId, Collections.emptyMap()).values());
|
return new ArrayList<>(TOPIC_MAP.getOrDefault(clusterId, Collections.emptyMap()).values());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<TopicDO> getByClusterId(Long clusterId) {
|
||||||
|
return sqlSession.selectList("TopicDao.getByClusterId", clusterId);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<TopicDO> getByAppId(String appId) {
|
public List<TopicDO> getByAppId(String appId) {
|
||||||
return sqlSession.selectList("TopicDao.getByAppId", appId);
|
return sqlSession.selectList("TopicDao.getByAppId", appId);
|
||||||
@@ -92,7 +97,7 @@ public class TopicDaoImpl implements TopicDao {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void updateTopicCache() {
|
private void updateTopicCache() {
|
||||||
Long timestamp = System.currentTimeMillis();
|
long timestamp = System.currentTimeMillis();
|
||||||
|
|
||||||
if (timestamp + 1000 <= TOPIC_CACHE_LATEST_UPDATE_TIME) {
|
if (timestamp + 1000 <= TOPIC_CACHE_LATEST_UPDATE_TIME) {
|
||||||
// 近一秒内的请求不走db
|
// 近一秒内的请求不走db
|
||||||
@@ -108,13 +113,14 @@ public class TopicDaoImpl implements TopicDao {
|
|||||||
* 更新Topic缓存
|
* 更新Topic缓存
|
||||||
*/
|
*/
|
||||||
private synchronized void updateTopicCache(List<TopicDO> doList, Long timestamp) {
|
private synchronized void updateTopicCache(List<TopicDO> doList, Long timestamp) {
|
||||||
|
if (TOPIC_CACHE_LATEST_UPDATE_TIME == Constant.START_TIMESTAMP) {
|
||||||
|
TOPIC_MAP.clear();
|
||||||
|
}
|
||||||
|
|
||||||
if (doList == null || doList.isEmpty() || TOPIC_CACHE_LATEST_UPDATE_TIME >= timestamp) {
|
if (doList == null || doList.isEmpty() || TOPIC_CACHE_LATEST_UPDATE_TIME >= timestamp) {
|
||||||
// 本次无数据更新, 或者本次更新过时 时, 忽略本次更新
|
// 本次无数据更新, 或者本次更新过时 时, 忽略本次更新
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (TOPIC_CACHE_LATEST_UPDATE_TIME == Constant.START_TIMESTAMP) {
|
|
||||||
TOPIC_MAP.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
for (TopicDO elem: doList) {
|
for (TopicDO elem: doList) {
|
||||||
Map<String, TopicDO> doMap = TOPIC_MAP.getOrDefault(elem.getClusterId(), new ConcurrentHashMap<>());
|
Map<String, TopicDO> doMap = TOPIC_MAP.getOrDefault(elem.getClusterId(), new ConcurrentHashMap<>());
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
<select id="queryByCondt" parameterType="java.util.Map" resultMap="OperateRecordMap">
|
<select id="queryByCondition" parameterType="java.util.Map" resultMap="OperateRecordMap">
|
||||||
select *
|
select *
|
||||||
from operate_record
|
from operate_record
|
||||||
where
|
where
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ public class DeleteAppOrder extends AbstractAppOrder {
|
|||||||
// 判断app是否对topic有权限
|
// 判断app是否对topic有权限
|
||||||
List<AuthorityDO> authorityList = authorityService.getAuthority(orderAppExtension.getAppId());
|
List<AuthorityDO> authorityList = authorityService.getAuthority(orderAppExtension.getAppId());
|
||||||
if (!ValidateUtils.isEmptyList(authorityList)) {
|
if (!ValidateUtils.isEmptyList(authorityList)) {
|
||||||
return ResultStatus.OPERATION_FORBIDDEN;
|
return ResultStatus.APP_OFFLINE_FORBIDDEN;
|
||||||
}
|
}
|
||||||
if (appService.deleteApp(appDO, userName) > 0) {
|
if (appService.deleteApp(appDO, userName) > 0) {
|
||||||
return ResultStatus.SUCCESS;
|
return ResultStatus.SUCCESS;
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
package com.xiaojukeji.kafka.manager.notify;
|
package com.xiaojukeji.kafka.manager.notify;
|
||||||
|
|
||||||
|
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.ao.account.Account;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.pojo.OrderDO;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.events.OrderApplyEvent;
|
import com.xiaojukeji.kafka.manager.common.events.OrderApplyEvent;
|
||||||
import com.xiaojukeji.kafka.manager.notify.common.NotifyConstant;
|
|
||||||
import com.xiaojukeji.kafka.manager.notify.notifyer.AbstractNotifyService;
|
|
||||||
import com.xiaojukeji.kafka.manager.notify.common.OrderNotifyTemplate;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.context.ApplicationListener;
|
import org.springframework.context.ApplicationListener;
|
||||||
import org.springframework.scheduling.annotation.Async;
|
import org.springframework.scheduling.annotation.Async;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
@@ -19,27 +12,10 @@ import org.springframework.stereotype.Service;
|
|||||||
*/
|
*/
|
||||||
@Service("orderApplyNotifyService")
|
@Service("orderApplyNotifyService")
|
||||||
public class OrderApplyNotifyService implements ApplicationListener<OrderApplyEvent> {
|
public class OrderApplyNotifyService implements ApplicationListener<OrderApplyEvent> {
|
||||||
@Autowired
|
|
||||||
private AbstractNotifyService notifyService;
|
|
||||||
|
|
||||||
@Value("${notify.order.detail-url}")
|
|
||||||
private String orderDetailUrl;
|
|
||||||
|
|
||||||
@Async
|
@Async
|
||||||
@Override
|
@Override
|
||||||
public void onApplicationEvent(OrderApplyEvent orderApplyEvent) {
|
public void onApplicationEvent(OrderApplyEvent orderApplyEvent) {
|
||||||
OrderDO orderDO = orderApplyEvent.getOrderDO();
|
// todo 工单通知
|
||||||
String detailUrl = String.format(orderDetailUrl, orderDO.getId(), orderApplyEvent.getIdc());
|
|
||||||
for (Account account : NotifyConstant.accountList) {
|
|
||||||
notifyService.sendMsg(account.getUsername(),
|
|
||||||
OrderNotifyTemplate.getNotify2OrderHandlerMessage(
|
|
||||||
account.getChineseName(),
|
|
||||||
orderDO.getApplicant(),
|
|
||||||
orderDO.getTitle(),
|
|
||||||
detailUrl
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
package com.xiaojukeji.kafka.manager.notify.common;
|
|
||||||
|
|
||||||
import com.xiaojukeji.kafka.manager.common.bizenum.AccountRoleEnum;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.ao.account.Account;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author zengqiao
|
|
||||||
* @date 20/8/27
|
|
||||||
*/
|
|
||||||
public class NotifyConstant {
|
|
||||||
|
|
||||||
public static final List<Account> accountList = Arrays.asList(
|
|
||||||
new Account("xuzhengxi", "徐正熙", "", AccountRoleEnum.OP)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -11,11 +11,13 @@ import com.xiaojukeji.kafka.manager.common.entity.metrics.BaseMetrics;
|
|||||||
import com.xiaojukeji.kafka.manager.common.entity.vo.common.RealTimeMetricsVO;
|
import com.xiaojukeji.kafka.manager.common.entity.vo.common.RealTimeMetricsVO;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.vo.normal.TopicBusinessInfoVO;
|
import com.xiaojukeji.kafka.manager.common.entity.vo.normal.TopicBusinessInfoVO;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.vo.normal.topic.*;
|
import com.xiaojukeji.kafka.manager.common.entity.vo.normal.topic.*;
|
||||||
|
import com.xiaojukeji.kafka.manager.common.utils.DateUtils;
|
||||||
import com.xiaojukeji.kafka.manager.common.utils.SpringTool;
|
import com.xiaojukeji.kafka.manager.common.utils.SpringTool;
|
||||||
import com.xiaojukeji.kafka.manager.common.utils.ValidateUtils;
|
import com.xiaojukeji.kafka.manager.common.utils.ValidateUtils;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.pojo.ClusterDO;
|
import com.xiaojukeji.kafka.manager.common.entity.pojo.ClusterDO;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.pojo.KafkaBillDO;
|
import com.xiaojukeji.kafka.manager.common.entity.pojo.KafkaBillDO;
|
||||||
import com.xiaojukeji.kafka.manager.common.utils.jmx.JmxAttributeEnum;
|
import com.xiaojukeji.kafka.manager.common.utils.jmx.JmxAttributeEnum;
|
||||||
|
import com.xiaojukeji.kafka.manager.common.entity.vo.normal.topic.TopicStatisticMetricsVO;
|
||||||
import com.xiaojukeji.kafka.manager.service.cache.LogicalClusterMetadataManager;
|
import com.xiaojukeji.kafka.manager.service.cache.LogicalClusterMetadataManager;
|
||||||
import com.xiaojukeji.kafka.manager.service.cache.PhysicalClusterMetadataManager;
|
import com.xiaojukeji.kafka.manager.service.cache.PhysicalClusterMetadataManager;
|
||||||
import com.xiaojukeji.kafka.manager.service.service.*;
|
import com.xiaojukeji.kafka.manager.service.service.*;
|
||||||
@@ -339,4 +341,23 @@ public class NormalTopicController {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation(value = "Topic流量统计信息", notes = "")
|
||||||
|
@RequestMapping(value = "{clusterId}/topics/{topicName}/statistic-metrics", method = RequestMethod.GET)
|
||||||
|
@ResponseBody
|
||||||
|
public Result<TopicStatisticMetricsVO> getTopicStatisticMetrics(@PathVariable Long clusterId,
|
||||||
|
@PathVariable String topicName,
|
||||||
|
@RequestParam(value = "isPhysicalClusterId", required = false) Boolean isPhysicalClusterId,
|
||||||
|
@RequestParam("latest-day") Integer latestDay) {
|
||||||
|
Long physicalClusterId = logicalClusterMetadataManager.getPhysicalClusterId(clusterId, isPhysicalClusterId);
|
||||||
|
if (ValidateUtils.isNull(physicalClusterId)) {
|
||||||
|
return Result.buildFrom(ResultStatus.CLUSTER_NOT_EXIST);
|
||||||
|
}
|
||||||
|
|
||||||
|
Double maxAvgBytesIn = topicManagerService.getTopicMaxAvgBytesIn(physicalClusterId, topicName, new Date(DateUtils.getDayStarTime(-1 * latestDay)), new Date(), 1);
|
||||||
|
if (ValidateUtils.isNull(maxAvgBytesIn)) {
|
||||||
|
return Result.buildFrom(ResultStatus.MYSQL_ERROR);
|
||||||
|
}
|
||||||
|
return new Result<>(new TopicStatisticMetricsVO(maxAvgBytesIn));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -36,7 +36,7 @@ public class RdOperateRecordController {
|
|||||||
if (ValidateUtils.isNull(dto) || !dto.legal()) {
|
if (ValidateUtils.isNull(dto) || !dto.legal()) {
|
||||||
return Result.buildFrom(ResultStatus.PARAM_ILLEGAL);
|
return Result.buildFrom(ResultStatus.PARAM_ILLEGAL);
|
||||||
}
|
}
|
||||||
List<OperateRecordVO> voList = OperateRecordModelConverter.convert2OperateRecordVOList(operateRecordService.queryByCondt(dto));
|
List<OperateRecordVO> voList = OperateRecordModelConverter.convert2OperateRecordVOList(operateRecordService.queryByCondition(dto));
|
||||||
if (voList.size() > MAX_RECORD_COUNT) {
|
if (voList.size() > MAX_RECORD_COUNT) {
|
||||||
voList = voList.subList(0, MAX_RECORD_COUNT);
|
voList = voList.subList(0, MAX_RECORD_COUNT);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,8 +13,6 @@ import com.xiaojukeji.kafka.manager.common.entity.vo.normal.topic.TopicAuthorize
|
|||||||
import com.xiaojukeji.kafka.manager.common.entity.vo.normal.topic.TopicRequestTimeDetailVO;
|
import com.xiaojukeji.kafka.manager.common.entity.vo.normal.topic.TopicRequestTimeDetailVO;
|
||||||
import com.xiaojukeji.kafka.manager.common.zookeeper.znode.brokers.TopicMetadata;
|
import com.xiaojukeji.kafka.manager.common.zookeeper.znode.brokers.TopicMetadata;
|
||||||
import com.xiaojukeji.kafka.manager.openapi.common.vo.TopicOffsetChangedVO;
|
import com.xiaojukeji.kafka.manager.openapi.common.vo.TopicOffsetChangedVO;
|
||||||
import com.xiaojukeji.kafka.manager.openapi.common.vo.TopicStatisticMetricsVO;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.utils.DateUtils;
|
|
||||||
import com.xiaojukeji.kafka.manager.common.utils.ValidateUtils;
|
import com.xiaojukeji.kafka.manager.common.utils.ValidateUtils;
|
||||||
import com.xiaojukeji.kafka.manager.common.entity.pojo.ClusterDO;
|
import com.xiaojukeji.kafka.manager.common.entity.pojo.ClusterDO;
|
||||||
import com.xiaojukeji.kafka.manager.service.cache.PhysicalClusterMetadataManager;
|
import com.xiaojukeji.kafka.manager.service.cache.PhysicalClusterMetadataManager;
|
||||||
@@ -30,7 +28,6 @@ import org.slf4j.LoggerFactory;
|
|||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -69,27 +66,6 @@ public class ThirdPartTopicController {
|
|||||||
return new Result<>(vo);
|
return new Result<>(vo);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "Topic流量统计信息", notes = "")
|
|
||||||
@RequestMapping(value = "{physicalClusterId}/topics/{topicName}/statistic-metrics", method = RequestMethod.GET)
|
|
||||||
@ResponseBody
|
|
||||||
public Result<TopicStatisticMetricsVO> getTopicStatisticMetrics(@PathVariable Long physicalClusterId,
|
|
||||||
@PathVariable String topicName,
|
|
||||||
@RequestParam("latest-day") Integer latestDay) {
|
|
||||||
try {
|
|
||||||
return new Result<>(new TopicStatisticMetricsVO(topicManagerService.getTopicMaxAvgBytesIn(
|
|
||||||
physicalClusterId,
|
|
||||||
topicName,
|
|
||||||
new Date(DateUtils.getDayStarTime(-1 * latestDay)),
|
|
||||||
new Date(),
|
|
||||||
1
|
|
||||||
)));
|
|
||||||
} catch (Exception e) {
|
|
||||||
LOGGER.error("get topic statistic metrics failed, clusterId:{} topicName:{} latestDay:{}."
|
|
||||||
, physicalClusterId, topicName, latestDay, e);
|
|
||||||
}
|
|
||||||
return Result.buildFrom(ResultStatus.MYSQL_ERROR);
|
|
||||||
}
|
|
||||||
|
|
||||||
@ApiOperation(value = "Topic是否有流量", notes = "")
|
@ApiOperation(value = "Topic是否有流量", notes = "")
|
||||||
@RequestMapping(value = "{physicalClusterId}/topics/{topicName}/offset-changed", method = RequestMethod.GET)
|
@RequestMapping(value = "{physicalClusterId}/topics/{topicName}/offset-changed", method = RequestMethod.GET)
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ spring:
|
|||||||
jdbc-url: jdbc:mysql://127.0.0.1:3306/logi_kafka_manager?characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2B8
|
jdbc-url: jdbc:mysql://127.0.0.1:3306/logi_kafka_manager?characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2B8
|
||||||
username: admin
|
username: admin
|
||||||
password: admin
|
password: admin
|
||||||
driver-class-name: com.mysql.jdbc.Driver
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
main:
|
main:
|
||||||
allow-bean-definition-overriding: true
|
allow-bean-definition-overriding: true
|
||||||
|
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@@ -16,7 +16,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<kafka-manager.revision>2.3.1-SNAPSHOT</kafka-manager.revision>
|
<kafka-manager.revision>2.4.0-SNAPSHOT</kafka-manager.revision>
|
||||||
<swagger2.version>2.7.0</swagger2.version>
|
<swagger2.version>2.7.0</swagger2.version>
|
||||||
<swagger.version>1.5.13</swagger.version>
|
<swagger.version>1.5.13</swagger.version>
|
||||||
|
|
||||||
@@ -180,7 +180,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>mysql</groupId>
|
<groupId>mysql</groupId>
|
||||||
<artifactId>mysql-connector-java</artifactId>
|
<artifactId>mysql-connector-java</artifactId>
|
||||||
<version>5.1.41</version>
|
<version>8.0.11</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
Reference in New Issue
Block a user