Files
pulse/data/custom-thresholds.json.template
T
root fe72e9fecd security: prevent user settings from being committed to repository
- 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>
2025-06-07 16:34:35 +01:00

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"
}
}
}