mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-21 18:53:37 +00:00
fe72e9fecd
- Add data/alert-rules.json to .gitignore to prevent custom alerts from being tracked - Add data/custom-thresholds.json to .gitignore to prevent user threshold configs from being tracked - Remove previously committed user-specific alert rules and threshold configurations - Create template files showing expected structure without sensitive user data - Ensures user privacy and prevents accidental exposure of monitoring configurations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
656 B
Plaintext
27 lines
656 B
Plaintext
{
|
|
"_readme": "This is a template file. Custom threshold configurations will be stored in custom-thresholds.json (not tracked by git)",
|
|
"_example": {
|
|
"endpointId:vmid": {
|
|
"endpointId": "primary",
|
|
"nodeId": "auto-detect",
|
|
"vmid": "103",
|
|
"thresholds": {
|
|
"cpu": {
|
|
"warning": 80,
|
|
"critical": 90
|
|
},
|
|
"memory": {
|
|
"warning": 85,
|
|
"critical": 95
|
|
},
|
|
"disk": {
|
|
"warning": 70,
|
|
"critical": 80
|
|
}
|
|
},
|
|
"enabled": true,
|
|
"createdAt": "2025-06-01T19:50:34.784Z",
|
|
"updatedAt": "2025-06-01T19:50:34.784Z"
|
|
}
|
|
}
|
|
} |