Metadata-Version: 2.4
Name: smart-rds-viewer
Version: 0.0.35
Summary: Your terminal companion for monitoring Amazon RDS instances with real-time data, pricing, and interactive insights!
Author-email: Smart RDS Viewer <hello@kratik.dev>
Maintainer-email: Smart RDS Viewer <hello@kratik.dev>
License: MIT
Project-URL: Homepage, https://github.com/k4kratik/smart-rds-viewer
Project-URL: Repository, https://github.com/k4kratik/smart-rds-viewer
Project-URL: Documentation, https://github.com/k4kratik/smart-rds-viewer#readme
Project-URL: Bug Reports, https://github.com/k4kratik/smart-rds-viewer/issues
Keywords: aws,rds,monitoring,cloudwatch,pricing,terminal,cli
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Environment :: Console :: Curses
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: boto3
Requires-Dist: rich
Requires-Dist: typer
Requires-Dist: readchar

# 🚀 Smart RDS Viewer

> **Your terminal companion for monitoring Amazon RDS instances with real-time data, pricing, and interactive insights!**

A powerful, full-screen terminal CLI that fetches and displays all your Amazon RDS instances with live metrics, pricing, and interactive sorting - all from the comfort of your terminal.

![Smart RDS Viewer Demo](docs/image.png)

![Smart RDS Viewer Demo - Help Menu](docs/image-help.png)

## ✨ Features

### 🔍 **Real-time Data Fetching**

- **RDS Metadata**: Fetches all RDS instances using `boto3`
- **CloudWatch Metrics**: Live storage usage from CloudWatch APIs
- **Live Pricing**: On-demand hourly and monthly pricing from AWS Pricing API
- **Smart Caching**: 24-hour pricing cache in `/tmp` for faster subsequent runs

### 📊 **Rich Interactive Table**

- **Full-screen Terminal**: Professional full-screen interface like `eks-node-viewer`
- **Comprehensive Columns**: 12+ metrics including all pricing components
- **Smart Highlighting**: Targeted red highlighting for storage issues (≥80% usage)
- **Multi-AZ Support**: 👥 indicators with accurate 2x pricing for Multi-AZ instances
- **Aurora Compatible**: Special handling for Aurora instances and pricing
- **Real-time Updates**: Live data refresh with loading spinners

### 🎮 **Interactive Controls**

- **Dynamic Shortcuts**: Auto-assigned lowercase keys matching table column order
  - `n` = Name, `c` = Class, `s` = Storage, `u` = % Used
  - `f` = Free, `i` = IOPS, `e` = Throughput, `t`/`o`/`p`/`h`/`a` = Pricing columns
- **Smart Sorting**: Toggle ascending/descending with same key
- **Pricing Toggle**: Press `m` to switch between hourly and monthly cost views
- **Help System**: Press `?` for interactive help overlay
- **Clean Exit**: `q` or `Ctrl+C` to exit with terminal cleanup

### 📈 **Comprehensive Metrics**

- **Instance Details**: Name, class, Multi-AZ indicators (👥)
- **Storage Analytics**: Used percentage, free space in GiB
- **Performance**: IOPS, EBS throughput (with GP2/GP3 awareness)
- **Complete Cost Breakdown**: Instance, Storage, IOPS, and EBS Throughput pricing
- **Flexible Cost Views**: Toggle between hourly and monthly pricing with daily/monthly estimates

## 🛠️ Installation

### Prerequisites

- Python 3.8+
- AWS credentials configured (environment variables or IAM profile)
- Required AWS permissions for RDS, CloudWatch, and Pricing APIs

### Quick Start

#### Option 1: Install via pip (Recommended)

```bash
# Install the package
pip install smart-rds-viewer

# Run the viewer
smart-rds-viewer
```

#### Option 2: Development/Local Installation

```bash
# Clone and setup
git clone <your-repo>
cd smart-rds-viewer

# Create virtual environment
python3 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install in development mode
pip install -e .

# Run the viewer
smart-rds-viewer
```

#### Option 3: Run as Python Script

```bash
# Clone and setup
git clone <your-repo>
cd smart-rds-viewer

# Create virtual environment
python3 -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install dependencies
pip install -r requirements.txt

# Run the viewer
python rds_viewer.py
```

## 🎯 Usage

### Basic Usage

```bash
# Standard run
smart-rds-viewer

# Alternative command (shorter)
rds-viewer

# Check version
smart-rds-viewer --version

# Force fresh pricing data (bypass cache)
smart-rds-viewer --nocache

# Legacy method (if running from source)
python rds_viewer.py --nocache
```

### Interactive Controls

- **Sorting**: Press any column shortcut to sort
- **Pricing View**: Press `m` to toggle between hourly and monthly costs
- **Help**: Press `?` to toggle help overlay
- **Quit**: Press `q` or `Ctrl+C` to exit

### Column Shortcuts (Auto-assigned, match table order)

| Key | Column                        | Description                            |
| --- | ----------------------------- | -------------------------------------- |
| `n` | Name                          | Instance identifier (👥 = Multi-AZ)   |
| `c` | Class                         | Instance type (db.r5.large, etc.)     |
| `s` | Storage (GB)                  | Allocated storage                      |
| `u` | % Used                        | Storage utilization percentage         |
| `f` | Free (GiB)                    | Available storage space                |
| `i` | IOPS                          | Provisioned IOPS                       |
| `e` | EBS Throughput                | Storage throughput (MB/s)              |
| `t` | Instance ($/hr or $/mo)       | Instance pricing (toggles with `m`)    |
| `o` | Storage ($/hr or $/mo)        | Storage pricing (toggles with `m`)     |
| `p` | IOPS ($/hr or $/mo)           | IOPS pricing (toggles with `m`)        |
| `h` | EBS Throughput ($/hr or $/mo) | Throughput pricing (toggles with `m`)  |
| `a` | Total ($/hr or $/mo)          | Total cost (toggles with `m`)          |

## 🔧 Technical Details

### Architecture

- **Modular Design**: Separate modules for fetching, metrics, pricing, and UI
- **Error Handling**: Graceful fallbacks for API failures
- **Caching**: Smart pricing cache with 24-hour expiration
- **Full-screen UI**: Rich-based terminal interface

### AWS APIs Used

- **RDS**: `describe_db_instances` for metadata
- **CloudWatch**: `get_metric_statistics` for storage metrics
- **Pricing**: `get_products` for live pricing data

### Cache System

- **Location**: `/tmp/rds_pricing_cache.json`
- **Duration**: 24 hours
- **Auto-refresh**: Expired cache triggers fresh API calls
- **Manual override**: Use `--nocache` flag to force fresh data
- **Error Recovery**: Corrupted cache falls back to API

## 🤖 Built with AI Assistance

This tool was collaboratively developed with the help of **Claude Sonnet 4**, an AI coding assistant. The development process involved:

- **Architecture Design**: Modular structure with separate modules for different concerns
- **Feature Implementation**: Real-time data fetching, caching, interactive UI
- **Problem Solving**: Debugging pricing API issues, fixing cache serialization
- **User Experience**: Full-screen terminal interface, dynamic shortcuts, help system
- **Documentation**: Comprehensive README with all features and future roadmap

The AI assistant helped transform a simple concept into a comprehensive, production-ready RDS monitoring tool with advanced features like smart caching, interactive sorting, and professional terminal UI.

## 📁 Project Structure

```
smart-rds-viewer/
├── __main__.py               # Entry point
├── rds_viewer.py             # Main application logic
├── ui.py                     # Rich terminal UI components
├── fetch.py                  # RDS data fetching (optimized)
├── metrics.py                # CloudWatch metrics (batch API)
├── pricing.py                # AWS Pricing API (parallelized)
├── requirements.txt          # Python dependencies
├── pyproject.toml            # Package configuration
├── Makefile                  # Build automation
├── README.md                 # Project documentation
├── docs/                     # Documentation & Images
│   ├── BENCHMARKING.md       # Performance benchmarks
│   ├── HOMEBREW.md           # Homebrew installation guide
│   ├── IMPROVEMENTS-1.md     # Development history
│   ├── PRE-COMMIT-HOOK.md    # Git pre-commit hook setup
│   ├── image.png             # Main demo screenshot
│   └── image-help.png        # Help menu screenshot
├── deployment/               # Deployment configs
│   └── Formula/              # Homebrew formula
│       └── smart-rds-viewer.rb
├── benchmarks/               # Performance Testing
│   └── simple_benchmark.py   # Performance benchmarks
└── scripts/                  # Utility Scripts
    ├── debug_pricing.py      # Pricing debugging
    ├── inspect_pricing.py    # Pricing analysis
    └── update-formula.rb     # Homebrew formula updates
```

### Performance Optimizations

The codebase includes significant performance optimizations:

- **Parallel API calls**: Pricing and metrics APIs run concurrently
- **Connection pooling**: Reused HTTP connections across AWS services
- **Batch CloudWatch requests**: Up to 100 metrics per API call
- **Smart caching**: 24-hour pricing cache with intelligent invalidation
- **Data filtering**: Reduces API response sizes by 80%+

**Performance Results**: 72% faster than original (6.7s fresh, 1.6s cached)

## 📦 Publishing to PyPI

For maintainers: To publish this package to PyPI so users can install with `pip install smart-rds-viewer`, see the detailed guide in [PUBLISHING.md](PUBLISHING.md).

**Quick publishing workflow:**
```bash
# 1. Build package
rm -rf dist/ && pip wheel . --no-deps -w dist/

# 2. Test on TestPyPI
twine upload --repository testpypi dist/smart_rds_viewer-*.whl

# 3. Upload to PyPI
twine upload dist/smart_rds_viewer-*.whl
```

## 🤝 Contributing

We welcome contributions! Please feel free to submit issues, feature requests, or pull requests.

## 📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

## 🙏 Acknowledgments

- Built with [Rich](https://github.com/Textualize/rich) for beautiful terminal UI
- Powered by [boto3](https://github.com/boto/boto3) for AWS integration
- Inspired by modern CLI tools like `eks-node-viewer`
- **AI Development Partner**: Claude Sonnet 4 for collaborative coding and problem-solving

---

**Happy RDS monitoring! 🎉**

_Your terminal is now your RDS command center!_
