https://github.com/nikos/spring-boot-dashboard-monitor
Monitor your application and microservice infrastructure with a health dashboard (inspired by dashing).
https://github.com/nikos/spring-boot-dashboard-monitor
dashboard dashing javascript maven monitoring spring-boot spring-jdbc spring-rest vuejs vuejs2
Last synced: 3 months ago
JSON representation
Monitor your application and microservice infrastructure with a health dashboard (inspired by dashing).
- Host: GitHub
- URL: https://github.com/nikos/spring-boot-dashboard-monitor
- Owner: nikos
- Created: 2017-06-05T11:38:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-06T21:43:30.000Z (almost 8 years ago)
- Last Synced: 2025-01-13T06:22:16.289Z (4 months ago)
- Topics: dashboard, dashing, javascript, maven, monitoring, spring-boot, spring-jdbc, spring-rest, vuejs, vuejs2
- Language: Vue
- Size: 93.8 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## dashboard-monitor
Display the most relevant parts of your application infrastructure on one dashboard page.
UI part is inspired on dashing.
## Back-end SetupWith the help of the Spring boot developer tools, every class change will lead the embedded
Tomcat to restart, so that an application hot-reload leads to quick developer turn around timesmvn --projects backend spring-boot:run
## Front-end Setup
For developing on the frontend side, it is very convenient to use the
webpack integrated hot-reload cycle, before packaging your app up for production:``` bash
# install dependencies
npm install# serve with hot reload at localhost:8000
npm run dev# build for production with minification
npm run build# build for production and view the bundle analyzer report
npm run build --report# run unit tests
npm run unit# run e2e tests
npm run e2e# run all tests
npm test
```For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/)
and [docs for vue-loader](http://vuejs.github.io/vue-loader).