-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: metrics upgrade * feat: add baseline modal * feat: refactor cloud version * feat: update docker image, and upgrade promql * feat: update * fix: setting baseline in machine modal * feat: add docker compose * fix: issue fix * refactor: icon (#68) * fix: issue fix (#69) * chore: add community deploy chore: docker-compose * chore: docker-compose * chore: docker-compose * feat: update disk usage info (#71) * fix: datepicker open error * chore: update docker compose file * feat: relase config * mod: icon (#75) * feat: add disk monitor * feat: update metric * fix: i18n change (#77) * fix: issue (#78) * fix: issue (#79) * fix: cloud issue (#80) * fix: cloud version metrics multi line (#81) * fix: storaged and metad don't have space level metrics (#82) fix: baseline not show when value is 0 fix: version upgrade left align * fix: batch import * fix: issue (#83) * fix: get metric list by nebula_cluster (#85) * mod: config-release (#86) * mod: server proxy (#87) * feat: customize cloud metrics (#88) feat: update icon from fill to color * mod: config (#89) * fix: lastet bugfix (#90) * fix: cloud issue (#92) * fix: i18n error (#93) * fix: some issue fix (#94) * fix: update cloud metric (#96) * fix: metric wrong issue (#97) * feat: add rpm/ deb sqlite (#98) * chore: update version (#100) * fix: use http gateway 2.2.2 (#101) * fix: use http gateway 3.1.4 (#102) * chore: update pack script * fix: space level metric (#104) Co-authored-by: li Nico <37568394+NicolaCage@users.noreply.github.com>
- Loading branch information
1 parent
d5bc7ba
commit eecf689
Showing
117 changed files
with
4,359 additions
and
2,987 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
version: '3.7' | ||
services: | ||
nebula-stats-exporter: | ||
image: centos:7 | ||
command: | ||
- ./nebula-stats-exporter | ||
- --bare-metal | ||
- --bare-metal-config=/config.yaml | ||
- --listen-address=:9200 | ||
ports: | ||
- 9200:9200 | ||
volumes: | ||
- ./vendors/nebula-stats-exporter/nebula-stats-exporter:/nebula-stats-exporter | ||
- ./vendors/nebula-stats-exporter/config.yaml:/config.yaml | ||
networks: | ||
- nebula-net | ||
|
||
prometheus: | ||
image: centos:7 | ||
volumes: | ||
- ./vendors/prometheus/prometheus:/prometheus | ||
- ./vendors/prometheus/prometheus.yaml:/etc/prometheus/prometheus.yml | ||
- ./data/prometheus:/data/prometheus:rw | ||
environment: | ||
USER: root | ||
command: | ||
- ./prometheus | ||
- '--config.file=/etc/prometheus/prometheus.yml' | ||
ports: | ||
- 9090:9090 | ||
networks: | ||
- nebula-net | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
|
||
nebula-http-gateway: | ||
image: centos:7 | ||
environment: | ||
USER: root | ||
volumes: | ||
- ./vendors/nebula-http-gateway/nebula-httpd:/nebula-httpd | ||
- ./vendors/nebula-http-gateway/conf:/conf | ||
- ./vendors/nebula-http-gateway/logs:/logs | ||
- ./uploads:/upload-dir:rw | ||
ports: | ||
- 8090:8090 | ||
command: | ||
- ./nebula-httpd | ||
networks: | ||
- nebula-net | ||
nebula-dashboard: | ||
image: centos:7 | ||
ports: | ||
- 7003:7003 | ||
volumes: | ||
- ./config.json:/config.json | ||
- ./dashboard:/dashboard | ||
- ./public:/public | ||
command: | ||
- ./dashboard | ||
environment: | ||
USER: root | ||
networks: | ||
- nebula-net | ||
|
||
networks: | ||
nebula-net: | ||
external: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.