-
Notifications
You must be signed in to change notification settings - Fork 999
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[home] support time-series db dependency iotdb deploy doc (#392)
* [home] support time-series db dependency iotdb deploy doc * [warehouse] support iotdb connection available check when init * [home] support time-series db dependency iotdb deploy doc
- Loading branch information
Showing
14 changed files
with
447 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
--- | ||
id: iotdb-init | ||
title: 依赖时序数据库服务IoTDB安装初始化 | ||
sidebar_label: 时序数据库IoTDB安装(可选) | ||
--- | ||
|
||
HertzBeat的历史数据存储依赖时序数据库 IoTDB 或 TDengine,任选其一安装初始化即可,也可不安装(注意⚠️不安装则无历史图表数据) | ||
|
||
Apache IoTDB是一体化收集、存储、管理与分析物联网时序数据的软件系统,我们使用其存储分析采集到的监控指标历史数据。 | ||
|
||
注意⚠️ IoTDB为可选项,未配置则无历史图表数据,支持V0.12 - V0.13版本,推荐使用V0.13.*版本。 | ||
|
||
> 如果您已有IoTDB环境,可直接跳到YML配置那一步。 | ||
|
||
### 通过Docker方式安装IoTDB | ||
> 可参考官方网站[安装教程](https://iotdb.apache.org/zh/UserGuide/V0.13.x/QuickStart/WayToGetIoTDB.html) | ||
1. 下载安装Docker环境 | ||
Docker 工具自身的下载请参考 [Docker官网文档](https://docs.docker.com/get-docker/)。 | ||
安装完毕后终端查看Docker版本是否正常输出。 | ||
``` | ||
$ docker -v | ||
Docker version 20.10.12, build e91ed57 | ||
``` | ||
2. Docker安装IoTDB | ||
|
||
```shell | ||
$ docker run -d -p 6667:6667 -p 31999:31999 -p 8181:8181 \ | ||
-v /opt/iotdb/data:/iotdb/data \ | ||
--name iotdb \ | ||
apache/iotdb:0.13.3-node | ||
``` | ||
|
||
`-v /opt/iotdb/data:/iotdb/data` 为tdengine数据目录本地持久化挂载,需将`/iotdb/data`替换为实际本地存在的目录 | ||
使用```$ docker ps```查看数据库是否启动成功 | ||
|
||
3. 在hertzbeat的`application.yml`配置文件配置IoTDB数据库连接 | ||
|
||
配置HertzBeat的配置文件 | ||
修改位于 `hertzbeat/config/application.yml` 的配置文件 | ||
注意⚠️docker容器方式需要将application.yml文件挂载到主机本地,安装包方式解压修改位于 `hertzbeat/config/application.yml` 即可 | ||
替换里面的`warehouse.store.iot-db`数据源参数,HOST账户密码等 | ||
|
||
``` | ||
warehouse: | ||
store: | ||
iot-db: | ||
enabled: true | ||
host: 127.0.0.1 | ||
rpc-port: 6667 | ||
username: root | ||
password: root | ||
# V_O_12 || V_0_13 | ||
version: V_0_13 | ||
# if iotdb version >= 0.13 use default queryTimeoutInMs = -1; else use default queryTimeoutInMs = 0 | ||
query-timeout-in-ms: -1 | ||
# 数据存储时间:默认'7776000000'(90天,单位为毫秒,-1代表永不过期) | ||
expire-time: '7776000000' | ||
``` | ||
|
||
### 常见问题 | ||
|
||
1. 时序数据库IoTDB和TDengine是否都需要配置,能不能都用 | ||
> 不需要都配置,任选其一即可,用enable参数控制其是否使用,也可都不安装配置,只影响历史图表数据。 | ||
2. 监控页面历史图表不显示,弹出 [无法提供历史图表数据,请配置依赖时序数据库] | ||
> 如弹窗所示,历史图表展示的前提是需要安装配置hertzbeat的依赖服务 - IotDB数据库或TDengine数据库 | ||
3. 安装配置了IotDB数据库,但页面依旧显示弹出 [无法提供历史图表数据,请配置依赖时序数据库] | ||
> 请检查配置参数是否正确 | ||
> iot-db enable是否设置为true | ||
> 注意⚠️若hertzbeat和IotDB都为docker容器在同一主机下启动,容器之间默认不能用127.0.0.1通讯,改为主机IP | ||
> 可根据logs目录下启动日志排查 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
home/i18n/en/docusaurus-plugin-content-blog/2022-10-08-hertzbeat-v1.2.0.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
title: HertzBeat v1.2.0 发布!易用友好的开源实时监控系统 | ||
author: tom | ||
author_title: tom | ||
author_url: https://github.com/tomsun28 | ||
author_image_url: https://avatars.githubusercontent.com/u/24788200?s=400&v=4 | ||
tags: [opensource] | ||
--- | ||
|
||
## v1.2.0 | ||
|
||
Home: hertzbeat.com | tancloud.cn | ||
|
||
Hi gays! HertzBeat v1.2.0 is coming. This version supports more powerful mertics collect jsonpath, upgrade springboot version to 2.7.4 , support metrics unit convert display, and more. Fixed several bugs and improved the overall stable usability. | ||
|
||
Only one docker command is needed to install and experience heartbeat: | ||
`docker run -d -p 1157:1157 --name hertzbeat tancloud/hertzbeat` | ||
|
||
Thanks to the contributors! 👍👍 @Ceilzcx @Privauto @VampireAchao @DreamGirl524 @CharlieXCL @emrys-he @SxLiuYu @tomsun28 | ||
|
||
We urgently need contributors to test cases, new application monitoring, documentation, etc., and very welcome you to join. Come on! HertzBeat is so easy! | ||
|
||
Feature: | ||
|
||
1. [[home,manager]add practice learn doc and hertzbeat monitor yml #284](https://github.com/dromara/hertzbeat/pull/284) | ||
2. [[webapp] auto redirect url when detect browser language #289](https://github.com/dromara/hertzbeat/pull/289) contribute by @DreamGirl524 | ||
3. [[home] update logo icon cdn url with fault tolerance #293](https://github.com/dromara/hertzbeat/pull/293) contribute by @VampireAchao | ||
4. [[monitor] enable powerful jsonpath parser, add es metrics #295](https://github.com/dromara/hertzbeat/pull/295) contribute by @Ceilzcx | ||
5. [[webapp] update ui theme #296](https://github.com/dromara/hertzbeat/pull/296) | ||
6. [Feature change main pom artifactId #300](https://github.com/dromara/hertzbeat/pull/300) contribute by @Privauto | ||
7. [[home,webapp] add users logo and update hertzbeat brand #302](https://github.com/dromara/hertzbeat/pull/302) | ||
8. [[monitor] alerter notify test throw msg to front, optional spring.email config #305](https://github.com/dromara/hertzbeat/pull/305) contribute by @Ceilzcx | ||
9. [[home]doc:update docker-deploy.md and tdengine-init.md #306](https://github.com/dromara/hertzbeat/pull/306) contribute by @Privauto | ||
10. [[hertzbeat] refactor common collect metrics data and alert data queue #320](https://github.com/dromara/hertzbeat/pull/320) | ||
11. [[hertzbeat] upgrade springboot version 2.4.13 to 2.7.4 #316](https://github.com/dromara/hertzbeat/pull/316) contribute by @Privauto | ||
12. [[web-app] optimize the monitor detect feedback method #322](https://github.com/dromara/hertzbeat/pull/322) | ||
13. [[github,webapp] add webapp ci action, fix eslint warning and upgrade codeql #323](https://github.com/dromara/hertzbeat/pull/323) | ||
14. [[hertzbeat] add more unit test and test example #324](https://github.com/dromara/hertzbeat/pull/324) | ||
15. [support metrics unit extract, convert and display #326](https://github.com/dromara/hertzbeat/pull/326) contribute by @Ceilzcx | ||
16. [[common] optimize common aviator configuration #327](https://github.com/dromara/hertzbeat/pull/327) | ||
|
||
Bugfix. | ||
|
||
1. [[webapp,home] fix middle category icon and update home doc #283](https://github.com/dromara/hertzbeat/pull/283) | ||
2. [[web-app] fix redirect when monitors app is null #286](https://github.com/dromara/hertzbeat/pull/286) | ||
3. [[alerter] bugfix aviator expression match npe #297](https://github.com/dromara/hertzbeat/pull/297) | ||
4. [[doc] fix project name error #294](https://github.com/dromara/hertzbeat/pull/294) contribute by @CharlieXCL | ||
5. [[common]feature:use "apache.http.conn.util" replace "sun.net.util" for upgrading java version #299](https://github.com/dromara/hertzbeat/pull/299) contribute by @Privauto | ||
6. [Update docker-deploy.md #304](https://github.com/dromara/hertzbeat/pull/304) contribute by @emrys-he | ||
7. [fix(sec): upgrade snakeyaml to 1.31 #313](https://github.com/dromara/hertzbeat/pull/313) contribute by @SxLiuYu | ||
8. [[script] add startup log and optimize port service judgment #321](https://github.com/dromara/hertzbeat/pull/321) | ||
9. [[web-app] fix echarts y-axis value tip overflow #325](https://github.com/dromara/hertzbeat/pull/325) | ||
10. [[webapp] fix interceptor http resp common error-msg when error #329](https://github.com/dromara/hertzbeat/pull/329) | ||
Online https://console.tancloud.cn. | ||
|
||
Have Fun! | ||
|
||
### Upgrade⚠️ | ||
|
||
Need Convert `application.yml` | ||
``` | ||
spring: | ||
resources: | ||
static-locations: | ||
- classpath:/dist/ | ||
- classpath:../dist/ | ||
``` | ||
To | ||
``` | ||
spring: | ||
web: | ||
resources: | ||
static-locations: | ||
- classpath:/dist/ | ||
- classpath:../dist/ | ||
``` | ||
|
||
---- | ||
|
Oops, something went wrong.