mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 05:34:05 -08:00
818bd96381
* Bump jquery and @types/jquery Signed-off-by: Julius Volz <julius.volz@gmail.com> * Properly close color box span in graph hover detail jQuery 3.5.0 introcuded a breaking change that was necessary to fix HTML security issues (https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/), and as a result the detail-swatch span wasn't closed properly anymore, because spans are not valid self-closing tags in XHTML. Fixes https://github.com/prometheus/prometheus/issues/7803 Signed-off-by: Julius Volz <julius.volz@gmail.com> * Fix up tests Signed-off-by: Julius Volz <julius.volz@gmail.com> |
||
---|---|---|
.. | ||
react-app | ||
static | ||
templates | ||
assets_generate.go | ||
doc.go | ||
README.md | ||
ui.go |
The ui
directory contains static files and templates used in the web UI. For
easier distribution they are statically compiled into the Prometheus binary
using the vfsgen library (c.f. Makefile).
During development it is more convenient to always use the files on disk to
directly see changes without recompiling.
To make this work, remove the builtinassets
build tag in the flags
entry
in .promu.yml
, and then make build
(or build Prometheus using
go build ./cmd/prometheus
).
This will serve all files from your local filesystem. This is for development purposes only.