From 6479ea50a563871a024bc35740c7804231cd2ac9 Mon Sep 17 00:00:00 2001 From: YiZixuan Date: Wed, 13 Aug 2025 00:48:37 +0800 Subject: [PATCH] docs: Add Chinese documentation and update the language selection list - Add a README_zhcn.md file in the docs directory, which contains the Chinese documentation content. - Add a link to the Chinese language option in README.md and READMEs in other languages --- README.md | 8 +- docs/README_ja.md | 8 +- docs/README_km.md | 6 ++ docs/README_zhcn.md | 185 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 204 insertions(+), 3 deletions(-) create mode 100644 docs/README_zhcn.md diff --git a/README.md b/README.md index 78f3f05..29ddc48 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,12 @@
Japanese + + + Chinese +
Chinese +
+ @@ -176,5 +182,3 @@ Here are some ways you can help improve CheckCle: CheckCle is released under the MIT License. --- - - diff --git a/docs/README_ja.md b/docs/README_ja.md index 7613903..356ffad 100644 --- a/docs/README_ja.md +++ b/docs/README_ja.md @@ -20,6 +20,12 @@
日本語 + + + Chinese +
Chinese +
+ @@ -208,4 +214,4 @@ CheckCleはMITライセンスの下でリリースされています。 [![Star History Chart](https://api.star-history.com/svg?repos=operacle/checkcle&type=Date)](https://www.star-history.com/#operacle/checkcle&Date) -CheckCleで情報を把握し、オンラインを維持しましょう! 🌐 \ No newline at end of file +CheckCleで情報を把握し、オンラインを維持しましょう! 🌐 diff --git a/docs/README_km.md b/docs/README_km.md index 43e10c2..4a057df 100644 --- a/docs/README_km.md +++ b/docs/README_km.md @@ -20,6 +20,12 @@
Japanese + + + Chinese +
Chinese +
+ diff --git a/docs/README_zhcn.md b/docs/README_zhcn.md new file mode 100644 index 0000000..e72b236 --- /dev/null +++ b/docs/README_zhcn.md @@ -0,0 +1,185 @@ +## 🌐 选择语言 + + + + + + + + +
+ + English +
English +
+
+ + Khmer +
ខ្មែរ +
+
+ + Japanese +
Japanese +
+
+ + Chinese +
Chinese +
+
+ +

+ 感谢所有的贡献者、用户和支持者,是你们让这个项目蓬勃发展。 +

+ +

+ 🚀 敬请关注更多更新、功能和改进。 +

+ +![CheckCle Platform](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/server-detail-page.png) + +# 🚀 CheckCle是什么?? + +CheckCle 是一款开源解决方案,用于对全栈系统、应用程序和基础设施进行无缝实时监控。它为开发人员、系统管理员和 DevOps 团队提供其环境各层(无论是服务器、应用程序还是服务)的深入洞察和可操作数据。借助 CheckCle,你可以在整个技术堆栈中获得可见性、控制权以及确保最佳性能的能力。 + +## 🎯 在线演示 +👉 **马上试试看:** [CheckCle Live Demo](https://demo.checkcle.io) + 用户名: admin@example.com | 密码: Admin123456 + +## 🌟 核心功能 +### 📝 开发路线图 : [DEVELOPMENT_ROADMAP](docs/DEVELOPMENT_ROADMAP.md) + +### 服务可用性与基础设施/服务器监控 +- 监控 HTTP、DNS 和 Ping 协议 +- 监控基于 TCP 的服务与 API(如 FTP、SMTP、HTTP) +- 跟踪详细的可用性(正常运行时间)、响应时间与性能问题 +- 分布式区域监控 +- 事件历史(UP / DOWN / WARNING / PAUSE:上线 / 下线 / 警告 / 暂停) +- SSL 与域名监控(域名、签发者、到期日期、剩余天数、状态、上次通知) +- 基础设施与服务器监控:支持 Linux(🐧Debian、Ubuntu、CentOS、Red Hat 等)与 Windows(Beta);提供 CPU、内存、磁盘使用、网络活动等服务器指标;一行命令安装的 Agent 脚本 +- 维护计划与事件管理 +- 运行状态 / 公共状态页 +- 通过电子邮件、Telegram、Discord 和 Slack 通知 +- 报告与分析 +- 设置面板(用户管理、数据保留、多语言、主题〔深色/浅色模式〕、通知渠道与告警模板) + +## #️⃣ 入门指南 + +### 当前架构支持 +* ✅ x86_64 PC、笔记本电脑、服务器 (amd64) +* ✅ 现代树莓派3/4/5(搭载64位操作系统)、Apple Silicon Macs (arm64) + +### 使用以下方法之一安装 CheckCle : + +1. 使用Docker Compose配置进行安装(推荐) +```bash + +version: '3.9' + +services: + checkcle: + image: operacle/checkcle:latest + container_name: checkcle + restart: unless-stopped + ports: + - "8090:8090" # Web 应用端口 + volumes: + - /opt/pb_data:/mnt/pb_data # 将主机目录映射到容器路径 + ulimits: + nofile: + soft: 4096 + hard: 8192 + +``` +2. 使用 docker run 进行安装。只需复制下面的 docker run 命令 +```bash +docker run -d \ + --name checkcle \ + --restart unless-stopped \ + -p 8090:8090 \ + -v /opt/pb_data:/mnt/pb_data \ + --ulimit nofile=4096:8192 \ + operacle/checkcle:latest + +``` + +3. 网页管理 + + 默认网址: http://0.0.0.0:8090 + 用户名: admin@example.com + 密码: Admin123456 + +4. 遵循以下快速入门指南 https://docs.checkcle.io + +### +![checkcle-collapse-black](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/uptime-1.4.png) +![Service Detail Page](https://cdn.checkcle.io/images/uptime/uptime-regional-detail.png) +![checkcle-server-instance](https://cdn.checkcle.io/images/server/server-list.png) +![SSL Monitoring](https://cdn.checkcle.io/images/ssl-domain/ssl-list.png) +![Schedule Maintenance](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/checkcle-schedule-maintenance.png) + + +## 🌟 面向社区的 CheckCle + +- 以热忱打造:由一位开源爱好者为社区创建 +- 免费且开源:完全免费,无任何隐藏费用 +- 协作与连接:结识同样热爱开源的志同道合者 + +--- + +## 赞助商 +🙏 我们非常感谢我们的赞助商。你们的贡献使我们能够维护基础设施(托管、域名)、运行测试,并继续开发有价值的功能。 + +### 🥈 白银在线保障合作伙伴 + + + + + +### 🧡 支持者 + + + + + +### 🤝 生态系统与社区合作伙伴 + + + + +--- + + +## 👥 贡献者 +感谢你为让CheckCle变得更好所做出的贡献与持续努力,你太棒了 🫶 + +[![](https://contrib.rocks/image?repo=operacle/checkcle)](https://github.com/operacle/checkcle/graphs/contributors) + +--- + +## 🤝 贡献方式 + +以下是你可以帮助改进 CheckCle 的一些方式: + +- 🐞 **报告问题** – 发现故障/异常?请在提交 [GitHub Issue](https://github.com/operacle/checkcle/issues) 告诉我们。 +- 🌟 **建议功能** – 有个点子?发起 [Discussion](https://github.com/operacle/checkcle/discussions) 讨论,或提交一个功能请求 [Feature Request Issue](https://github.com/operacle/checkcle/issues)。 +- 🛠 **提交 Pull Request** – 改进代码、修复缺陷、添加功能,或完善文档。 +- 📝 **改善文档** – 就算是修正一个错别字也很有帮助! +- 🌍 **传播项目** – 给 [CheckCle](https://github.com/operacle/checkcle.git) 仓库点个 Star ⭐,在社交平台分享,并邀请更多人参与贡献! + +--- + +## 🌍 联系我们 +- 网站: [checkcle.io](https://checkcle.io) +- 文档: [docs.checkcle.io](https://docs.checkcle.io) | 非常感谢 [GitBook](https://github.com/gitbookio) 赞助 CheckCle 的开源站点计划(OSS Site Plan)! +- 在 Discord 上聊天: 加入我们的 [@discord](https://discord.gg/xs9gbubGwX) 频道 +- 在 X 上关注我们: [@checkcle_oss](https://x.com/checkcle_oss) + +## 📜 许可证 + +CheckCle 遵循 MIT 许可证发布。 + +---