server-status

Check NautilusTrader process status and inspect recent service logs.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/FelixWayne0318/AItrader --skill server-status
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: server-status
Source: https://github.com/FelixWayne0318/AItrader/tree/main/.claude/skills/server-status
Command: npx skills add https://github.com/FelixWayne0318/AItrader --skill server-status

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps operators quickly verify that the trading bot is running correctly and that the hosting service is healthy, reducing downtime and MTTR.

Core Features & Use Cases

  • Live health checks: Confirm the bot process is active and responsive.
  • Log inspection: Access recent service logs to diagnose issues.
  • Status overview: Monitor system health indicators and process state for quick triage.

Quick Start

To check status, run these commands:

  • sudo systemctl status nautilus-trader
  • sudo journalctl -u nautilus-trader -n 100 --no-hostname
  • ps aux | grep main_live.py

Frequently Asked Questions about server-status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check the server status and health of a NautilusTrader deployment?

To check the server status of a NautilusTrader deployment, you can run `sudo systemctl status nautilus-trader` to verify the hosting service is active and responsive.

How do I view recent logs for a trading bot service?

You can view recent trading bot service logs by running `sudo journalctl -u nautilus-trader -n 100 --no-hostname` to inspect the latest entries and diagnose runtime issues.

What is the best way to verify my trading bot process is currently running?

The best way to verify your trading bot process is running is by executing `ps aux | grep main_live.py` to confirm the process is active and consuming system resources.

Does this health monitoring approach work for any trading bot or just NautilusTrader?

This health monitoring approach is tailored for NautilusTrader deployments, using specific systemctl and journalctl commands to check the bot process and service status.

Why is my NautilusTrader service not responding during a routine health check?

If your NautilusTrader service is not responding, inspect the recent service logs using `sudo journalctl -u nautilus-trader -n 100 --no-hostname` to identify errors causing the unresponsive state.