Skip to content

Commit 9dd50a5

Browse files
mlugo-apxclaude
andcommitted
Add health monitoring integration to setup wizard
Changes: - Add Step 6 to setup wizard: Automated health monitoring via cron - Provide copy-paste ready crontab entry (every 15 minutes) - Logs health checks to ~/.gcode_health.log This makes users aware of the check_gcode_monitor.sh script and provides an easy way to set up automated monitoring during initial setup. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent deb2634 commit 9dd50a5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup_wizard.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,10 @@ echo
257257
echo "5. Install as systemd service (optional):"
258258
echo " ${YELLOW}./install_service.sh${NC}"
259259
echo
260+
echo "6. Set up automated health monitoring (optional):"
261+
echo " ${YELLOW}crontab -e${NC}"
262+
echo " ${YELLOW}*/15 * * * * $(pwd)/check_gcode_monitor.sh >> \$HOME/.gcode_health.log 2>&1${NC}"
263+
echo
260264
echo -e "${GREEN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
261265
echo -e "${GREEN}✓ Setup complete! Happy printing! 🖨️${NC}"
262266
echo -e "${GREEN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"

0 commit comments

Comments
 (0)