Skip to main content

Collect and expose lightweight system snapshots (CLI).

Project description

30secs

30secs is an ultra-lightweight system monitoring tool that takes system snapshots every 30 seconds (default), or returns snapshots on-demand via CLI.

Features

  • Real-time monitoring: CPU, memory, disk, network, and process metrics
  • Multiple output formats: JSON, human-readable table, Prometheus metrics
  • Alert system: Configurable threshold-based alerts
  • Graceful shutdown: Handles SIGINT/SIGTERM signals
  • Production-ready: Structured logging, error handling, modular architecture

⚠️ Python module names cannot start with a number, so while the project is named 30secs, the import package is thirtysecs.


Installation

Binary (No Python Required) - Recommended for K8s Nodes

Download the pre-built binary for your platform:

# Linux AMD64 (most K8s nodes)
curl -L https://github.com/<your-repo>/30secs/releases/latest/download/30secs-linux-amd64 -o 30secs

# Linux ARM64 (Graviton, etc.)
curl -L https://github.com/<your-repo>/30secs/releases/latest/download/30secs-linux-arm64 -o 30secs

# macOS Apple Silicon
curl -L https://github.com/<your-repo>/30secs/releases/latest/download/30secs-darwin-arm64 -o 30secs

# macOS Intel
curl -L https://github.com/<your-repo>/30secs/releases/latest/download/30secs-darwin-amd64 -o 30secs

# Make executable and run
chmod +x 30secs
./30secs watch -f table --alerts

One-liner for K8s Node Debugging

curl -sL https://github.com/<your-repo>/30secs/releases/latest/download/30secs-linux-amd64 -o /tmp/30secs \
  && chmod +x /tmp/30secs \
  && /tmp/30secs watch -f table --alerts -i 10

pip (PyPI) - Recommended for environments without GitHub access

# Install from PyPI (Python 3.12+ required)
pip install 30secs

# Or use pipx for isolated install
pipx install 30secs

# Or use uv
uv tool install 30secs

# Then run
30secs watch -f table --alerts -i 10

One-liner for K8s Node (pip)

pip install 30secs && 30secs watch -f table --alerts -i 10

From Source (uv)

Install uv (official docs)

curl -LsSf https://astral.sh/uv/install.sh | sh

Install/sync dependencies

uv sync

Usage

Single snapshot (JSON output)

uv run 30secs snapshot

Human-readable table output

uv run 30secs snapshot --format table

Prometheus metrics format

uv run 30secs snapshot --format prometheus

Continuous monitoring (every 30 seconds)

uv run 30secs watch

Custom interval (every 10 seconds)

uv run 30secs watch --interval 10

Watch with table format (auto-refresh)

uv run 30secs watch --format table --interval 5

Quick snapshot (without processes - faster)

uv run 30secs quick

Enable alerts

uv run 30secs watch --alerts

Save output to file

uv run 30secs watch --output metrics.jsonl

Limit number of snapshots

uv run 30secs watch --count 10 --interval 5

Exclude specific metrics

uv run 30secs snapshot --no-processes --no-network

Memory leak report for a process (table)

uv run 30secs leak <PID> --interval 2 --count 30

Memory leak report as JSON

uv run 30secs leak <PID> --format json --interval 1 --count 60

Rank top leak candidates

uv run 30secs leak top --interval 1 --count 20 --limit 5

Output Formats

JSON (default)

Complete system metrics in JSON format, suitable for log aggregation and processing.

Table

Human-readable format with emojis and organized sections:

  • System info (hostname, OS, uptime)
  • CPU (usage, cores, load average)
  • Memory (used/total, available, swap)
  • Disk (partitions, usage)
  • Network (sent/received, connections)
  • Processes (top by CPU/memory)

Prometheus

Metrics in Prometheus exposition format, ready for scraping.


Alerts

Built-in alert thresholds:

  • CPU: > 90%
  • Memory: > 90%, > 95% (critical)
  • Swap: > 80%

When alerts are enabled (--alerts), the tool will:

  • Log warnings when thresholds are exceeded
  • Exit with code 1 if any alert is triggered (for snapshot command)

Development

Run tests

uv run pytest

Linting & Formatting

uv run ruff check .
uv run ruff format .

Type checking

uv run mypy src

Project Structure

src/thirtysecs/
├── __init__.py          # Package init
├── __main__.py          # Entry point
├── cli.py               # CLI interface
├── config.py            # Configuration
├── core.py              # Core snapshot logic
├── alerts.py            # Alert system
├── errors.py            # Error definitions
├── logging.py           # Structured logging
├── collectors/          # Metric collectors
│   ├── base.py          # Base collector interface
│   ├── cpu.py           # CPU metrics
│   ├── memory.py        # Memory metrics
│   ├── disk.py          # Disk metrics
│   ├── network.py       # Network metrics
│   ├── process.py       # Process metrics
│   └── system.py        # System info
└── formatters/          # Output formatters
    ├── base.py          # Base formatter interface
    ├── json_fmt.py      # JSON output
    ├── table.py         # Table output
    └── prometheus.py    # Prometheus metrics

Environment Variables

Variable Default Description
SERVICE_NAME 30secs Service name for health checks
DEFAULT_INTERVAL_SECONDS 30 Default watch interval
INCLUDE_HOSTNAME 1 Include hostname in output
LOG_LEVEL INFO Logging level
ALERT_CPU_THRESHOLD 90.0 CPU usage alert threshold (%)
ALERT_MEMORY_THRESHOLD 90.0 Memory usage alert threshold (%)
ALERT_MEMORY_CRITICAL_THRESHOLD 95.0 Critical memory alert threshold (%)
ALERT_SWAP_THRESHOLD 80.0 Swap usage alert threshold (%)
MEMORY_LEAK_WINDOW_SIZE 10 Number of samples for leak detection
MEMORY_LEAK_GROWTH_THRESHOLD 5.0 Memory growth % to trigger leak alert

Memory Leak Detection

30secs includes automatic memory leak detection when using --alerts:

# Monitor with leak detection (default: 10 samples, 5% growth threshold)
30secs watch -f table --alerts -i 10

# Custom thresholds via environment variables
MEMORY_LEAK_WINDOW_SIZE=20 MEMORY_LEAK_GROWTH_THRESHOLD=3.0 30secs watch --alerts -i 5

The detector tracks memory usage over a sliding window and alerts when:

  • Memory growth exceeds the threshold (default: 5%)
  • At least 60% of samples show an increasing trend

uv Cheat Sheet

Command Description
uv add <pkg> Add a dependency
uv add --group dev <pkg> Add a dev dependency
uv lock Lock dependencies
uv sync Sync dependencies
uv run --frozen ... Run with locked dependencies

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

30secs-0.2.9.tar.gz (22.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

30secs-0.2.9-py3-none-any.whl (32.4 kB view details)

Uploaded Python 3

File details

Details for the file 30secs-0.2.9.tar.gz.

File metadata

  • Download URL: 30secs-0.2.9.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for 30secs-0.2.9.tar.gz
Algorithm Hash digest
SHA256 84a7250605462644b168623e482b9fbaf72f4e8ba9df940bd4569b580f9311f8
MD5 cf7321d056208e0c8823e03eb6932e29
BLAKE2b-256 d25b28fbeda620aff25896d31f876dee50cdf556c628bd8d52570f4ff59342ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for 30secs-0.2.9.tar.gz:

Publisher: publish-pypi.yml on jundorok/30secs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file 30secs-0.2.9-py3-none-any.whl.

File metadata

  • Download URL: 30secs-0.2.9-py3-none-any.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for 30secs-0.2.9-py3-none-any.whl
Algorithm Hash digest
SHA256 e16875a35494123af08abe34d50e305a896cd372faf40fecf9e7c6b727fad362
MD5 82d64f03aef1fa32ef4563e671e1d43b
BLAKE2b-256 06cf2caa3764842f03e0099857f8c1e298fe35c045de4509c79ca382e106f48e

See more details on using hashes here.

Provenance

The following attestation bundles were made for 30secs-0.2.9-py3-none-any.whl:

Publisher: publish-pypi.yml on jundorok/30secs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page