Pulse/docs/WEBHOOKS.md
rcourtman 2b48b0a459 feat: add --kube-include-all-deployments flag for Kubernetes agent
Adds IncludeAllDeployments option to show all deployments, not just
problem ones (where replicas don't match desired). This provides parity
with the existing --kube-include-all-pods flag.

- Add IncludeAllDeployments to kubernetesagent.Config
- Add --kube-include-all-deployments flag and PULSE_KUBE_INCLUDE_ALL_DEPLOYMENTS env var
- Update collectDeployments to respect the new flag
- Add test for IncludeAllDeployments functionality
- Update UNIFIED_AGENT.md documentation

Addresses feedback from PR #855
2025-12-18 20:58:30 +00:00

43 lines
1.2 KiB
Markdown

# 🔔 Webhooks
Pulse supports Discord, Slack, Teams, Telegram, Gotify, ntfy, and generic webhooks.
## 🚀 Quick Setup
1. Go to **Alerts → Notifications**.
2. Click **Add Webhook**.
3. Select service type and paste the URL.
## 📝 Service URLs
| Service | URL Format |
|---------|------------|
| **Discord** | `https://discord.com/api/webhooks/{id}/{token}` |
| **Slack** | `https://hooks.slack.com/services/...` |
| **Teams** | `https://{tenant}.webhook.office.com/...` |
| **Telegram** | `https://api.telegram.org/bot{token}/sendMessage?chat_id={id}` |
| **Gotify** | `https://gotify.example.com/message?token={token}` |
| **ntfy** | `https://ntfy.sh/{topic}` |
## 🎨 Custom Templates
For generic webhooks, use Go templates to format the JSON payload.
**Variables:**
- `{{.Message}}`: Alert text
- `{{.Level}}`: warning/critical
- `{{.Node}}`: Node name
- `{{.Value}}`: Metric value (e.g. 95.5)
**Example Payload:**
```json
{
"text": "Alert: {{.Level}} - {{.Message}}",
"value": {{.Value}}
}
```
## 🛡️ Security
- **Private IPs**: By default, webhooks to private IPs are blocked. Allow them in **Settings → System → Network → Webhook Security**.
- **Headers**: Add custom headers (e.g., `Authorization: Bearer ...`) in the webhook config.