VictoriaMetrics/app/vmui
Yury Molodov 23c3b5f8c7
vmui: change selection from autocomplete (#2862)
* fix: change selection from autocomplete

* update docs/CHANELOG.md

Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
2022-07-13 23:56:04 +03:00
..
packages/vmui vmui: change selection from autocomplete (#2862) 2022-07-13 23:56:04 +03:00
.gitignore app/vmui: move source code from https://github.com/VictoriaMetrics/vmui to app/vmui 2021-07-09 17:13:51 +03:00
Dockerfile-build app/vmui: execute query by pressing enter in the same way as Prometheus does 2022-05-02 20:24:43 +03:00
Dockerfile-web deployment/docker: update Go builder from go1.18.3 to go1.18.4 2022-07-13 20:31:54 +03:00
Makefile app/vmui: actualize Dockerfiles 2021-08-11 13:42:53 +03:00
README.md app/vmui/README.md: remove features chapter, since it lists unimportant and/or misleading features 2021-12-09 19:51:33 +02:00

vmui

Web UI for VictoriaMetrics

Docker image build

Run the following command from the root of VictoriaMetrics repository in order to build victoriametrics/vmui Docker image:

make vmui-release

Then run the built image with:

docker run --rm --name vmui -p 8080:8080 victoriametrics/vmui

Then navigate to http://localhost:8080 in order to see the web UI.

Static build

Run the following command from the root of VictoriaMetrics repository for building vmui static contents:

make vmui-build

The built static contents is put into app/vmui/packages/vmui/ directory.

Updating vmui embedded into VictoriaMetrics

Run the following command from the root of VictoriaMetrics repository for updating vmui embedded into VictoriaMetrics:

make vmui-update

This command should update vmui static files at app/vmselect/vmui directory. Commit changes to these files if needed.

Then build VictoriaMetrics with the following command:

make victoria-metrics

Then run the built binary with the following command:

bin/victoria-metrics -selfScrapeInterval=5s

Then navigate to http://localhost:8428/vmui/. See these docs for more details.