fix metrics search error,clear timer (#479)

1 file changed
tree: 8c53b88b4eb40fbfc00bc521d881cad0ec5295cd
  1. .mvn/
  2. codestyle/
  3. doc/
  4. docker/
  5. dubbo-admin-distribution/
  6. dubbo-admin-server/
  7. dubbo-admin-ui/
  8. .gitignore
  9. .travis.yml
  10. DISCLAIMER
  11. LICENSE
  12. mvnw
  13. mvnw.cmd
  14. NOTICE
  15. pom.xml
  16. README.md
  17. README_ZH.md
README.md

Dubbo Admin

Build Status codecov license

中文说明

Demo Address

Screenshot

index

Service Governance

service governance follows the version of Dubbo 2.7, and compatible for Dubbo 2.6, please refer to here

admin UI

  • Vue.js and Vuetify
  • dubbo-admin-ui/README.md for more detail
  • Set npm proxy mirror: you can set npm proxy mirror to speedup npm install: add registry =https://registry.npm.taobao.org to ~/.npmrc

admin Server

Production Setup

  1. Clone source code on develop branch git clone https://github.com/apache/dubbo-admin.git

  2. Specify registry address in dubbo-admin-server/src/main/resources/application.properties

  3. Build

    • mvn clean package
  4. Start

    • mvn --projects dubbo-admin-server spring-boot:run
      OR
    • cd dubbo-admin-distribution/target; java -jar dubbo-admin-0.1.jar
  5. Visit http://localhost:8080


Development Setup

  • Run admin server project backend is a standard spring boot project, you can run it in any java IDE
  • Run admin ui project run with npm run dev.
  • visit web page visit http://localhost:8081, frontend supports hot reload.
  • CORS problem for the convenience of development, we deploy ui and server separately, so the frontend supports hot reload. In this mode, frontend will request localhost:8080 to fetch data, this will cause a CORS problem, so we add a configuration in dubbo-admin-ui/config/index.js to support CORS. This config will be activated under npm run dev mode.

Swagger support

Once deployed, you can check http://localhost:8080/swagger-ui.html to check all restful api and models

License

Apache Dubbo admin is under the Apache 2.0 license, Version 2.0. See LICENSE for full license text.