Skip to content

Commit

Permalink
优化展示内容
Browse files Browse the repository at this point in the history
  • Loading branch information
无双 committed May 7, 2023
1 parent e95af57 commit fcf87dc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ DHorse是一个简单易用、以应用为中心的云原生DevOps系统,具

## 主要特性
* 简洁的操作界面
* 支持SpringBoot应用部署
* 支持Node应用部署
* 以应用为中心,屏蔽K8S的底层概念
* 无需安装Docker即可构建镜像
* 无需安装Maven即可打包
* 无需安装Node即可打包
* 无需安装Docker即可构建镜像
* 支持SpringBoot应用部署
* 支持Node应用部署
* 支持多环境部署
* 支持日志收集
* 支持链路追踪
Expand All @@ -36,8 +37,8 @@ Springboot、Mybatis、Mybatis-plus、Maven-core、Jib-core、Layuimini、Smart-

| Java版本 | Linux、Mac或Cygwin | Windows
| :-----: | :----: | :----: |
| 1.8 | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.0.0/dhorse-v1.0.0-jdk1.8-bin-unix.tar.gz) | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.0.0/dhorse-v1.0.0-jdk1.8-bin-windows.zip)
| >=11 | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.0.0/dhorse-v1.0.0-bin-unix.tar.gz) | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.0.0/dhorse-v1.0.0-bin-windows.zip)
| 1.8 | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.1.0/dhorse-v1.1.0-jdk1.8-bin-unix.tar.gz) | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.1.0/dhorse-v1.1.0-jdk1.8-bin-windows.zip)
| >=11 | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.1.0/dhorse-v1.1.0-bin-unix.tar.gz) | [下载](https://github.com/tiandizhiguai/dhorse/releases/download/v1.1.0/dhorse-v1.1.0-bin-windows.zip)

3. 下载文件之后,然后解压

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static void premain(String args, Instrumentation inst) {
metaspace(replicaName, metricsList);
thread(replicaName, metricsList);
HttpUtils.sendPost(args, metricsList.toString());
}, 0, 1, TimeUnit.SECONDS);
}, 0, 5, TimeUnit.SECONDS);
}

private static void heapMemory(String replicaName, List<Metrics> metricsList) {
Expand Down
4 changes: 2 additions & 2 deletions static/page/app/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@
$("#baseImageDiv").show();
}
var department = res.data.firstDepartment;
if(department != ''){
if(res.data.secondDepartment != ''){
department += ' - ';
department += res.data.secondDepartment;
}
if(department != ''){
if(res.data.thirdDepartment != ''){
department += ' - ';
department += res.data.thirdDepartment;
}
Expand Down

0 comments on commit fcf87dc

Please sign in to comment.