mirror of
https://github.com/prometheus/prometheus
synced 2025-01-11 17:19:45 +00:00
eb8ca06885
* Fix/removed forwarding Signed-off-by: Levi Harrison <git@leviharrison.dev> * Added global 'wasReady' and 'wasUnexpected' Signed-off-by: Levi Harrison <git@leviharrison.dev> * Eslint fixes Signed-off-by: Levi Harrison <git@leviharrison.dev> * Added withStartingIndicator wrapper Signed-off-by: Levi Harrison <git@leviharrison.dev> * Fixed condition Signed-off-by: Levi Harrison <git@leviharrison.dev> * Removed unused import Signed-off-by: Levi Harrison <git@leviharrison.dev> * Moved withStartingIndicator calls to pages index Signed-off-by: Levi Harrison <git@leviharrison.dev> * Fixed withStartingIndicator tests Signed-off-by: Levi Harrison <git@leviharrison.dev> * Fixed eslint (maybe?) Signed-off-by: Levi Harrison <git@leviharrison.dev> * Trailing comma Signed-off-by: Levi Harrison <git@leviharrison.dev> * Added prettier ignore Signed-off-by: Levi Harrison <git@leviharrison.dev> * Fix eslint (pt. 2) Signed-off-by: Levi Harrison <git@leviharrison.dev> |
||
---|---|---|
.. | ||
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.