Dashboard to track scheduled tasks in a spring boot application.
This is a dashboard based on the data retrieved via https://github.com/kevcodez/spring-boot-track-scheduled-tasks
The dashboard allows the configuration of multiple services.
- Switch between environments
- List of all services configured
- Select a specific service to view jobs from the service
- Info about latest run
- Status from latest run (not run, failed, success)
- Last 10 runs with timings
- Stats ** Average runtime ** Run count ** Exceptions occured
- CRON settings
If the job did not run yet, it looks like this:
- View error details
- View timing
The getEnvironmentSettings.js includes the environments and URLs to the services providing scheduled task tracking data.
You can configure multiple services.
export function getEnvironmentSettings() {
return {
"Test": {
"baseUrl": "https://my-api.test.de/",
"services": [
{
"host": "Billing-Service",
"url": "billing-service/scheduled-jobs"
},
{
"host": "Contract-Service",
"url": "contract-service/scheduled-jobs"
}
]
},
"Production": {
"baseUrl": "https://my-api.live.de/",
"services": [
{
"host": "Billing-Service",
"url": "billing-service/scheduled-jobs"
},
{
"host": "Contract-Service",
"url": "contract-service/scheduled-jobs"
}
]
}
}
}
- Switch between different environments
- Support for multiple services
- Get an overview of all jobs
- Get all jobs from a specific service
- View successful, failed and jobs that did not run yet
- View a run history of a any job
- Trigger a job
- View a specific run
- View errors from jobs, of occured
Simple run yarn serve
for starting a webserver with hot reload and everything you need. You should change the URLs in getEnvironmentSettings.js.
For fetching data from the services, Vue-Resource is used. Vue-Resource also lets you add authentication very easily.
First configure your services in the getEnvironmentSettings.js file.
Build the docker image, nginx is used as server.
docker image build -t dashboard:latest .
docker run -d -p 80:80 dashboard:latest