mirror of
https://github.com/prometheus/prometheus
synced 2024-12-27 00:53:12 +00:00
81d37a04aa
For some of the queries, the fuzzy lookup was not filtering properly. The problem is due to the "replace" beind made on the query itself. It accidently removes only the first underscore. This patch changes it so that it removes all of the whitespaces, letting the fuzzy algorithm do its magic, also fixing this problem. Originally, the underscore were replaced by a space for this specific reason, to let the user type a space and have the lookup treat it as the word break. Fixes #2380 |
||
---|---|---|
.. | ||
static | ||
templates | ||
bindata.go | ||
README.md |
The ui
package contains static files and templates used in the web UI. For
easier distribution they are statically compiled into the Prometheus binary
using the go-bindata tool (c.f. Makefile).
During development it is more convenient to always use the files on disk to
directly see changes without recompiling.
Set the environment variable DEBUG=1
and compile Prometheus for this to work.
This is for development purposes only.
After making changes to any file, run make assets
before committing to update
the generated inline version of the file.