Update global-template.ts

Change default layout of global page.
1 file changed
tree: 5fc57d2c28b9be5efd8ea3f9ec2e88248a5a307e
  1. public/
  2. src/
  3. .browserslistrc
  4. .gitignore
  5. .travis.yml
  6. babel.config.js
  7. Dockerfile
  8. Dockerfile-ci
  9. LICENSE
  10. nginx.conf
  11. package-lock.json
  12. package.json
  13. postcss.config.js
  14. README.md
  15. run.sh
  16. tsconfig.json
  17. tslint.json
  18. vue.config.js
README.md

Apache SkyWalking Rocketbot UI

The UI for Apache SkyWalking.

Build Status

Development

The app was built with vue + typescript.

Prepare

Fork, then clone the repo and change directory into it. Install dependencies via npm:

npm install

Build

Notice, as SkyWalking primary UI, the npm build has been integration in SkyWalking dist build.

All following builds are for dev.

Dev Build

npm install
npm run serve

Docker Build

npm install
npm run serve
docker build -t skywalking-rocketbot .

The default UI address is http://localhost:8081/. Default username/password is admin/admin. The OAP backend should be hosted at http://localhost:12800/.

Running the docker image

docker run -p 8080:80 -d -e SKYWALKING_URL=127.0.0.1:1234,127.0.0.1:1235 skywalking-rocketbot

SKYWALKING_URL is the address of your OAP backend, multiple IP is changed by comma.

The default UI address is http://localhost:8080. Default username/password is admin/admin.

Contributing to SkyWalking RocketBot

Thanks for your interest and hope it will be a pleasant experience.

How to contribute?

Most of the contributions received are code contributions, and documentation, bugs, requirements are also welcomed.

How to report a bug?

Please report bug to SkyWalking main repo.

FAQ

1、How to set TimeZone in RocketBot Docker?

e.g: setting Asia/Shanghai TimeZone in RocketBot Dockerfile as followings:

···
ENV TZ Asia/Shanghai
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime \
    && echo $TZ > /etc/timezone