Skip to content

Commit

Permalink
[hertzbeat] release hertzbeat version v1.3.1 (#924)
Browse files Browse the repository at this point in the history
* enable export monitors by excel, yaml in web

* enable export monitors by excel, yaml in web

* bugfix yaml instance is not thread-safe

* [webapp] update monitor export

* [hertzbeat] release hertzbeat version v1.3.1

* [script] update application.yml

* [script] update gitignore
  • Loading branch information
tomsun28 committed May 2, 2023
1 parent b63e466 commit 9e66e0a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ mvnw
mvnw.bat
*.log
package-lock.json
*.zip

### STS ###
.apt_generated
Expand Down Expand Up @@ -47,4 +48,4 @@ node_modules

# debug env
application-dev.yml
application-mysql.yml
application-mysql.yml
3 changes: 3 additions & 0 deletions manager/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ warehouse:
url: jdbc:TAOS-RS://localhost:6041/hertzbeat
username: root
password: taosdata
greptime:
enabled: false
endpoint: localhost:4001
iot-db:
enabled: false
host: 127.0.0.1
Expand Down
11 changes: 11 additions & 0 deletions script/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ warehouse:
url: jdbc:TAOS-RS://localhost:6041/hertzbeat
username: root
password: taosdata
greptime:
enabled: false
endpoint: localhost:4001
iot-db:
enabled: false
host: 127.0.0.1
Expand All @@ -123,6 +126,14 @@ warehouse:
# 数据存储时间:默认'7776000000'(90天,单位为毫秒,-1代表永不过期)
# data expire time, unit:ms, default '7776000000'(90 days, -1:never expire)
expire-time: '7776000000'
influxdb:
enabled: false
server-url: http://127.0.0.1:8086
username: root
password: root
expire-time: '30d'
replication: 1

# store real-time metrics data, enable only one below
# 存储实时数据方式, 下方只能enabled启用一种方式
memory:
Expand Down
2 changes: 1 addition & 1 deletion script/assembly/server/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd
http://maven.apache.org/ASSEMBLY/2.0.0 ">
<!--必填,会追加到打包文件名称的末尾-->
<id>1.3.0</id>
<id>1.3.1</id>
<!--打包类型,可以设置多种类型,打包的时候不同的类型都会打包打出来-->
<formats>
<format>tar</format>
Expand Down
2 changes: 1 addition & 1 deletion script/docker/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM openjdk:11.0.16-jre-slim-buster

MAINTAINER tancloud "tomsun28@outlook.com"

ADD hertzbeat-1.3.0.tar /opt/
ADD hertzbeat-1.3.1.tar /opt/

ENV TZ=Asia/Shanghai
#ENV LANG=zh_CN.UTF-8
Expand Down
2 changes: 1 addition & 1 deletion web-app/src/app/shared/consts.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const CONSTS = {
VERSION: 'v1.3.0'
VERSION: 'v1.3.1'
};

0 comments on commit 9e66e0a

Please sign in to comment.