Mission: Kill paid finops visibility tooling as a market segment by building a complete, open source alternative.
The Open FinOps Stack is a FOCUS-first data platform that ingests cloud billing data from AWS, Azure, and GCP, transforms it into standardized formats, and provides visualization through pre-built dashboards. It's designed to replace expensive FinOps vendors that charge 2-3% of your cloud spend with open source infrastructure that costs pennies on the dollar.
# Clone the repository
git clone https://github.com/JGrubb/open-finops-stack.git
cd open-finops-stack
# Install all components
pip install -e ./core/ ./vendors/aws/ ./docker/
# Run your first pipeline (AWS example)
./finops aws import-cur
# Start the visualization layer
docker-compose up -dVisit http://localhost:3000 to see your cloud costs in Metabase.
# Complete platform (all components) - Best for most users
pip install open-finops
# AWS-only installation - Lighter footprint
pip install open-finops[aws]
# Core framework only - For developers/integrators
pip install open-finops[core]# Core framework only
pip install -e ./core/
# Add AWS functionality
pip install -e ./vendors/aws/
# Add Docker configurations
pip install -e ./docker/The stack is built on modern open source tools:
- DLT (Data Load Tool) - Handles data ingestion with automatic schema evolution
- DuckDB - Local development and data processing (upgrades to ClickHouse/etc for production)
- dbt - Transforms vendor billing formats to FOCUS specification
- Metabase - Pre-built dashboards and self-service analytics
- Docker - One-command deployment of the entire stack
This project is built around the FinOps Open Cost and Usage Specification (FOCUS), which standardizes billing data across cloud providers. Instead of maintaining separate transformations for each vendor's format, we build once using FOCUS columns:
BillingPeriod- When the cost was incurredServiceName- What service generated the costResourceId- Specific resource identifierUsageQuantity- How much was consumedEffectiveCost- Actual cost after discountsBilledCost- What appears on your invoice
This project is being built in public through a blog series on The FinOperator:
- Building FinOps Data Infrastructure That Scales with FOCUS
- Data Pipeline Architecture and CLI Design with DLT (coming soon)
- AWS Billing Pipeline Implementation (coming soon)
- Azure Integration and Multi-cloud Refactoring (coming soon)
- dbt Transformations - Building the FOCUS Conversion Library (coming soon)
- Metabase Dashboards and Visualization Layer (coming soon)
- Docker Packaging and Deployment Automation (coming soon)
- Production Scaling, Cost Allocation, and Advanced Analytics (coming soon)
This is a complete reboot of the Open FinOps Stack with FOCUS-first architecture.
- ✅ Phase 1 (Foundation): Complete AWS CUR pipeline, centralized database, comprehensive testing
- ✅ Phase 2 (Visualization & Docker): Metabase integration, full Docker deployment, no Python setup required
🔄 Next: Dashboard Templates & Advanced Analytics - Pre-built dashboards, advanced features, and multi-cloud support.
We're building this in public through a blog series on The FinOperator. Each blog post corresponds to new functionality added to the codebase.
Full Docker support for one-command deployment:
# Import AWS CUR data (no Python setup needed)
./finops-docker.sh aws import-cur
# Start complete stack (pipeline + Metabase)
docker-compose up -d
# Access Metabase dashboards
open http://localhost:3000See docs/DOCKER.md for complete setup instructions.
- AWS CUR Integration: ✅ COMPLETE - Automatic ingestion of Cost and Usage Reports
- Centralized Database: ✅ COMPLETE - DuckDB for local development and analysis
- CLI Interface: ✅ COMPLETE - Simple commands for data import and management
- Comprehensive Testing: ✅ COMPLETE - 34 tests covering unit and integration scenarios
- Metabase Integration: ✅ COMPLETE - Pre-built dashboards and self-service analytics
- Docker Deployment: ✅ COMPLETE - One-command setup for the entire stack
- Dashboard Templates: 🔄 PLANNED - Pre-built FinOps dashboards (#22)
- Advanced Analytics: 🔄 PLANNED - Forecasting, anomaly detection, optimization (#23)
We welcome contributions! The goal is to build the FinOps platform that should have existed all along. Areas where we need help:
- Cloud provider billing format expertise
- FOCUS transformation patterns
- Production deployment patterns
- Dashboard and visualization improvements
- Documentation and tutorials
MIT - Because FinOps infrastructure should be free.
Current FinOps vendors charge percentage-of-spend pricing that penalizes growth. A company spending $5M/year on cloud pays $100-150k/year for basic visibility. This is predatory and it needs to stop.
We're building the alternative: open source infrastructure that treats data engineering seriously, respects your existing tools, and costs orders of magnitude less than vendor solutions.
The FinOps vendor tax ends here. Let's build something better.
Star this repo to follow along as we build the future of FinOps tooling.