lib/promscrape: use Prometheus format for target labels at /targets page

This should simplify copy-pasting the labels to/from PromQL / MetricsQL
This commit is contained in:
Aliaksandr Valialkin 2021-10-11 12:40:46 +03:00
parent dd4038f0e5
commit 873aac584e
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1
2 changed files with 36 additions and 25 deletions

View file

@ -116,9 +116,12 @@ job={%q= jobName %} (0/0 up)
{% endfunc %}
{% func formatLabel(labels []prompbmarshal.Label) %}
{% for _, label := range labels %}
{%s label.Name %}={%q label.Value %} {% space %}
{% endfor %}
{
{% for i, label := range labels %}
{%s label.Name %}={%q label.Value %}
{% if i+1 < len(labels) %},{% endif %}
{% endfor %}
}
{% endfunc %}
{% endstripspace %}

View file

@ -359,43 +359,51 @@ func TargetsResponseHTML(jts []jobTargetsStatuses, emptyJobs []string, redirectP
//line lib/promscrape/targets_response.qtpl:118
func streamformatLabel(qw422016 *qt422016.Writer, labels []prompbmarshal.Label) {
//line lib/promscrape/targets_response.qtpl:119
for _, label := range labels {
//line lib/promscrape/targets_response.qtpl:118
qw422016.N().S(`{`)
//line lib/promscrape/targets_response.qtpl:120
qw422016.E().S(label.Name)
//line lib/promscrape/targets_response.qtpl:120
qw422016.N().S(`=`)
//line lib/promscrape/targets_response.qtpl:120
qw422016.E().Q(label.Value)
//line lib/promscrape/targets_response.qtpl:120
qw422016.N().S(` `)
for i, label := range labels {
//line lib/promscrape/targets_response.qtpl:121
qw422016.E().S(label.Name)
//line lib/promscrape/targets_response.qtpl:121
qw422016.N().S(`=`)
//line lib/promscrape/targets_response.qtpl:121
qw422016.E().Q(label.Value)
//line lib/promscrape/targets_response.qtpl:122
if i+1 < len(labels) {
//line lib/promscrape/targets_response.qtpl:122
qw422016.N().S(`,`)
//line lib/promscrape/targets_response.qtpl:122
}
//line lib/promscrape/targets_response.qtpl:123
}
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:123
qw422016.N().S(`}`)
//line lib/promscrape/targets_response.qtpl:125
}
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
func writeformatLabel(qq422016 qtio422016.Writer, labels []prompbmarshal.Label) {
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
qw422016 := qt422016.AcquireWriter(qq422016)
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
streamformatLabel(qw422016, labels)
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
qt422016.ReleaseWriter(qw422016)
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
}
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
func formatLabel(labels []prompbmarshal.Label) string {
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
qb422016 := qt422016.AcquireByteBuffer()
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
writeformatLabel(qb422016, labels)
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
qs422016 := string(qb422016.B)
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
qt422016.ReleaseByteBuffer(qb422016)
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
return qs422016
//line lib/promscrape/targets_response.qtpl:122
//line lib/promscrape/targets_response.qtpl:125
}