mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 02:55:51 +00:00
bdf7bc926f
• Merge separate "Alerts" and "Custom Thresholds" tabs into single "Alert Configuration" tab • Improve UX by organizing all alert settings in one logical location • Add comprehensive custom per-VM/LXC threshold management system with migration support • Include blue "T" badges for VMs with custom thresholds in dashboard • Implement full CRUD operations for threshold configurations via REST API • Support migration-aware threshold keys (endpointId:vmid) for cluster environments 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
183 lines
6.9 KiB
JavaScript
183 lines
6.9 KiB
JavaScript
const customThresholdManager = require('./customThresholds');
|
|
|
|
function setupThresholdRoutes(app) {
|
|
console.log('[ThresholdRoutes] Setting up threshold API routes...');
|
|
|
|
// Get all custom thresholds
|
|
app.get('/api/thresholds', async (req, res) => {
|
|
try {
|
|
console.log('[API] GET /api/thresholds called');
|
|
|
|
// Initialize the threshold manager if needed
|
|
if (!customThresholdManager.initialized) {
|
|
await customThresholdManager.init();
|
|
}
|
|
|
|
const thresholds = customThresholdManager.getAllThresholds();
|
|
console.log('[API] Retrieved', thresholds.length, 'threshold configurations');
|
|
res.json({ success: true, data: thresholds });
|
|
} catch (error) {
|
|
console.error('[API /api/thresholds] Error:', error);
|
|
res.status(500).json({
|
|
success: false,
|
|
error: error.message || 'Failed to get thresholds'
|
|
});
|
|
}
|
|
});
|
|
|
|
// Get thresholds for specific VM/LXC
|
|
app.get('/api/thresholds/:endpointId/:nodeId/:vmid', async (req, res) => {
|
|
try {
|
|
const { endpointId, nodeId, vmid } = req.params;
|
|
|
|
if (!customThresholdManager.initialized) {
|
|
await customThresholdManager.init();
|
|
}
|
|
|
|
const thresholds = customThresholdManager.getThresholds(endpointId, nodeId, vmid);
|
|
|
|
if (thresholds) {
|
|
res.json({ success: true, data: thresholds });
|
|
} else {
|
|
res.status(404).json({
|
|
success: false,
|
|
error: 'No custom thresholds found for this VM/LXC'
|
|
});
|
|
}
|
|
} catch (error) {
|
|
console.error('[API /api/thresholds/:endpointId/:nodeId/:vmid] Error:', error);
|
|
res.status(500).json({
|
|
success: false,
|
|
error: error.message || 'Failed to get thresholds'
|
|
});
|
|
}
|
|
});
|
|
|
|
// Set custom thresholds for VM/LXC
|
|
app.post('/api/thresholds/:endpointId/:nodeId/:vmid', async (req, res) => {
|
|
try {
|
|
const { endpointId, nodeId, vmid } = req.params;
|
|
const { thresholds } = req.body;
|
|
|
|
if (!thresholds) {
|
|
return res.status(400).json({
|
|
success: false,
|
|
error: 'Thresholds configuration is required'
|
|
});
|
|
}
|
|
|
|
if (!customThresholdManager.initialized) {
|
|
await customThresholdManager.init();
|
|
}
|
|
|
|
await customThresholdManager.setThresholds(endpointId, nodeId, vmid, thresholds);
|
|
res.json({ success: true, message: 'Custom thresholds saved successfully' });
|
|
} catch (error) {
|
|
console.error('[API /api/thresholds/:endpointId/:nodeId/:vmid] Error:', error);
|
|
res.status(400).json({
|
|
success: false,
|
|
error: error.message || 'Failed to save thresholds'
|
|
});
|
|
}
|
|
});
|
|
|
|
// Update existing custom thresholds
|
|
app.put('/api/thresholds/:endpointId/:nodeId/:vmid', async (req, res) => {
|
|
try {
|
|
const { endpointId, nodeId, vmid } = req.params;
|
|
const { thresholds } = req.body;
|
|
|
|
if (!thresholds) {
|
|
return res.status(400).json({
|
|
success: false,
|
|
error: 'Thresholds configuration is required'
|
|
});
|
|
}
|
|
|
|
if (!customThresholdManager.initialized) {
|
|
await customThresholdManager.init();
|
|
}
|
|
|
|
// Check if thresholds exist
|
|
const existing = customThresholdManager.getThresholds(endpointId, nodeId, vmid);
|
|
if (!existing) {
|
|
return res.status(404).json({
|
|
success: false,
|
|
error: 'No custom thresholds found for this VM/LXC'
|
|
});
|
|
}
|
|
|
|
await customThresholdManager.setThresholds(endpointId, nodeId, vmid, thresholds);
|
|
res.json({ success: true, message: 'Custom thresholds updated successfully' });
|
|
} catch (error) {
|
|
console.error('[API /api/thresholds/:endpointId/:nodeId/:vmid] Error:', error);
|
|
res.status(400).json({
|
|
success: false,
|
|
error: error.message || 'Failed to update thresholds'
|
|
});
|
|
}
|
|
});
|
|
|
|
// Delete custom thresholds for VM/LXC
|
|
app.delete('/api/thresholds/:endpointId/:nodeId/:vmid', async (req, res) => {
|
|
try {
|
|
const { endpointId, nodeId, vmid } = req.params;
|
|
|
|
if (!customThresholdManager.initialized) {
|
|
await customThresholdManager.init();
|
|
}
|
|
|
|
const removed = await customThresholdManager.removeThresholds(endpointId, nodeId, vmid);
|
|
|
|
if (removed) {
|
|
res.json({ success: true, message: 'Custom thresholds removed successfully' });
|
|
} else {
|
|
res.status(404).json({
|
|
success: false,
|
|
error: 'No custom thresholds found for this VM/LXC'
|
|
});
|
|
}
|
|
} catch (error) {
|
|
console.error('[API /api/thresholds/:endpointId/:nodeId/:vmid] Error:', error);
|
|
res.status(500).json({
|
|
success: false,
|
|
error: error.message || 'Failed to remove thresholds'
|
|
});
|
|
}
|
|
});
|
|
|
|
// Toggle custom thresholds enabled/disabled
|
|
app.patch('/api/thresholds/:endpointId/:nodeId/:vmid/toggle', async (req, res) => {
|
|
try {
|
|
const { endpointId, nodeId, vmid } = req.params;
|
|
const { enabled } = req.body;
|
|
|
|
if (typeof enabled !== 'boolean') {
|
|
return res.status(400).json({
|
|
success: false,
|
|
error: 'Enabled flag must be a boolean'
|
|
});
|
|
}
|
|
|
|
if (!customThresholdManager.initialized) {
|
|
await customThresholdManager.init();
|
|
}
|
|
|
|
await customThresholdManager.toggleThresholds(endpointId, nodeId, vmid, enabled);
|
|
res.json({
|
|
success: true,
|
|
message: `Custom thresholds ${enabled ? 'enabled' : 'disabled'} successfully`
|
|
});
|
|
} catch (error) {
|
|
console.error('[API /api/thresholds/:endpointId/:nodeId/:vmid/toggle] Error:', error);
|
|
res.status(400).json({
|
|
success: false,
|
|
error: error.message || 'Failed to toggle thresholds'
|
|
});
|
|
}
|
|
});
|
|
|
|
console.log('[ThresholdRoutes] All threshold routes registered successfully');
|
|
}
|
|
|
|
module.exports = { setupThresholdRoutes }; |