mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
51196739af
* vmalert: expand rule groups on anchor click before, anchor click was only updating the URL. To expand the group, user had to click on rule's block. Now, group will toggle automatically. * vmalert: allow filtering group in web UI The new filter allows to filter groups and rules within groups by: errors only or noMatch only. The filtering supposed to help navigating big numbers of groups/rules. Filtering is reflected in URL, so can be shared as a link. Signed-off-by: hagen1778 <roman@victoriametrics.com>
16 lines
524 B
Text
16 lines
524 B
Text
{% import (
|
|
"net/http"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert/utils"
|
|
) %}
|
|
|
|
|
|
{% func Footer(r *http.Request) %}
|
|
{%code prefix := utils.Prefix(r.URL.Path) %}
|
|
</main>
|
|
<script src="{%s prefix %}static/js/jquery-3.6.0.min.js" type="text/javascript"></script>
|
|
<script src="{%s prefix %}static/js/bootstrap.bundle.min.js" type="text/javascript"></script>
|
|
<script src="{%s prefix %}static/js/custom.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|
|
{% endfunc %}
|