{"id":16179101,"url":"https://github.com/fonimus/actuator-site-spring-boot","last_synced_at":"2025-03-19T01:30:55.178Z","repository":{"id":118255664,"uuid":"153996290","full_name":"fonimus/actuator-site-spring-boot","owner":"fonimus","description":"Actuator Site for Spring Boot","archived":false,"fork":false,"pushed_at":"2018-12-12T21:21:50.000Z","size":8287,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T13:46:31.859Z","etag":null,"topics":["react","spring-boot-2","spring-boot-actuator","springboot2","vuejs2"],"latest_commit_sha":null,"homepage":"https://fonimus.github.io/actuator-site-spring-boot/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fonimus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-21T10:28:17.000Z","updated_at":"2024-02-01T10:17:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"e9ec83c3-e350-4d0d-8d25-e028388fd7cd","html_url":"https://github.com/fonimus/actuator-site-spring-boot","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonimus%2Factuator-site-spring-boot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonimus%2Factuator-site-spring-boot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonimus%2Factuator-site-spring-boot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonimus%2Factuator-site-spring-boot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fonimus","download_url":"https://codeload.github.com/fonimus/actuator-site-spring-boot/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243958072,"owners_count":20374789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react","spring-boot-2","spring-boot-actuator","springboot2","vuejs2"],"created_at":"2024-10-10T05:25:25.851Z","updated_at":"2025-03-19T01:30:54.164Z","avatar_url":"https://github.com/fonimus.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Actuator Site for Spring Boot\n\n[![Build Status](https://travis-ci.org/fonimus/actuator-site-spring-boot.svg?branch=master)](https://travis-ci.org/fonimus/actuator-site-spring-boot)\n[![Maven Central](https://img.shields.io/maven-central/v/com.github.fonimus/actuator-site-spring-boot-vue.svg?label=%22maven%20vue%20starter%22)](https://search.maven.org/search?q=g:%22com.github.fonimus%22%20AND%20a:%22actuator-site-spring-boot-vue%22)\n[![Maven Central](https://img.shields.io/maven-central/v/com.github.fonimus/actuator-site-spring-boot-react.svg?label=%22maven%20react%20starter%22)](https://search.maven.org/search?q=g:%22com.github.fonimus%22%20AND%20a:%22actuator-site-spring-boot-react%22)\n\nThis project contains both the web site and the spring boot auto configuration. Check the \n[vue](https://fonimus.github.io/actuator-site-spring-boot/docs/vue/#/)\nand [react](https://fonimus.github.io/actuator-site-spring-boot/docs/react/#/) demos.\n\n## Getting started\n\n### Dependency\n\n```xml\n\u003c!-- choose between front type: vue or react --\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.fonimus\u003c/groupId\u003e\n    \u003cartifactId\u003eactuator-site-spring-boot-vue\u003c/artifactId\u003e\n\u003c/dependency\u003e\n\u003c!-- or --\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.fonimus\u003c/groupId\u003e\n    \u003cartifactId\u003eactuator-site-spring-boot-react\u003c/artifactId\u003e\n\u003c/dependency\u003e\n```\n\n**Note:**: auto configuration `ActuatorSiteAutoConfiguration` can be deactivated by property **actuator.site.enabled=false**\n\n## Configuration\n\nPlease check [ActuatorSiteAutoConfiguration.kt](starter/src/main/kotlin/com/github/fonimus/actuator/site/ActuatorSiteAutoConfiguration.kt) for more information.\n\n```yaml\nactuator:\n  site:\n    # set it to false to disable auto configuration\n    enabled: true\n    # path will be ${context-path}/${actuator-base-path}/site\n    site-path: /site\n    # if the actuator web site should be loaded form another directory, or if you want to use custom web site\n    resource-path: classpath:/webjars/actuator-site/\n```\n\n## Sample\n\nSample with provided configuration [application.yml](./sample/src/main/resources/application.yml). \n\n1. Build sample application (use `react` profile to build sample with react dependency)\n\n    ```bash\n    mvn clean install [-DskipTests] [-P react]\n    ```\n1. Start application\n\n    ```bash\n    java -jar sample/target/actuator-site-spring-boot-sample-[version].jar\n    ```  \n    \n1. Go to http://localhost:8080/actuator/site/ , with `user:password` authentication\n\n## Release note\n\n### 0.4.0\n\n* Small updates for vue front site\n* Implement react with [material ui](https://material-ui.com/)\n\n### 0.3.0\n\n* Use [vuetifyjs](https://vuetifyjs.com/en/) for vue front site\n\n### 0.2.0\n\n* Fix project without actuator dependency failure\n* Fix health without details error\n* Display home message if not endpoint available\n* Add links to actuator endpoint\n\n### 0.1.0\n\n* First release\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffonimus%2Factuator-site-spring-boot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffonimus%2Factuator-site-spring-boot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffonimus%2Factuator-site-spring-boot/lists"}