A lightweight, easy-to-integrate dashboard for real-time monitoring of background processes in your application.
After evaluating existing solutions like Hangfire and Quartz for monitoring background processes, I found they lacked the simplicity and ease of integration I was looking for. Job Tracker was built to fill this gap - providing a straightforward, real-time visualization of your background jobs without unnecessary complexity.
- Real-time Monitoring: Track background jobs as they happen
- Minimal Backend Integration: Single API endpoint required
- Three-level Visualization
- Fully Configurable:
- Data polling frequency
- Update intervals
- Theme customization
- Maximum data points per chart
- Test mode with mock data generation
The dashboard leverages TradingView Lightweight Charts library - the industry-leading solution for performant, interactive time-series visualization. This powerful charting tool provides:
- High-performance rendering even with large datasets
- Professional-grade financial charting capabilities
- Smooth real-time updates
- Extensive customization options
While primarily designed for job monitoring, this dashboard can also be repurposed to track market quotes and financial data, thanks to the flexibility of the TradingView charts implementation.
The dashboard requires only a single API endpoint that returns job data array conforming to this interface:
export interface JobInfoBase {
id: string;
name: string;
startTimestamp: number;
backgroundJobType: string;
isFinished: boolean;
}NOTE: field startTimestamp is timestamp in seconds!
The application automatically maps the received data into three visualization sections:
- Main Dashboard: Summary of all jobs
- Type-Specific Views: Jobs grouped by
backgroundJobType: string;property (HTTP, TASK, etc groups) - Modular View: Granular job visualization grouped by
name: string;property (function/method names)
- ReactJS: Component-based UI
- TypeScript/Javascript: Type-safe code
- HTML+CSS: For good looking UI
- MantineUI: Modern UI component library
- TradingView Lightweight Charts: High-performance charting
- Vite/Babel: Fast development and optimized builds
- Clone the repository
- Configure your API endpoint
- Start monitoring your background jobs in real-time
A built-in mock data generator allows you to visualize and test the dashboard without connecting to your backend.
