Skip to content

Commit 3346415

Browse files
committed
refine docs homepage
1 parent 49b1cf5 commit 3346415

File tree

9 files changed

+39
-24
lines changed

9 files changed

+39
-24
lines changed

assets/scss/common/_variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ $border-color: $gray-200;
106106
// Font, line-height, and color for body text, headings, and more.
107107

108108
// stylelint-disable value-keyword-case
109-
$font-family-sans-serif: "Jost", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
109+
$font-family-sans-serif: "Helvetica Neue", "sans-serif", "PingFangSC-Regular", "Microsoft Yahei", "Jost", -apple-system, blinkmacsystemfont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
110110
$font-family-monospace: sfmono-regular, menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace;
111111
$font-family-base: $font-family-sans-serif;
112112
// stylelint-enable value-keyword-case

config/_default/params.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ lqipWidth = "20x"
5454
smallLimit = "300"
5555

5656
# Footer
57-
footer = "© 2022 CCF·Nightingale, all rights reserved."
57+
footer = "© 2023 CCF·Nightingale, all rights reserved."
5858

5959
# Feed
60-
copyRight = "© 2022 CCF·Nightingale, all rights reserved."
60+
copyRight = "© 2023 CCF·Nightingale, all rights reserved."
6161

6262
# Alert
6363
alert = false

content/en/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title : "Nightingale"
33
description: "An enterprise-level cloud-native monitoring system, which can be used as drop-in replacement of Prometheus for alerting and Grafana for visualization."
4-
lead: "An enterprise-level cloud-native monitoring system, which can be used as drop-in replacement of Prometheus for alerting and Grafana for visualization."
4+
lead: "An all-in-one observability solution which aims to combine the advantages of Prometheus and Grafana. It manages alert rules and visualizes metrics, logs, traces in a beautiful web UI."
55
date: 2020-10-06T08:47:36+00:00
66
lastmod: 2020-10-06T08:47:36+00:00
77
draft: false

content/en/docs/install/binary.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,30 @@ toc: true
1515

1616
## Download
1717

18-
Download the latest release from [Github](https://github.com/ccfos/nightingale/releases)
18+
Download the latest release from [GitHub](https://github.com/ccfos/nightingale/releases), then you will get a tarball which name is like `n9e-{version}-linux-amd64.tar.gz`
1919

2020
## Install
2121

2222
```bash
2323
#!/bin/bash
24-
mkdir /opt/n9e && tar zxvf n9e-v6.0.1-linux-amd64.tar.gz -C /opt/n9e
24+
mkdir /opt/n9e && tar zxvf n9e-{version}-linux-amd64.tar.gz -C /opt/n9e
2525

2626
cd /opt/n9e
2727

2828
# init database
2929
mysql -uroot -p1234 < n9e.sql
3030

31-
# check configurations in /opt/n9e/etc/config.toml
31+
# check configurations in /opt/n9e/etc/config.toml and start n9e
3232
nohup ./n9e &> n9e.log &
3333
```
3434

3535
## Check Process
3636

3737
```bash
38+
# check process is runing or not
3839
ss -tlnp|grep 17000
3940
```
4041

4142
## Login
4243

43-
[http://localhost:17000](http://localhost:17000)。Default username is root and default password is `root.2020`.
44-
45-
44+
Open web browser and go to [http://localhost:17000](http://localhost:17000). The default username is `root` and default password is `root.2020`.

content/en/docs/install/compose.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ toc: true
1515

1616

1717
```bash
18-
$ git clone https://gitlink.org.cn/ccfos/nightingale.git
18+
$ git clone https://github.com/ccfos/nightingale.git
1919
$ cd nightingale/docker/compose-bridge
2020

2121
$ docker-compose up -d
@@ -39,7 +39,7 @@ prometheus prom/prometheus "/bin/prometheus --c…"
3939
redis redis:6.2 "docker-entrypoint.s…" redis 2 days ago Up 2 days
4040
```
4141

42-
Use your browser to access Nightingale's web page at [http://localhost:17000](http://localhost:17000). The default username is root and default password is `root.2020`.
42+
Use your browser to access Nightingale's web page at [http://localhost:17000](http://localhost:17000). The default username is `root` and default password is `root.2020`.
4343

4444

4545

content/en/docs/install/helm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ weight: 620
1313
toc: true
1414
---
1515

16-
[https://github.com/flashcatcloud/n9e-helm](https://github.com/flashcatcloud/n9e-helm)
16+
You can use the [n9e helm chart](https://github.com/flashcatcloud/n9e-helm) to run n9e in K8s cluster.
1717

18-
The default username is root and default password is `root.2020`.
18+
The default n9e username is `root` and password is `root.2020`.

content/en/docs/prologue/introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ weight: 100
1212
toc: true
1313
---
1414

15-
Nightingale project is an enterprise-level cloud-native monitoring system, which can be used as drop-in replacement of Prometheus for alerting and Grafana for visualization.
15+
Nightingale project is an all-in-one observability solution which aims to combine the advantages of Prometheus and Grafana. It manages alert rules and visualizes metrics, logs, traces in a beautiful web UI.
1616

1717
## Repo
1818

@@ -27,7 +27,7 @@ Any issues or PRs are welcome!
2727
<br />
2828
<br />
2929

30-
The Nightingale project is very open and can interface with common collectors in the open source community, such as categraf, telegraf, datadog-agent, grafana-agent, as well as common time series databases in the open source community, such as Prometheus, VictoriaMetrics, Thanos, as well as logging stores, such as ElasticSearch, Loki, as well as common notification mediums, such as Slack, mm, Dingtalk, Wecom.
30+
The Nightingale project is very open and can interact with common collectors in the open source community, such as categraf, telegraf, datadog-agent, grafana-agent, as well as common time series databases in the open source community, such as Prometheus, VictoriaMetrics, Thanos, as well as logging stores, such as ElasticSearch, Loki, as well as common notification mediums, such as Slack, mm, Dingtalk, Wecom.
3131

3232
## Key Capabilities
3333

content/zh/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title : "Nightingale | 夜莺监控"
3-
description: "An enterprise-level cloud-native monitoring system, which can be used as drop-in replacement of Prometheus for alerting and Grafana for visualization."
3+
description: "开源监控 | 云原生监控 | 统一监控 | 开源可观测性工具"
44
lead: "升级您的 Prometheus + AlertManager + Grafana 到 Nightingale"
55
date: 2020-10-06T08:47:36+00:00
66
lastmod: 2020-10-06T08:47:36+00:00
77
draft: false
88
images: []
99
buttonText: "开始使用"
10-
metaText: "Nightingale | 夜莺监控,一款先进的开源云原生监控分析系统,采用 All-In-One 的设计,集数据采集、可视化、监控告警、数据分析于一体,与云原生生态紧密集成,提供开箱即用的企业级监控分析和告警能力。于 2022 年 5 月 11 日,捐赠予中国计算机学会开源发展委员会(CCF ODC),为 CCF ODC 成立后接受捐赠的首个开源项目"
10+
metaText: "Nightingale | 夜莺监控是一个 All-in-One 的云原生监控工具,集合了 Prometheus 和 Grafana 的优点,你可以在 UI 上管理和配置告警策略,也可以对分布在多个 Region 的指标、日志、链路追踪数据进行统一的可视化和分析。夜莺融入了顶级互联网公司可观测性最佳实践,沉淀了众多社区专家经验,开箱即用。夜莺监控项目,托管于中国计算机学会开源发展委员会(CCF ODC,为 CCF ODC 成立后接受捐赠的第一个开源项目"
1111
startLink: "https://flashcat.cloud/docs/"
1212
---
1313

layouts/index.html

+22-6
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,44 @@ <h1 class="mt-0">{{ .Title }}</h1>
1717
{{ if eq $.Site.Language.LanguageName "Chinese" }}
1818
<section class="section section-sm">
1919
<div class="container">
20-
<div class="row justify-content-center text-center">
20+
<div class="row justify-content-center text-center">
2121
<div class="col-lg-5">
2222
<h2 class="h4">开箱即用</h2>
23-
<p>支持 Docker、Helm Chart、云服务等多种部署方式;集数据采集、监控告警、可视化为一体;内置多种监控仪表盘、快捷视图、告警规则模板,导入即可快速使用;大幅降低云原生监控系统的建设成本、学习成本、使用成本</p>
23+
<p>
24+
支持 Docker、Helm Chart、Binary等多种部署方式;
25+
支持 Categraf、Telegraf、Grafana-agent、Datadog-agent 等常见的采集器;
26+
内置常见中间件和云服务的仪表盘模版、告警规则模版,导入即可快速使用;
27+
一个工具解决数据采集、可视化、告警、通知等问题;
28+
</p>
2429
</div>
2530
<div class="col-lg-5">
2631
<h2 class="h4">专业告警</h2>
27-
<p>可视化的告警配置和管理,支持丰富的告警规则,提供屏蔽规则、订阅规则的配置能力,支持告警多种送达渠道,支持告警自愈、告警事件管理等</p>
32+
<p>
33+
可视化的管理和配置告警,告警规则功能丰富,支持组合告警策略、多生效周期、告警屏蔽、告警订阅、告警回调,支持告警多种送达渠道,支持告警自愈、告警事件管理等。可以在一个平台上配置和管理多个Region的告警。
34+
</p>
2835
</div>
2936
<div class="col-lg-5">
3037
<h2 class="h4">云原生</h2>
31-
<p>以交钥匙的方式快速构建企业级的云原生监控体系,支持 Categraf、Telegraf、Grafana-agent 等多种采集器,支持 Prometheus、VictoriaMetrics、M3DB、ElasticSearch 等多种数据库,兼容支持导入 Grafana 仪表盘,与云原生生态无缝集成</p>
38+
<p>
39+
支持 K8s 数据采集和监控;
40+
支持 OpenTelemetry 协议和采集器;
41+
兼容 Grafana 仪表盘;
42+
可接入 Prometheus、VictoriaMetrics、M3DB、ElasticSearch、ClickHouse 等多种数据源;
43+
</p>
3244
</div>
3345
</div>
3446
<div class="row justify-content-center text-center">
3547
<div class="col-lg-5">
3648
<h2 class="h4">高性能、高可用</h2>
37-
<p>得益于夜莺的多数据源管理引擎,和夜莺引擎侧优秀的架构设计,借助于高性能时序库,可以满足数亿时间线的采集、存储、告警分析场景,节省大量成本;夜莺监控组件均可水平扩展,无单点,已在上千家企业部署落地,经受了严苛的生产实践检验</p>
49+
<p>
50+
多数据源管理引擎、高性能时序库、水平扩展的架构、无单点的设计,决定了夜莺的高性能和高可用。夜莺可以满足数亿时间线的采集、存储、告警分析场景,节省大量成本,已在上千家企业部署落地,经受了严苛的生产实践检验。
51+
</p>
3852
</div>
3953
<div class="col-lg-5">
4054
<h2 class="h4">灵活扩展、中心化管理</h2>
41-
<p>夜莺监控,可部署在 1 核 1G 的云主机,可在上百台机器集群化部署,可运行在 K8s 中;也可将时序库、告警引擎等组件下沉到各机房、各 Region,兼顾边缘部署和中心化统一管理,解决数据割裂,缺乏统一视图的难题</p>
55+
<p>
56+
夜莺监控,可部署在 1 核 1G 的云主机,可在上百台机器集群化部署,可运行在 K8s 中;也可将时序库、告警引擎等组件下沉到各Region,统一管理多个边缘节点,解决多Region监控数据割裂,缺乏统一视图的难题。
57+
</p>
4258
</div>
4359
<div class="col-lg-5">
4460
<h2 class="h4">开放社区</h2>

0 commit comments

Comments
 (0)