mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/vmselect: fix the build after fb8889820aba710508033cbf6826eb63a357532a
This commit is contained in:
parent
c6511bc2d0
commit
1a7794735e
1 changed files with 4 additions and 2 deletions
|
@ -631,13 +631,15 @@ func selectHandler(qt *querytracer.Tracer, startTime time.Time, w http.ResponseW
|
|||
promrelabelMetricRelabelDebugRequests.Inc()
|
||||
metric := r.FormValue("metric")
|
||||
relabelConfigs := r.FormValue("relabel_configs")
|
||||
promrelabel.WriteMetricRelabelDebug(w, "", metric, relabelConfigs, nil)
|
||||
format := r.FormValue("format")
|
||||
promrelabel.WriteMetricRelabelDebug(w, "", metric, relabelConfigs, format, nil)
|
||||
return true
|
||||
case "prometheus/target-relabel-debug", "target-relabel-debug":
|
||||
promrelabelTargetRelabelDebugRequests.Inc()
|
||||
metric := r.FormValue("metric")
|
||||
relabelConfigs := r.FormValue("relabel_configs")
|
||||
promrelabel.WriteTargetRelabelDebug(w, "", metric, relabelConfigs, nil)
|
||||
format := r.FormValue("format")
|
||||
promrelabel.WriteTargetRelabelDebug(w, "", metric, relabelConfigs, format, nil)
|
||||
return true
|
||||
case "prometheus/expand-with-exprs", "expand-with-exprs":
|
||||
expandWithExprsRequests.Inc()
|
||||
|
|
Loading…
Reference in a new issue