chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:31:02 +08:00
commit 171e2a4a0d
1315 changed files with 266099 additions and 0 deletions
+182
View File
@@ -0,0 +1,182 @@
## 🌐 言語選択
<table align="center">
<tr>
<td align="center">
<a href="../CONTRIBUTING.md">
<img src="https://flagcdn.com/24x18/gb.png" alt="English" />
<br/><strong>English</strong>
</a>
</td>
<td align="center">
<a href="CONTRIBUTING_km.md">
<img src="https://flagcdn.com/24x18/kh.png" alt="Khmer" />
<br/><strong>ខ្មែរ</strong>
</a>
</td>
<td align="center">
<a href="CONTRIBUTING_ja.md">
<img src="https://flagcdn.com/24x18/jp.png" alt="Japanese" />
<br/><strong>日本語</strong>
</a>
</td>
</tr>
</table>
<p align="center">
このプロジェクトを発展させてくださったすべての貢献者、ユーザー、サポーターの皆様に感謝いたします。
</p>
<p align="center">
🚀 <strong>今後のアップデート、機能、改善にご期待ください。</strong>
</p>
# 🛠️ CheckCleへの貢献
**CheckCle**への貢献にご興味をお持ちいただき、ありがとうございます — リアルタイムフルスタック監視のための究極のオープンソースプラットフォームです。バグの報告、機能の提案、ドキュメントの改善、またはコードの提出など、どのような形でのご貢献でも歓迎いたします!
大小を問わず、あらゆる種類の貢献を歓迎します。このガイドが始めるのに役立ちます。
---
## 📌 目次
- [行動規範](#-行動規範)
- [貢献の方法](#-貢献の方法)
- [開発環境のセットアップ](#-開発環境のセットアップ)
- [プルリクエストのプロセス](#-プルリクエストのプロセス)
- [バグと問題の報告](#-バグと問題の報告)
- [機能リクエスト](#-機能リクエスト)
- [コミュニティとサポート](#-コミュニティとサポート)
- [ライセンス](#-ライセンス)
---
## 📜 行動規範
私たちは[行動規範](https://opensource.guide/code-of-conduct/)に従い、オープンで歓迎するコミュニティを促進しています。参加することで、これらの基準を守ることに同意したものとします。
---
## 🤝 貢献の方法
CheckCleの改善に役立つ方法をいくつか紹介します:
- 🐞 **バグの報告** 不具合を見つけましたか?[GitHub Issue](https://github.com/operacle/checkcle/issues)を開いてお知らせください。
- 🌟 **機能の提案** アイデアはありますか?[Discussion](https://github.com/operacle/checkcle/discussions)を始めるか、機能リクエストのissueを開いてください。
- 🛠 **プルリクエストの提出** – コードの改善、バグの修正、機能の追加、ドキュメントの改善を行ってください。
- 📝 **ドキュメントの改善** – タイポの修正でも大変助かります!
- 🌍 **宣伝の協力** – リポジトリに⭐をつけて、SNSでシェアし、他の方にも貢献を呼びかけてください!
---
## 🧰 開発環境のセットアップ
コードに貢献する前に、プロジェクトをローカルで設定してください:
### 1. リポジトリをフォーク
[GitHub](https://github.com/operacle/checkcle)で「Fork」をクリックして、自分のコピーを作成してください。
### 2. フォークをクローン
```bash
git clone https://github.com/yourusername/checkcle.git
cd checkcle
```
### 3. 依存関係のインストール
READMEまたはプロジェクトドキュメントの指示に従って、必要なパッケージをインストールし、ローカル開発サーバーを実行してください。
### 4. ローカル開発の開始
```bash
#Webアプリケーション
cd application/
npm install && npm run dev
#サーバーバックエンド
cd server
./pocketbase serve --dir pb_data
localhostを使用していない場合は、次のコマンドで実行してください (./pocketbase serve --http=0.0.0.0:8090 --dir pb_data)
```
### 5. サービスチェック操作の開始
```bash
#サーバーバックエンド
サービス操作を開始 (PING、HTTP、TCP、DNSのサービスチェック)
cd server/service-operation
go run main.go (localhost接続の場合、.envを変更する必要はありません)
```
### 6. 分散地域エージェントの開始
```bash
#### 1. リポジトリをフォーク
[GitHub](https://github.com/operacle/Distributed-Regional-Monitoring)で「Fork」をクリックして、自分のコピーを作成してください。
#### 2. フォークをクローン
git clone https://github.com/yourusername/Distributed-Regional-Monitoring.git
cd Distributed-Regional-Monitoring
#### 3. Goサービスのインストール(Goサービスがインストールされていることを確認してください)
.env.example -> .envにコピー
.envファイルで地域エージェント設定を変更
そして実行: go run main.go
```
---
## ✅ プルリクエストのプロセス
1. コードが既存のスタイルと命名規則に従っていることを確認してください。
2. 明確で簡潔なコミットメッセージを書いてください。
3. ブランチをプッシュし、`develop`ブランチにプルリクエスト(PR)を開いてください。
4. 意味のあるPRの説明を提供してください(何を/なぜ/どのように)。
5. 関連するissueがある場合はリンクしてください(例:`Closes #12`)。
6. すべてのチェックが通ることを確認してください(例:リンティング、テスト)。
PRをレビューし、必要に応じて変更をリクエストし、準備ができ次第マージします!
---
## 🐛 バグと問題の報告
可能な限り多くの情報を含めてください:
- 明確で説明的なタイトル
- 再現手順
- 期待される動作と実際の動作
- 環境情報(OS、ブラウザ、デバイスなど)
- 該当する場合はスクリーンショットやログ
報告には[Issue Tracker](https://github.com/operacle/checkcle/issues)をご利用ください。
---
## 💡 機能リクエスト
アイデアをお聞かせください![Discussion](https://github.com/operacle/checkcle/discussions)または機能リクエストのissueを開いてください。[ロードマップ](https://github.com/operacle/checkcle#development-roadmap)に既に記載されていないことを確認してください。
---
## 🌍 コミュニティとサポート
ヘルプが必要ですか?つながりたいですか?
- 💬 [Discordに参加](https://discord.gg/xs9gbubGwX)
- 🗣 [GitHub Discussion](https://github.com/operacle/checkcle/discussions)を開始または参加
- 🐦 [XTwitter](https://x.com/tl)でフォロー
---
## 📜 ライセンス
貢献することで、あなたの貢献が[MITライセンス](LICENSE)の下でライセンスされることに同意したものとします。
---
## 🙏 ありがとうございます
CheckCleを一緒に構築できることを嬉しく思います — **コミュニティによる、コミュニティのための**強力な監視プラットフォーム。あなたのサポートは私たちにとってとても大切です!💙
+181
View File
@@ -0,0 +1,181 @@
## 🌐 Select Language
<table align="center">
<tr>
<td align="center">
<a href="../CONTRIBUTING.md">
<img src="https://flagcdn.com/24x18/gb.png" alt="English" />
<br/><strong>English</strong>
</a>
</td>
<td align="center">
<a href="CONTRIBUTING_km.md">
<img src="https://flagcdn.com/24x18/kh.png" alt="Khmer" />
<br/><strong>ខ្មែរ</strong>
</a>
</td>
<td align="center">
<a href="CONTRIBUTING_ja.md">
<img src="https://flagcdn.com/24x18/jp.png" alt="Japanese" />
<br/><strong>Japanese</strong>
</a>
</td>
</tr>
</table>
<p align="center">
Thank you to all our contributors, users, and supporters for making this project thrive.
</p>
<p align="center">
🚀 <strong>Stay tuned for more updates, features, and improvements.</strong>
</p>
# 🛠️ Contributing to CheckCle
Thank you for your interest in contributing to **CheckCle** — the ultimate open-source platform for real-time full-stack monitoring. Whether you're here to report bugs, suggest features, improve documentation, or submit code, your contribution matters!
We welcome all kinds of contributions, big or small. This guide will help you get started.
---
## 📌 Table of Contents
- [Code of Conduct](#-code-of-conduct)
- [Ways to Contribute](#-ways-to-contribute)
- [Development Setup](#-development-setup)
- [Pull Request Process](#-pull-request-process)
- [Reporting Bugs & Issues](#-reporting-bugs--issues)
- [Feature Requests](#-feature-requests)
- [Community & Support](#-community--support)
- [License](#-license)
---
## 📜 Code of Conduct
We follow a [Code of Conduct](https://opensource.guide/code-of-conduct/) to foster an open and welcoming community. By participating, you agree to uphold these standards.
---
## 🤝 Ways to Contribute
Here are some ways you can help improve CheckCle:
- 🐞 **Report Bugs** Found a glitch? Let us know by opening a [GitHub Issue](https://github.com/operacle/checkcle/issues).
- 🌟 **Suggest Features** Have an idea? Start a [Discussion](https://github.com/operacle/checkcle/discussions) or open a Feature Request issue.
- 🛠 **Submit Pull Requests** Improve the code, fix bugs, add features, or enhance the docs.
- 📝 **Improve Documentation** Even a typo fix helps!
- 🌍 **Spread the Word** Star ⭐ the repo, share it on socials, and invite others to contribute!
---
## 🧰 Development Setup
Before contributing code, set up the project locally:
### 1. Fork the Repository
Click "Fork" on [GitHub](https://github.com/operacle/checkcle) to create your own copy.
### 2. Clone Your Fork
```bash
git clone --branch develop https://github.com/operacle/checkcle.git
cd checkcle
```
### 3. Install Dependencies
Follow the instructions in the README or project docs to install required packages and run the local development server.
### 4. Start Local Development
```bash
#Web Application
cd application/
npm install && npm run dev
#Server Backend
cd server
./pocketbase serve --dir pb_data
If you're not using localhost, please run with this (./pocketbase serve --http=0.0.0.0:8090 --dir pb_data)
```
### 4. Start Service Check Operation
```bash
#Server Backend
Start Service Operation (Check Service for PING, HTTP, TCP, DNS)
cd server/service-operation
go run main.go (you do not need to change the .env while it's the localhost connection)
```
### 5. Start Distributed Regional Agent
```bash
#### 1. Fork the Repository
Click "Fork" on [GitHub](https://github.com/operacle/Distributed-Regional-Monitoring) to create your own copy.
#### 2. Clone Your Fork
git clone --branch main https://github.com/operacle/Distributed-Regional-Monitoring.git
cd Distributed-Regional-Monitoring
#### 3. Install Go Service (make sure you have installed the Go Service)
Copy .env.example -> .env
Change regional agent configuration in .env file
and Run: go run main.go
```
---
## ✅ Pull Request Process
1. Ensure your code follows the existing style and naming conventions.
2. Write clear, concise commit messages.
3. Push your branch and open a Pull Request (PR) on the `develop` branch.
4. Provide a meaningful PR description (what/why/how).
5. Link related issues if applicable (e.g. `Closes #12`).
6. Make sure all checks pass (e.g., linting, tests).
Well review your PR, request changes if needed, and merge it once ready!
---
## 🐛 Reporting Bugs & Issues
Please include as much information as possible:
- A clear, descriptive title
- Steps to reproduce
- Expected vs actual behavior
- Environment info (OS, browser, device, etc.)
- Screenshots or logs if applicable
Use the [Issue Tracker](https://github.com/operacle/checkcle/issues) to report.
---
## 💡 Feature Requests
Wed love to hear your ideas! Open a [Discussion](https://github.com/operacle/checkcle/discussions) or Feature Request issue. Make sure its not already listed in the [Roadmap](https://github.com/operacle/checkcle#development-roadmap).
---
## 🌍 Community & Support
Need help? Want to connect?
- 💬 [Join our Discord](https://discord.gg/xs9gbubGwX)
- 🗣 Start or join a [GitHub Discussion](https://github.com/operacle/checkcle/discussions)
- 🐦 Follow us on [X (Twitter)](https://x.com/tl)
---
## 📜 License
By contributing, you agree that your contributions will be licensed under the [MIT License](LICENSE).
---
## 🙏 Thank You
Were excited to build CheckCle together — a powerful monitoring platform **for the community, by the community**. Your support means the world! 💙
+150
View File
@@ -0,0 +1,150 @@
# 📍 Development Roadmap
Welcome to the official development roadmap for this project. This document outlines our plans, priorities, and direction for upcoming releases. It is intended to keep contributors, users, and stakeholders informed about the projects evolution.
> 🔄 **Note**: This roadmap is subject to change based on feedback, urgency, or shifts in priorities.
---
## ✅ Goals and Vision
Our mission is to deliver a robust, scalable, and user-friendly solution for "uptime monitoring and server infrastructure insights".
**Core objectives:**
- Provide high performance with low resource usage
- Ensure scalability and modularity
- Focus on excellent user experience (UX)
- Maintain open-source transparency and community-driven features
---
## 🧩 Key Main Features
#### Delivery Status:
- ✅ Setup authentication and user management
- ✅ Core monitoring dashboard
- ✅ Agent communication with backend
- ✅ Docker containerization
- ✅ CheckCle Website
- ✅ CheckCle Demo Server
- ✅ SSL & Domain Monitoring
- ✅ Schedule Maintenance
- ✅ Incident Management
- ✅ Infrastructure Server Monitoring
- ✅ Operational Status / Public Status Pages
- ✅ Uptime Monitoring (HTTP, TCP, PING, DNS)
- ✅ Distributed Regional Monitoring Agent
- ✅ System Setting Panel and Mail Settings
- ✅ Data Retention & Automate Shrink
- ✅ Open-source release with documentation
---
## 🚦 Roadmap Stages
The roadmap is divided into the following stages:
| Stage | Description |
|-------|-------------|
| 🎯 Planned | Approved features or improvements that are on the schedule |
| 🔧 In Progress | Actively being developed |
| ✅ Completed | Fully implemented and tested |
| ⏳ Backlog | On hold or pending prioritization |
| 🧪 Experimental | Testing new concepts or prototypes |
---
## 🗂 Milestone Overview
### 🚀 v1.0.0-1.3.0 Initial Release _(Target: Q2 2025)_
**Status:** ✅ Completed
**Goal:** MVP feature completion, API stability, and core use-case readiness.
#### Key Deliverables: https://github.com/operacle/checkcle/releases
---
### 🚀 v1.4 - 1.5 Feature Enhancements _(Target: Q3 2025)_
**Status:** ✅ Completed
#### Tentative Features:
- [ ] ✅ Server and Service Table row clickable to detail page.
- [ ] ✅ Implement pagination for the SSL dashboard table
- [ ] ✅ Server Agent (RPM, Docker container, and general binary package)
- [ ] ✅ Notification System (Webhook, Telegram, Discord, Slack, Email, Google Chat)
- [ ] ✅ Improve Uptime Service and Server connection update based on status and notification.
- [ ] ✅ Improve SSL perform the initial check automatically after creation
- [ ] ✅ Rate limiting and abuse protection
- [ ] ✅ Add ntfy push notifications
### 🚀 v1.6.0 Feature Enhancements _(Target: Q3 2025)_
**Status:** ✅ Completed
#### Tentative Features:
- [ ] ✅ Allow user to update the schema directly from the dashboard
- [ ] ✅ Add Korean translations and update types. By @taking [#143](https://github.com/operacle/checkcle/pull/143)
- [ ] ✅ Add Simplified Chinese translation. By @sqkkyzx [#128](https://github.com/operacle/checkcle/pull/128)
- [ ] ✅ improve i18n and add new translations. @sqkkyzx [#132](https://github.com/operacle/checkcle/pull/132)
- [ ] ✅ fix(incident): unify assigned user handling with fallback and UI update. By @ghotso [#142](https://github.com/operacle/checkcle/pull/142)
- [ ] ✅ sync German translations across incident, maintenance, services & settings. By @ghotso [#141](https://github.com/operacle/checkcle/pull/141)
- [ ] ✅ fix(services-form): max retry attempts. By @ghotso [#147](https://github.com/operacle/checkcle/pull/147)
- [ ] ✅ Add Pushover notifications
- [ ] ✅ fix(ssl): Ensure edit form saves notification_id and template_id in DB.
- [ ] ✅ Add Notifiarr notifications
- [ ] ✅ Add Gotify notifications
- [ ] ✅ Enhance the Data retention feature
### 🚀 v1.7.0 Feature Enhancements
**Status:** 🔧 In Progress
#### Tentative Features:
- [ ] ✅ Fix Regenerate Server Agent ID & Token without page refresh
- [ ] ✅ feat: implement user impersonation by @giriparus
- [ ] ✅ Fix server agent ID & token refresh when adding multiple agents (closes #165)
- [ ] ✅ Fix hostname/IP validation to prevent whitespace input in the SSL and Create New Service form (closes #114)
- [ ] ✅ Fix responsive breakpoints and flex layout for sidebar menu
- [ ] 🔧 Implement CheckCle to Support Multiple Database (Postgres, MySQL and SQLite)
- [ ] 🔧 Improve the uptime history bar load performance in the uptime monitoring dashboard.
- [ ] 🔧 Bugfix: recovery time not displayed correctly in incident history on Uptime dashboard
- [ ] 🔧 feat: add configurable notification support customizable delay before sending downtime notifications
- [ ] 🔧 Convert the Docker Hub from personal account to an organization (the CheckCle Docker Compose image endpoint will need to be updated).
- [ ] 🔧 Fix for the response time dashboard filter (date/time) in the uptime detail page
- [ ] 🔧 Fix the server historical loading data
- [ ] 🔧 Improve docker agent for server monitoring
- [ ] 🔧 Improve the Server Agent on Unraid
- [ ] 🔧 Server Windows Agent
- [ ] 🔧 More Uptime Service Type (HTTP keyword, HTTP json)
- [ ] 🔧 Server support with cpu temperature
- [ ] 🔧 Server upport with multiple disks/volume
- [ ] 🔧 Server support with Multiple Network Interfaces
- [ ] 🔧 Improve the Operational status page
- [ ] 🔧 Server network bandwidth monitoring
- [ ] 🔧 Grouping uptime services
- [ ] 🎯 Improve the Schedule and Incident for automation
- [ ] 🎯 Uptime Monitoring option for choose: HTTP/HTTPS. Add Option to Bypass SSL Verification in Uptime
- [ ] 🎯 Add 2FA support
---
## 🧠 Ideas / Community Wishlist
These are community-suggested or experimental features under review:
- [ ] OIDC Connect | OAuth2 integration
- [ ] PWA support
- [ ] Server outbound and inbound traffic usage
Youre welcome to propose features via [GitHub Discussions](https://github.com/operacle/checkcle/discussions) or open an issue with the `feature-request` template.
---
## 📌 How to Contribute
We encourage contributions from the community!
To get involved:
- Review [CONTRIBUTING.md](../CONTRIBUTING.md) | https://docs.checkcle.io
- Check out the [Open Issues](https://github.com/operacle/checkcle/issues)
- Join us in shaping the roadmap via [Discussions](https://github.com/operacle/checkcle/discussions)
---
With ❤️ from the CheckCle
[Website](https://checkcle.io) | [GitHub](https://github.com/operacle/checkcle)
+144
View File
@@ -0,0 +1,144 @@
# 📍 開発ロードマップ
このプロジェクトの公式開発ロードマップへようこそ。このドキュメントでは、今後のリリースに向けた計画、優先順位、方向性について説明します。貢献者、ユーザー、ステークホルダーにプロジェクトの進化について情報を提供することを目的としています。
> 🔄 **注記**: このロードマップは、フィードバック、緊急性、または優先順位の変更に基づいて変更される場合があります。
---
## ✅ ゴールとビジョン
私たちの使命は、「アップタイム監視とサーバーインフラストラクチャインサイト」のための堅牢でスケーラブル、かつユーザーフレンドリーなソリューションを提供することです。
**主要な目標:**
- 低リソース使用量での高パフォーマンスの提供
- スケーラビリティとモジュラリティの確保
- 優れたユーザーエクスペリエンス(UX)に焦点を当てる
- オープンソースの透明性とコミュニティ主導機能の維持
---
## 🧩 主要機能
#### 提供状況:
- ✅ 認証とユーザー管理の設定
- ✅ コア監視ダッシュボード
- ✅ バックエンドとのエージェント通信
- ✅ Docker コンテナ化
- ✅ CheckCle ウェブサイト
- ✅ CheckCle デモサーバー
- ✅ SSL&ドメイン監視
- ✅ スケジュールメンテナンス
- ✅ インシデント管理
- ✅ インフラストラクチャサーバー監視
- ✅ 運用ステータス / パブリックステータスページ
- ✅ アップタイム監視(HTTP、TCP、PING、DNS
- ✅ 分散地域監視エージェント
- ✅ システム設定パネルとメール設定
- ✅ データ保持と自動縮小
- ✅ ドキュメント付きオープンソースリリース
---
## 🚦 ロードマップステージ
ロードマップは以下のステージに分かれています:
| ステージ | 説明 |
|-------|-------------|
| 🎯 計画済み | スケジュールに組み込まれた承認済み機能または改善 |
| 🔧 進行中 | 積極的に開発中 |
| ✅ 完了 | 完全に実装およびテスト済み |
| ⏳ バックログ | 保留または優先順位付け待ち |
| 🧪 実験的 | 新しいコンセプトまたはプロトタイプのテスト |
---
## 🗂 マイルストーン概要
### 🚀 v1.0.0-1.3.0 初期リリース _(目標: 2025年Q2)_
**ステータス:** ✅ 完了
**ゴール:** MVP機能完了、API安定性、コア使用事例対応。
#### 主要成果物: https://github.com/operacle/checkcle/releases
---
### 🚀 v1.4 - 1.5 機能強化 _(目標: 2025年Q3)_
**ステータス:** ✅ 完了
#### 予定機能:
- [ ] ✅ サーバーとサービステーブルの行をクリック可能にして詳細ページへ遷移
- [ ] ✅ SSL ダッシュボードテーブルのページネーション実装
- [ ] ✅ サーバーエージェント(RPM、Docker コンテナ、汎用バイナリパッケージ)
- [ ] ✅ 通知システム(Webhook、Telegram、Discord、Slack、Email、Google Chat
- [ ] ✅ ステータスと通知に基づくアップタイムサービスとサーバー接続更新の改善
- [ ] ✅ SSL作成後の初期チェック自動実行の改善
- [ ] ✅ レート制限と悪用防止
- [ ] ✅ ntfy プッシュ通知の追加
### 🚀 v1.6.0 機能強化 _(目標: 2025年Q3)_
**ステータス:** ✅ 完了
#### 予定機能:
- [ ] ✅ ダッシュボードから直接スキーマを更新できる機能の追加
- [ ] ✅ 韓国語翻訳の追加と型の更新。@taking [#143](https://github.com/operacle/checkcle/pull/143)
- [ ] ✅ 簡体字中国語翻訳の追加。@sqkkyzx [#128](https://github.com/operacle/checkcle/pull/128)
- [ ] ✅ i18nの改善と新しい翻訳の追加。@sqkkyzx [#132](https://github.com/operacle/checkcle/pull/132)
- [ ] ✅ fix(incident): フォールバックを使用した割り当てユーザー処理の統一とUI更新。@ghotso [#142](https://github.com/operacle/checkcle/pull/142)
- [ ] ✅ インシデント、メンテナンス、サービス、設定のドイツ語翻訳の同期。@ghotso [#141](https://github.com/operacle/checkcle/pull/141)
- [ ] ✅ fix(services-form): 最大リトライ試行回数。@ghotso [#147](https://github.com/operacle/checkcle/pull/147)
- [ ] ✅ Pushover 通知の追加
- [ ] ✅ fix(ssl): 編集フォームでnotification_idとtemplate_idがDBに保存されるようにする
- [ ] ✅ Notifiarr 通知の追加
- [ ] ✅ Gotify 通知の追加
- [ ] ✅ データ保持機能の強化
### 🚀 v1.7.0 機能強化 _(目標: 2025年Q3)_
**ステータス:** 🔧 進行中
#### 予定機能:
- [ ] ✅ ページ更新なしでサーバーエージェントIDとトークンを再生成する機能の修正
- [ ] 🔧 アップタイム監視ダッシュボードでのアップタイム履歴バーの読み込みパフォーマンスの改善
- [ ] 🔧 バグ修正: アップタイムダッシュボードのインシデント履歴で復旧時間が正しく表示されない問題
- [ ] 🔧 機能: ダウンタイム通知を送信する前にカスタマイズ可能な遅延を追加
- [ ] 🔧 Docker Hubを個人アカウントから組織アカウントに変換(CheckCle Docker Compose イメージエンドポイントの更新が必要)
- [ ] 🔧 アップタイム詳細ページのレスポンスタイムダッシュボードフィルタ(日付/時刻)の修正
- [ ] 🔧 サーバー履歴データ読み込みの修正
- [ ] 🔧 サーバー監視用Dockerエージェントの改善
- [ ] 🔧 Unraid上のサーバーエージェントの改善
- [ ] 🔧 サーバー Windows エージェント
- [ ] 🔧 より多くのアップタイムサービスタイプ(HTTPキーワード、HTTP JSON
- [ ] 🔧 CPU温度対応のサーバーサポート
- [ ] 🔧 複数ディスク/ボリューム対応のサーバーサポート
- [ ] 🔧 複数ネットワークインターフェース対応のサーバーサポート
- [ ] 🔧 運用ステータスページの改善
- [ ] 🔧 サーバーネットワーク帯域幅監視
- [ ] 🔧 アップタイムサービスのグループ化
- [ ] 🎯 自動化のためのスケジュールとインシデントの改善
- [ ] 🎯 アップタイム監視のHTTP/HTTPSオプション選択: アップタイムでSSL検証をバイパスするオプションの追加
- [ ] 🎯 2FA サポート追加
---
## 🧠 アイデア / コミュニティウィッシュリスト
以下はレビュー中のコミュニティ提案または実験的機能です:
- [ ] OIDC Connect | OAuth2統合
- [ ] PWA サポート
- [ ] サーバーのアウトバウンドおよびインバウンドトラフィック使用量
[GitHub Discussions](https://github.com/operacle/checkcle/discussions)で機能提案を歓迎します。または`feature-request`テンプレートでイシューを開いてください。
---
## 📌 貢献方法
コミュニティからの貢献を歓迎しています!
参加方法:
- [CONTRIBUTING.md](../CONTRIBUTING.md) | https://docs.checkcle.io をレビュー
- [Open Issues](https://github.com/operacle/checkcle/issues) を確認
- [Discussions](https://github.com/operacle/checkcle/discussions) でロードマップの形成に参加
---
CheckCle より ❤️ を込めて
[ウェブサイト](https://checkcle.io) | [GitHub](https://github.com/operacle/checkcle)
+194
View File
@@ -0,0 +1,194 @@
## 🌐 言語選択
<table align="center">
<tr>
<td align="center">
<a href="../README.md">
<img src="https://flagcdn.com/24x18/gb.png" alt="English" />
<br/><strong>English</strong>
</a>
</td>
<td align="center">
<a href="README_km.md">
<img src="https://flagcdn.com/24x18/kh.png" alt="Khmer" />
<br/><strong>ខ្មែរ</strong>
</a>
</td>
<td align="center">
<a href="README_ja.md">
<img src="https://flagcdn.com/24x18/jp.png" alt="Japanese" />
<br/><strong>日本語</strong>
</a>
</td>
<td align="center">
<a href="README_zhcn.md">
<img src="https://flagcdn.com/24x18/cn.png" alt="Chinese" />
<br/><strong>Chinese</strong>
</a>
</td>
</tr>
</table>
<p align="center">
このプロジェクトを発展させてくださったすべての貢献者、ユーザー、サポーターの皆様に感謝いたします。
</p>
<p align="center">
🚀 <strong>今後のアップデート、機能、改善にご期待ください。</strong>
</p>
![CheckCle Platform](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/server-detail-page.png)
# 🚀 CheckCleとは?
CheckCleは、フルスタックシステム、アプリケーション、インフラストラクチャのシームレスでリアルタイムな監視を実現するオープンソースソリューションです。開発者、システム管理者、DevOpsチームに対して、環境の全レイヤー(サーバー、アプリケーション、サービス)にわたる深い洞察と実用的なデータを提供します。CheckCleにより、テクノロジースタック全体の可視性、制御、最適なパフォーマンスの確保が可能になります。
## 🎯 ライブデモ
👉 **今すぐ試す:** [CheckCle ライブデモ](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(ベータ版)をサポート。ワンライン・インストール・エージェント・スクリプトによるサーバーメトリクス(CPU、RAM、ディスク使用量、ネットワーク活動)の監視
- メンテナンススケジュール & インシデント管理
- 運用ステータス / パブリックステータスページ
- メール、Telegram、Discord、Slack経由の通知
- レポート & 分析
- 設定パネル(ユーザー管理、データ保持、多言語、テーマ(ダーク & ライトモード)、通知とチャネル、アラートテンプレート)
## #️⃣ はじめに
### 現在サポートされているアーキテクチャ
* ✅ x86_64 PC、ラップトップ、サーバー(amd64)
* ✅ 最新のRaspberry Pi 3/4/564ビットOS)、Apple Silicon Macarm64
### 以下のオプションのいずれかを使用して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. 管理Web画面
デフォルトURL: http://0.0.0.0:8090
ユーザー: admin@example.com
パスワード: Admin123456
4. https://docs.checkcle.io のクイックスタートガイドに従ってください
###
![checkcle-collapse-black](https://cdn.checkcle.io/images/uptime/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)
![Notification System](https://cdn.checkcle.io/general/powerfull_notification.png)
## 🌟 CheckCleはコミュニティのため?
- **情熱を持って開発**: コミュニティのためのオープンソース愛好家によって作成
- **フリー & オープンソース**: 隠れたコストなしで完全に無料で使用可能
- **協力 & つながり**: オープンソースに情熱を持つ同志と出会う
---
## スポンサー
スポンサーシップの受付は終了しました。今後は、クラウドサーバー、ドメイン、ホスティングクレジットなどのインフラストラクチャを提供するエコシステムおよびコミュニティパートナーシップの形でのみサポートを受け付けます。
CheckCleをサポートすることに興味がある技術系企業の方は、著者まで直接お問い合わせください:tolaleng@checkcle.io
### 🤝 エコシステム & コミュニティパートナー
<div style="display: flex; align-items: center; gap: 10px;">
<a href="https://github.com/gitbookio">
<img src="https://avatars.githubusercontent.com/u/7111340?s=200&v=4"
width="75" height="75"
style="border-radius: 50%;"
alt="GitBook Logo" />
</a>
<a href="https://www.cloudflare.com">
<img src="https://cdn.checkcle.io/images/sponsor/cloudflare-checkcle_logo.png"
height="60"
alt="Cloudflare Logo" />
</a>
<a href="https://m.do.co/c/0c27ef82475f">
<img src="https://cdn.checkcle.io/images/sponsor/digitalocean_checkcle.png"
height="50"
alt="DigitalOcean Logo" />
</a>
</a>
<a href="https://www.jetbrains.com/">
<img src="https://cdn.checkcle.io/images/sponsor/jetbrains.png"
height="50"
alt="Jetbrains Logo" />
</a>
</div>
---
## 👥 貢献者
CheckCleの継続的な改善にご貢献いただき、ありがとうございます。皆様は素晴らしいです 🫶
[![](https://contrib.rocks/image?repo=operacle/checkcle)](https://github.com/operacle/checkcle/graphs/contributors)
---
## 🤝 貢献の方法
CheckCleの改善にご協力いただける方法をご紹介します:
- 🐞 **バグ報告** 不具合を発見しましたか?[GitHub Issue](https://github.com/operacle/checkcle/issues)を開いてお知らせください。
- 🌟 **機能提案** アイデアはありますか?[ディスカッション](https://github.com/operacle/checkcle/discussions)を開始するか、機能リクエストのissueを開いてください。
- 🛠 **プルリクエスト送信** – コードの改善、バグ修正、機能追加、ドキュメントの改良を行ってください。
- 📝 **ドキュメント改善** タイポ修正でも助かります!
- 🌍 **口コミ宣伝** [CheckCle](https://github.com/operacle/checkcle.git) リポジトリに⭐をつけ、SNSでシェアし、他の人を貢献に招待してください!
---
## 🌍 つながりを保つ
- ウェブサイト: [checkcle.io](https://checkcle.io)
- ドキュメント: [docs.checkcle.io](https://docs.checkcle.io) | CheckCle OSS サイトプランをスポンサーしてくださった[GitBook](https://github.com/gitbookio)に特別な感謝を!
- Discordでチャット: コミュニティに参加 [@discord](https://discord.gg/xs9gbubGwX)
- Xでフォロー: [@checkcle_oss](https://x.com/checkcle_oss)
## 📜 ライセンス
CheckCleはMITライセンスの下でリリースされています。
---
+188
View File
@@ -0,0 +1,188 @@
## 🌐 Select Language
<table align="center">
<tr>
<td align="center">
<a href="../README.md">
<img src="https://flagcdn.com/24x18/gb.png" alt="English" />
<br/><strong>English</strong>
</a>
</td>
<td align="center">
<a href="README_km.md">
<img src="https://flagcdn.com/24x18/kh.png" alt="Khmer" />
<br/><strong>ខ្មែរ</strong>
</a>
</td>
<td align="center">
<a href="README_ja.md">
<img src="https://flagcdn.com/24x18/jp.png" alt="Japanese" />
<br/><strong>Japanese</strong>
</a>
</td>
<td align="center">
<a href="README_zhcn.md">
<img src="https://flagcdn.com/24x18/cn.png" alt="Chinese" />
<br/><strong>Chinese</strong>
</a>
</td>
</tr>
</table>
<p align="center">
Thank you to all our contributors, users, and supporters for making this project thrive.
</p>
<p align="center">
🚀 <strong>Stay tuned for more updates, features, and improvements.</strong>
</p>
![CheckCle Platform](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/server-detail-page.png)
# 🚀 តើឆេកខលគឺជាអ្វី?
ឆេកខល (CheckCle) គឺជាប្រពន័្ធប្រភពបើកចំហមួយដែលបើកអោយប្រើប្រាស់ទូទាំងពីភពលោកដោយឥតគិតថ្លៃ ដែលមានក្នុងមុខងារចំបងក្នុងការត្រួតពិនិត្យវ៉េបសាយ កម្មវិធីបច្ចេកវិទ្យា​និងហេដ្ឋារចនាសម្ព័ន្ធនៃម៉ាសុីនមេជាដើម។ វាផ្តល់ឱ្យអ្នកអភិវឌ្ឍន៍ អ្នកគ្រប់គ្រងប្រព័ន្ធ និងក្រុម DevOps នូវការពត័ស៊ីជម្រៅ និងទិន្នន័យនៃហេដ្ឋារចនាសម្ព័ន្ធ មិនថាជាម៉ាស៊ីនមេ កម្មវិធី ឬសេវាកម្មនោះទេ។ ជាមួយ CheckCle អ្នកមើលឃើញជាក្រាប វិភាគ​ និងហេតុការផ្សេងៗ​ និងធានាបាននូវការជូនដំណើរការនៅហេតុការផ្សេងៗដែលបានកើតឡើង។
## 🎯 តេស្តសាកល្បងផ្ទាល់
👉 **Try it now:** [CheckCle Live Demo](https://demo.checkcle.io)
## 🌟 មុខងារចម្បង
### ពិនិត្យប្រព័ន្ធវ៉េបសាយ និងការត្រួតពិនិត្យហេដ្ឋារចនាសម្ព័ន្ធនៃម៉ាស៊ីនមេ
- ត្រួតពិនិត្យពិធីកម្មវិធី HTTP, DNS, and Ping protocols
- ត្រួតពិនិត្យពិធីកម្មវិធី TCP-based, API services (e.g., FTP, SMTP, HTTP)
- តាមដាននិងវិភាគលម្អិត, response times, and performance issues
- តាមដាននិងវិភាគលម្អិតពីដំបន់ឬប្រទេសផ្សេងៗបាន
- ប្រវត្តិឧប្បត្តិហេតុ (UP/DOWN/WARNING/PAUSE)
- តាមដាន​ SSL & Domain (Domain, Issuer, Expiration Date, Days Left, Status, Last Notified)
- តាមដាននិងត្រួតពិនិត្យម៉ាស៊ីនមេ, Supports Linux (🐧 Debian, Ubuntu, CentOS, Red Hat, etc.) and Windows (Beta). And Servers metrics like CPU, RAM, disk usage, and network activity) with an one-line installation angent script.
- រៀបចំកាលវិភាគ និងការគ្រប់គ្រងឧប្បត្តិហេតុ
- ទំព័រស្ថានភាពប្រតិបត្តិការ
- ការជូនដំណឹងតាមរយៈ email, Telegram, Discord, and Slack
- របាយការណ៍ & វិភាគលម្អិត
- ផ្ទាំងការកំណត់ប្រព័ន្ធគ្រប់គ្រង (User Management, Data Retention, Multi-language, Themes (Dark & Light Mode), Notification and channels and alert templates).
## #️⃣ ការចាប់ផ្តើម
### ដំណើរការលើស្ថាបត្យកម្មដូចជា
* ✅ x86_64 PCs, laptops, servers (amd64)
* ✅ Modern Raspberry Pi 3/4/5 with (64-bit OS), Apple Silicon Macs (arm64)
### អ្នកអាចដំឡើង CheckCle ដោយជ្រើសរើសជម្រើសមួយក្នុងចំណោមជម្រើសខាងក្រោម។
1. CheckCle One-Click Installation - Just copy and run on terminal
```bash
curl -fsSL https://checkcle.io/install.sh | bash
```
2. Install with docker run. Just copy ready docker run command below
```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. Install with Docker compose Configuration.
```bash
version: '3.9'
services:
checkcle:
image: operacle/checkcle:latest
container_name: checkcle
restart: unless-stopped
ports:
- "8090:8090" # Web Application
volumes:
- /opt/pb_data:/mnt/pb_data # Host directory mapped to container path
ulimits:
nofile:
soft: 4096
hard: 8192
```
3. ចូលទៅកាន់ផ្ទាំងគ្រប់គ្រង
Default URL: http://0.0.0.0:8090
User: admin@example.com
Passwd: Admin123456
4. ឯកសារ​ និងរបៀបប្រើប្រាស់ផ្សេង at https://docs.checkcle.io
###
![checkcle-collapse-black](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/uptime-monitoring.png)
![Service Detail Page](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/uptime-service-detail.png)
![checkcle-server-instance](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/instance-server-monitoring.png)
![Schedule Maintenance](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/checkcle-schedule-maintenance.png)
![SSL Monitoring](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/ssl-monitoring.png)
## 📝 គម្រោងក្នុងការអភិវឌ្ឍន៍ប្រព័ន្ធគ្រប់គ្រង
- ✅ Health check & uptime monitoring (HTTP)
- ✅ Dashboard UI with live stats
- ✅ Auth with Multi-users system (admin)
- ✅ Notifications (Telegram)
- ✅ Docker containerization
- ✅ CheckCle Website
- ✅ CheckCle Demo Server
- ✅ SSL & Domain Monitoring
- ✅ Schedule Maintenance
- ✅ Incident Management
- [ ] Infrastructure Server Monitoring
- ✅ Operational Status / Public Status Pages
- ✅ Uptime monitoring (HTTP, TCP, PING, DNS) Full functionality
- ✅ Distributed Regional Monitoring Agent [Support Operation](https://github.com/operacle/Distributed-Regional-Monitoring)
- ✅ System Setting Panel and Mail Settings
- ✅ User Permission Roles
- [ ] Notifications (Email/Slack/Discord/Signal)
- ✅ Data Retention & Automate Strink (Muti Options to Shrink Data & Database )
- ✅ Open-source release with full documentation
## 🌟 ឆេកខលសម្រាប់សហគមន៍
- **Built with Passion**: Created by an open-source enthusiast for the community
- **Free & Open Source**: Completely free to use with no hidden costs
- **Collaborate & Connect**: Meet like-minded people passionate about Open Source
---
## 🤝 របៀបក្នុងការចូលរួមអភិវឌ្ឍន៍ប្រព័ន្ធកូដបើកជំហ
នេះគឺជាវិធីមួយចំនួនដែលអ្នកអាចជួយកែលម្អ CheckCle:
- 🐞 **រាយការណ៍កំហុស** - រកឃើញកំហុសថ្មី? អនុញ្ញាតឱ្យយើងដឹងដោយបើកផងដោយបង្កើត [GitHub Issue](https://github.com/operacle/checkcle/issues).
- 🌟 **ផ្តល់យោបល់** – មានគំនិតថ្មី?​ អនុញ្ញាតឱ្យយើងដឹងដោយបើកផងដោយបង្កើត [Discussion](https://github.com/operacle/checkcle/discussions) or open a Feature Request issue.
- 🛠 **បញ្ជូនសំណើអភិវឌ្ឍន៍កូដ** – កែលម្អកូដ ជួសជុលកំហុស បន្ថែមមុខងារ ឬកែលម្អឯកសារ។
- 📝 **ធ្វើអោយឯកសារប្រសើរឡើង** – សូម្បីតែការកែលម្អបន្តិចបន្តួចក៏អាចជួយបាន!
- 🌍 **ផ្សព្វផ្សាយ** – ដាក់ផ្កាយ ⭐ repo ចែករំលែកវានៅលើសង្គមហើយអញ្ជើញអ្នកផ្សេងទៀតឱ្យចូលរួមអភិវឌ្ឍន៍!
---
## 🌍 រក្សាទំនាក់ទំនង
- វ៉េបសាយ: [checkcle.io](https://checkcle.io)
- ឯកសារ: [docs.checkcle.io](https://docs.checkcle.io)
- ឃ្លាំងផ្ទុកកូដ: ⭐ [CheckCle](https://github.com/operacle/checkcle.git)
- ទំនាក់ទំនងក្រុម: Engage via discussions and issues!
- បណ្តាញសង្គម: Join our community [@discord](https://discord.gg/xs9gbubGwX)
- X: [@checkcle_oss](https://x.com/checkcle_oss)
## 📜 License
CheckCle ត្រូវបានចេញផ្សាយក្រោមអាជ្ញាប័ណ្ណ MIT ។
---
## 👥 អ្នករួមចំណែក
[![](https://contrib.rocks/image?repo=operacle/checkcle)](https://github.com/operacle/checkcle/graphs/contributors)
## ស្ថានភាពផ្តាយ
[![Star History Chart](https://api.star-history.com/svg?repos=operacle/checkcle&type=Date)](https://www.star-history.com/#operacle/checkcle&Date)
កុំភ្លេចប្រើប្រាស់ឆេកខលសម្រាប់ការងាររបស់អ្នក! 🌐
+189
View File
@@ -0,0 +1,189 @@
## 🌐 选择语言
<table align="center">
<tr>
<td align="center">
<a href="../README.md">
<img src="https://flagcdn.com/24x18/gb.png" alt="English" />
<br/><strong>English</strong>
</a>
</td>
<td align="center">
<a href="README_km.md">
<img src="https://flagcdn.com/24x18/kh.png" alt="Khmer" />
<br/><strong>ខ្មែរ</strong>
</a>
</td>
<td align="center">
<a href="README_ja.md">
<img src="https://flagcdn.com/24x18/jp.png" alt="Japanese" />
<br/><strong>Japanese</strong>
</a>
</td>
<td align="center">
<a href="README_zhcn.md">
<img src="https://flagcdn.com/24x18/cn.png" alt="Chinese" />
<br/><strong>Chinese</strong>
</a>
</td>
</tr>
</table>
<p align="center">
感谢所有的贡献者、用户和支持者,是你们让这个项目蓬勃发展。
</p>
<p align="center">
🚀 <strong>敬请关注更多更新、功能和改进。</strong>
</p>
![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 等)与 WindowsBeta);提供 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)
![Notification System](https://cdn.checkcle.io/general/powerfull_notification.png)
## 🌟 面向社区的 CheckCle
- 以热忱打造:由一位开源爱好者为社区创建
- 免费且开源:完全免费,无任何隐藏费用
- 协作与连接:结识同样热爱开源的志同道合者
---
## 赞助商
我们将不再接受赞助形式。从今以后,仅接受以生态系统和社区合作形式提供的支持,例如云服务器、域名或托管资源等基础设施支持。
如果您是科技公司且有意支持 CheckCle ,请直接通过邮箱 tolaleng@checkcle.io 联系作者。
### 🧡 支持者
<div style="display: flex; align-items: center; gap: 10px;">
<a href="https://github.com/gitbookio">
<img src="https://avatars.githubusercontent.com/u/7111340?s=200&v=4"
width="75" height="75"
style="border-radius: 50%;"
alt="GitBook Logo" />
</a>
<a href="https://www.cloudflare.com">
<img src="https://cdn.checkcle.io/images/sponsor/cloudflare-checkcle_logo.png"
height="60"
alt="Cloudflare Logo" />
</a>
<a href="https://m.do.co/c/0c27ef82475f">
<img src="https://cdn.checkcle.io/images/sponsor/digitalocean_checkcle.png"
height="50"
alt="DigitalOcean Logo" />
</a>
</div>
---
## 👥 贡献者
感谢你为让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 许可证发布。
---