Skip to content

Commit

Permalink
v1.0.0 GA
Browse files Browse the repository at this point in the history
  • Loading branch information
Vonng committed Jul 26, 2021
1 parent 254d517 commit 6d85867
Show file tree
Hide file tree
Showing 10 changed files with 890 additions and 14 deletions.
868 changes: 868 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/_media/how-zh.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/_media/how.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file removed docs/zh-cn/RELEASENOTE.md
Empty file.
10 changes: 9 additions & 1 deletion docs/zh-cn/s-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ DCS自身的可用性通过多节点共识保证,故生产环境中建议部


-----------
使用**ipython**时报错。
#### 使用**ipython**时报错。

这是因为当前版本`pip3`默认安装的ipython版本存在BUG:其依赖`jedi`的版本过高(`0.18`)。您需要手动安装低版本的`jedi``0.17`):

Expand All @@ -192,3 +192,11 @@ pip3 install jedi==0.17.2
```

-----------

#### 关机后虚拟机内没有监控数据

Virtualbox虚拟机关机后虚拟机内时间可能与宿主机不一致。

可以尝试使用以下命令:`make sync`,强制执行NTP时间同步。

即可解决长时间休眠或关机重启后监控系统没有数据的问题。
6 changes: 3 additions & 3 deletions docs/zh-cn/v-meta.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
| [prometheus_scrape_timeout](#prometheus_scrape_timeout) | `interval` | G | Prom抓取超时 |
| [prometheus_sd_interval](#prometheus_sd_interval) | `interval` | G | Prom服务发现刷新周期 |
| [grafana_endpoint](#grafana_endpoint) | `string` | G | Grafana地址 |
| [grafana_admin_username](grafana_admin_username) | `string` | G | Grafana管理员用户名 |
| [grafana_admin_username](#grafana_admin_username) | `string` | G | Grafana管理员用户名 |
| [grafana_admin_password](#grafana_admin_password) | `string` | G | Grafana管理员密码 |
| [grafana_database](grafana_database) | `string` | G | Grafana后端数据库类型 |
| [grafana_pgurl](grafana_pgurl) | `string` | G | Grafana的PG数据库连接串 |
| [grafana_database](#grafana_database) | `string` | G | Grafana后端数据库类型 |
| [grafana_pgurl](#grafana_pgurl) | `string` | G | Grafana的PG数据库连接串 |
| [grafana_plugin](#grafana_plugin) | `enum` | G | 如何安装Grafana插件 |
| [grafana_cache](#grafana_cache) | `string` | G | Grafana插件缓存地址 |
| [grafana_customize](#grafana_customize) | `bool` | G | 是否定制Grafana |
Expand Down
6 changes: 3 additions & 3 deletions docs/zh-cn/v-monitor.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Promtail用于收集Postgres,Patroni,Pgbouncer日志,是可选的额外安
| [pg_exporter_enabled](#pg_exporter_enabled) | `bool` | G/C | 启用PG指标收集器 |
| [pg_exporter_port](#pg_exporter_port) | `number` | G/C | PG指标暴露端口 |
| [pg_exporter_url](#pg_exporter_url) | `string` | G/C | 采集对象数据库的连接串(覆盖) |
| [pg_exporter_auto_discovery](pg_exporter_auto_discovery) | `bool` | G/C | 是否自动发现实例中的数据库 |
| [pg_exporter_exclude_database](pg_exporter_exclude_database) | `string` | G/C | 数据库自动发现排除列表 |
| [pg_exporter_include_database](pg_exporter_include_database) | `string` | G/C | 数据库自动发现囊括列表 |
| [pg_exporter_auto_discovery](#pg_exporter_auto_discovery) | `bool` | G/C | 是否自动发现实例中的数据库 |
| [pg_exporter_exclude_database](#pg_exporter_exclude_database) | `string` | G/C | 数据库自动发现排除列表 |
| [pg_exporter_include_database](#pg_exporter_include_database) | `string` | G/C | 数据库自动发现囊括列表 |
| [pgbouncer_exporter_enabled](#pgbouncer_exporter_enabled) | `bool` | G/C | 启用PGB指标收集器 |
| [pgbouncer_exporter_port](#pgbouncer_exporter_port) | `number` | G/C | PGB指标暴露端口 |
| [pgbouncer_exporter_url](#pgbouncer_exporter_url) | `string` | G/C | 采集对象连接池的连接串 |
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/v-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
| [node_packages](#node_packages) | `string[]` | G | 节点安装软件列表 |
| [node_extra_packages](#node_extra_packages) | `string[]` | C/I/A | 节点额外安装的软件列表 |
| [node_meta_packages](#node_meta_packages) | `string[]` | G | 元节点所需的软件列表 |
| [node_meta_pip_install](node_meta_pip_install) | `string` | G | 元节点上通过pip3安装的软件包 |
| [node_meta_pip_install](#node_meta_pip_install) | `string` | G | 元节点上通过pip3安装的软件包 |
| [node_disable_numa](#node_disable_numa) | `bool` | G | 关闭节点NUMA |
| [node_disable_swap](#node_disable_swap) | `bool` | G | 关闭节点SWAP |
| [node_disable_firewall](#node_disable_firewall) | `bool` | G | 关闭节点防火墙 |
Expand All @@ -30,7 +30,7 @@
| [node_admin_username](#node_admin_username) | `string` | G | 管理员用户名 |
| [node_admin_ssh_exchange](#node_admin_ssh_exchange) | `bool` | G | 在实例间交换管理员SSH密钥 |
| [node_admin_pks](#node_admin_pks) | `string[]` | G | 可登陆管理员的公钥列表 |
| [node_admin_pk_current](#node_admin_pk_current) | `bool` | A | 是否将当前用户的公钥加入管理员账户 |
| [node_admin_pk_current](#node_admin_pk_current) | `bool` | A | 是否将当前用户的公钥加入管理员账户 |
| [node_ntp_service](#node_ntp_service) | `enum` | G | NTP服务类型:ntp或chrony |
| [node_ntp_config](#node_ntp_config) | `bool` | G | 是否配置NTP服务? |
| [node_timezone](#node_timezone) | `string` | G | NTP时区设置 |
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/v-pg-provision.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ PostgreSQL部署
| [patroni_port](#patroni_port) | `string` | G/C | Patroni服务端口 |
| [patroni_watchdog_mode](#patroni_watchdog_mode) | `enum` | G/C | Patroni Watchdog模式 |
| [pg_conf](#pg_conf) | `enum` | G/C | Patroni使用的配置模板 |
| [pg_shared_libraries](pg_shared_libraries) | `string` | G/C | PG默认加载的共享库 |
| [pg_shared_libraries](#pg_shared_libraries) | `string` | G/C | PG默认加载的共享库 |
| [pg_encoding](#pg_encoding) | `string` | G/C | PG字符集编码 |
| [pg_locale](#pg_locale) | `enum` | G/C | PG使用的本地化规则 |
| [pg_lc_collate](#pg_lc_collate) | `enum` | G/C | PG使用的本地化排序规则 |
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/v-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
| [vip_address](#vip_address) | `string` | G/C | 集群使用的VIP地址 |
| [vip_cidrmask](#vip_cidrmask) | `number` | G/C | VIP地址的网络CIDR掩码 |
| [vip_interface](#vip_interface) | `string` | G/C | VIP使用的网卡 |
| [dns_mode](v-service.md#dns_mode) | `enum` | G/C | DNS配置模式 |
| [dns_selector](v-service.md#dns_selector) | `string` | G/C | DNS解析对象选择器 |
| [dns_mode](#dns_mode) | `enum` | G/C | DNS配置模式 |
| [dns_selector](#dns_selector) | `string` | G/C | DNS解析对象选择器 |

## 默认参数

Expand Down

0 comments on commit 6d85867

Please sign in to comment.