VictoriaMetrics/app/vmui
Roman Khavronenko 3de7fc5c71
security: bump go version to 1.20.2 (#3935)
upgrade Go builder from Go1.20.1 to Go1.20.2
See the list of issues addressed in Go1.20.2 here (https://github.com/golang/go/issues?q=milestone%3AGo1.20.2+label%3ACherryPickApproved).

Signed-off-by: hagen1778 <roman@victoriametrics.com>
2023-03-09 13:20:54 +01:00
..
packages/vmui vmui: fix display of selected value in the selector (#3919) 2023-03-07 16:23:02 +01:00
.gitignore app/vmui: move source code from https://github.com/VictoriaMetrics/vmui to app/vmui 2021-07-09 17:15:23 +03:00
Dockerfile-build all: update Go builder from Go1.20.0 to Go1.20.1 2023-02-14 23:05:16 -08:00
Dockerfile-web security: bump go version to 1.20.2 (#3935) 2023-03-09 13:20:54 +01:00
Makefile app/vmui: actualize Dockerfiles 2021-08-11 13:41:41 +03:00
README.md app/vmui/README.md: remove features chapter, since it lists unimportant and/or misleading features 2021-12-09 19:50:25 +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.