HackFrost Hackathon Project
Author: Ronak Paul
APIFlux is a comprehensive platform designed to simplify and enhance API management by providing real-time scheduling, monitoring, and statistical insights. Built with modern web technologies and workflow orchestration tools, APIFlux empowers developers to ensure their APIs perform optimally and meet compliance standards.
- API Scheduling: Automate API calls at defined intervals.
- API Monitoring: Track API health,response times, hit, total requests with real-time insights.
- Statistics Dashboard: Visualize API performance metrics using an interactive UI.
- Kestra Integration: Seamlessly handle event-driven workflows and automation.
- Alerts and Notifications: Get instant notifications for API downtime or anomalies.
- Frontend: ReactJS, TailwindCSS, mui-icons, Vercel (for deploying)
- Backend: ExpressJS, AWS
- Database: MongoDB
- Workflow Automation: Kestra
Below is the overall system design for APIFlux, showcasing the integration of Kestra for workflow automation:
Kestra is utilized to handle workflow automation for:
- Streamlining Scheduling: Automating periodic API checks.
- Improving Efficiency: Reducing manual effort and ensuring reliable monitoring.
- Reduing Overload: Kestra helps to reduce overhead by taking care of the all the pipelining by just a simple yaml file.
The kestra flow in yaml you can find at api_monitoring_kestra.yaml file
The platform's dashboard provides:
- API health for each of the scheduled APIs
- Response time hits and misses
- Scheduling more API for health checks
- Visualization through bargraph
To configure APIFlux, the following environment variables are required:
Variable Name | Description | Example Value |
---|---|---|
MONGO_URI |
MongoDB connection string | mongodb://localhost:27017/api-db |
ACCESS_TOKEN_SECRET |
Secret for access token | abcd |
ACCESS_TOKEN_EXPIRY |
Expiry for access token | 2d |
REFRESH_TOKEN_SECRET |
Secret for refresh token | abcdefg |
REFRESH_TOKEN_EXPIRY |
Expiry for refresh token | 7d |
Variable Name | Description | Example Value |
---|---|---|
VITE_BACKEND_URL |
Backend API endpoint | http://localhost:3000 |
- Create a
.env
file in the respective directories (backend and frontend). - Add the environment variables based on the examples provided above.
To set up APIFlux locally, follow these steps:
- Node.js (v14 or above)
- MongoDB
- Kestra installed locally
- Clone the repository:
git clone https://github.com/ronak-paul/api-flux.git cd api-flux
- Install dependencies:
# Backend cd backend npm install # Frontend cd ../frontend npm install
- Start the backend server:
cd backend npx tsc node dist/index.js
- Start the frontend server:
cd frontend npm run dev
Now APIFlux is setted up in your local system
- Modular Code: Components and workflows are reusable.
- Extensibility: Add new monitoring tasks without breaking existing functionality.
- Transparency: Project is open-sourced under MIT License.
- Resource Optimization: Scheduled tasks minimize resource consumption.
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a feature branch:
git checkout -b feature-name
. - Commit your changes and push them to the branch.
- Submit a Pull Request.