Clawdbot update: discord_monitor/README.md
Browse files
discord_monitor/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# π¦ Discord Monitor + Telegram Control Center\n\nA production-ready Discord server monitoring system with Telegram as the mobile control center.\n\n## Architecture\n\n- **Discord Bot**: Silent data collector (no commands, just listens)\n- **Telegram Bot**: Full control panel and dashboard\n- **MongoDB**: Stores all messages, voice activity, member data\n- **Logs Channel**: All events forwarded to Telegram channel\n\n## Features\n\n### Discord Monitoring (Silent)\n- β
All messages (content, attachments, embeds)\n- β
Message edit history tracking\n- β
Deleted message recovery\n- β
Voice channel activity (join/leave/mute/stream)\n- β
Member join/leave/ban tracking\n- β
Role and nickname changes\n\n### Telegram Control\n- π Real-time statistics\n- π Full-text message search\n- ποΈ Deleted message viewer\n- βοΈ Edit history viewer\n- ποΈ Voice activity reports\n- π€ Per-user activity reports\n- π¦ Data export (JSON/CSV)\n- π¨ Configurable alerts\n\n## Quick Start\n\n### 1. Install Dependencies\n```bash\ncd discord_monitor\npip install -r requirements.txt\n```\n\n### 2. Setup MongoDB\n```bash\n# Local MongoDB\nmongod --dbpath /path/to/data\n\n# Or use MongoDB Atlas (cloud)\n```\n\n### 3. Configure Credentials\nEdit `config.py`:\n```python\nDISCORD_TOKEN = \
|