2022-02-12 16:40:29 +00:00
// Code generated by qtc from "targetstatus.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:1
2022-02-12 16:40:29 +00:00
package promscrape
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:1
2022-02-12 16:40:29 +00:00
import (
2022-06-06 21:57:05 +00:00
"net/url"
"time"
2022-11-30 05:22:12 +00:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promutils"
2022-02-12 16:40:29 +00:00
)
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:10
2022-02-12 16:40:29 +00:00
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:10
2022-02-12 16:40:29 +00:00
var (
_ = qtio422016 . Copy
_ = qt422016 . AcquireByteBuffer
)
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:10
2022-06-06 21:57:05 +00:00
func StreamTargetsResponsePlain ( qw422016 * qt422016 . Writer , tsr * targetsStatusResult , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:12
2022-06-06 21:57:05 +00:00
if tsr . err != nil {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:13
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( tsr . err . Error ( ) )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:14
2022-06-06 21:57:05 +00:00
return
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:15
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:17
2022-06-06 21:57:05 +00:00
for _ , jts := range tsr . jobTargetsStatuses {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:17
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` job= ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( jts . jobName )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ( ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( jts . upCount )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` / ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( jts . targetsTotal )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:18
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` up) ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( `
` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:20
2022-06-06 21:57:05 +00:00
for _ , ts := range jts . targetsStatus {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:21
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( "\t" )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:21
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` state= ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:22
2022-02-12 16:40:29 +00:00
if ts . up {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:22
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` up ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:22
2022-02-12 16:40:29 +00:00
} else {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:22
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` down ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:22
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:22
qw422016 . N ( ) . S ( ` , ` )
//line lib/promscrape/targetstatus.qtpl:22
qw422016 . N ( ) . S ( ` ` )
//line lib/promscrape/targetstatus.qtpl:22
qw422016 . N ( ) . S ( ` endpoint= ` )
//line lib/promscrape/targetstatus.qtpl:23
qw422016 . N ( ) . S ( ts . sw . Config . ScrapeURL )
2022-06-03 13:38:45 +00:00
//line lib/promscrape/targetstatus.qtpl:23
qw422016 . N ( ) . S ( ` , ` )
//line lib/promscrape/targetstatus.qtpl:23
qw422016 . N ( ) . S ( ` ` )
//line lib/promscrape/targetstatus.qtpl:23
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ` labels= ` )
2022-06-03 13:38:45 +00:00
//line lib/promscrape/targetstatus.qtpl:24
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ts . sw . Config . Labels . String ( ) )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:25
2022-06-06 21:57:05 +00:00
if filter . showOriginalLabels {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` originalLabels= ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:25
qw422016 . N ( ) . S ( ts . sw . Config . OriginalLabels . String ( ) )
//line lib/promscrape/targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` scrapes_total= ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:26
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( ts . scrapesTotal )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:26
qw422016 . N ( ) . S ( ` , ` )
//line lib/promscrape/targetstatus.qtpl:26
qw422016 . N ( ) . S ( ` ` )
//line lib/promscrape/targetstatus.qtpl:26
qw422016 . N ( ) . S ( ` scrapes_failed= ` )
//line lib/promscrape/targetstatus.qtpl:27
qw422016 . N ( ) . D ( ts . scrapesFailed )
2022-06-03 13:38:45 +00:00
//line lib/promscrape/targetstatus.qtpl:27
qw422016 . N ( ) . S ( ` , ` )
//line lib/promscrape/targetstatus.qtpl:27
qw422016 . N ( ) . S ( ` ` )
//line lib/promscrape/targetstatus.qtpl:27
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ` last_scrape= ` )
2022-06-03 13:38:45 +00:00
//line lib/promscrape/targetstatus.qtpl:28
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . D ( int ( ts . getDurationFromLastScrape ( ) . Milliseconds ( ) ) )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:28
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ` ms ago, ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:28
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:28
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ` scrape_duration= ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:29
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . D ( int ( ts . scrapeDuration ) )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:29
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ` ms, ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:29
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:29
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ` samples_scraped= ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:30
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . D ( ts . samplesScraped )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:30
2022-11-30 05:22:12 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:30
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-29 07:36:03 +00:00
//line lib/promscrape/targetstatus.qtpl:30
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` error= ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:31
2022-02-12 16:40:29 +00:00
if ts . err != nil {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:31
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ts . err . Error ( ) )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:31
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:32
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( `
` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:33
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:34
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:36
2022-06-06 21:57:05 +00:00
for _ , jobName := range tsr . emptyJobs {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:36
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` job= ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:37
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( jobName )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:37
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:37
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` (0/0 up) ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:38
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( `
` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:39
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-06-06 21:57:05 +00:00
func WriteTargetsResponsePlain ( qq422016 qtio422016 . Writer , tsr * targetsStatusResult , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-06-06 21:57:05 +00:00
StreamTargetsResponsePlain ( qw422016 , tsr , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-06-06 21:57:05 +00:00
func TargetsResponsePlain ( tsr * targetsStatusResult , filter * requestFilter ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-06-06 21:57:05 +00:00
WriteTargetsResponsePlain ( qb422016 , tsr , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:43
2022-06-06 21:57:05 +00:00
func StreamTargetsResponseHTML ( qw422016 * qt422016 . Writer , tsr * targetsStatusResult , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:43
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <!DOCTYPE html><html lang="en"><head> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:47
2022-06-06 21:57:05 +00:00
streamcommonHeader ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:47
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <title>Active Targets</title></head><body> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:51
2022-06-06 21:57:05 +00:00
streamnavbar ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:51
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="container-fluid"> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:53
2022-06-06 21:57:05 +00:00
if tsr . err != nil {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:54
2022-06-06 21:57:05 +00:00
streamerrorNotification ( qw422016 , tsr . err )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:55
2022-04-19 15:26:21 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:55
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="row"><main class="col-12"><h1>Active Targets</h1><hr /> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:60
2022-06-06 21:57:05 +00:00
streamfiltersForm ( qw422016 , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:60
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <hr /> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:62
2022-06-06 21:57:05 +00:00
streamtargetsTabs ( qw422016 , tsr , filter , "scrapeTargets" )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:62
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </main></div></div></body></html> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
func WriteTargetsResponseHTML ( qq422016 qtio422016 . Writer , tsr * targetsStatusResult , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
StreamTargetsResponseHTML ( qw422016 , tsr , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
func TargetsResponseHTML ( tsr * targetsStatusResult , filter * requestFilter ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
WriteTargetsResponseHTML ( qb422016 , tsr , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:68
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:70
2022-06-06 21:57:05 +00:00
func StreamServiceDiscoveryResponse ( qw422016 * qt422016 . Writer , tsr * targetsStatusResult , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:70
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <!DOCTYPE html><html lang="en"><head> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:74
2022-06-06 21:57:05 +00:00
streamcommonHeader ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:74
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <title>Discovered Targets</title></head><body> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:78
2022-06-06 21:57:05 +00:00
streamnavbar ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:78
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="container-fluid"> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:80
2022-06-06 21:57:05 +00:00
if tsr . err != nil {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:81
2022-06-06 21:57:05 +00:00
streamerrorNotification ( qw422016 , tsr . err )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:82
2022-06-03 13:38:45 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:82
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="row"><main class="col-12"><h1>Discovered Targets</h1><hr /> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:87
2022-06-06 21:57:05 +00:00
streamfiltersForm ( qw422016 , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:87
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <hr /> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:89
2022-06-06 21:57:05 +00:00
streamtargetsTabs ( qw422016 , tsr , filter , "discoveredTargets" )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:89
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </main></div></div></body></html> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
func WriteServiceDiscoveryResponse ( qq422016 qtio422016 . Writer , tsr * targetsStatusResult , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
StreamServiceDiscoveryResponse ( qw422016 , tsr , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
func ServiceDiscoveryResponse ( tsr * targetsStatusResult , filter * requestFilter ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
WriteServiceDiscoveryResponse ( qb422016 , tsr , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:95
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:97
2022-06-06 21:57:05 +00:00
func streamcommonHeader ( qw422016 * qt422016 . Writer ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:97
2022-06-30 15:23:56 +00:00
qw422016 . N ( ) . S ( ` <meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /><link href="static/css/bootstrap.min.css" rel="stylesheet" /> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
func writecommonHeader ( qq422016 qtio422016 . Writer ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
streamcommonHeader ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
func commonHeader ( ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
writecommonHeader ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:101
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:103
2022-06-06 21:57:05 +00:00
func streamnavbar ( qw422016 * qt422016 . Writer ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:103
2022-12-10 10:09:21 +00:00
qw422016 . N ( ) . S ( ` <div class="navbar navbar-dark bg-dark box-shadow"><div class="d-flex justify-content-between"><a href="/" class="navbar-brand d-flex align-items-center ms-3" title="The High Performance Open Source Time Series Database & Monitoring Solution "><svg xmlns="http://www.w3.org/2000/svg" id="VM_logo" viewBox="0 0 464.61 533.89" width="20" height="20" class="me-1"><defs><style>.cls-1 { fill:#fff;}</style></defs><path class="cls-1" d="M459.86,467.77c9,7.67,24.12,13.49,39.3,13.69v0h1.68v0c15.18-.2,30.31-6,39.3-13.69,47.43-40.45,184.65-166.24,184.65-166.24,36.84-34.27-65.64-68.28-223.95-68.47h-1.68c-158.31.19-260.79,34.2-224,68.47C275.21,301.53,412.43,427.32,459.86,467.77Z" transform="translate(-267.7 -233.05)"/><path class="cls-1" d="M540.1,535.88c-9,7.67-24.12,13.5-39.3,13.7h-1.6c-15.18-.2-30.31-6-39.3-13.7-32.81-28-148.56-132.93-192.16-172.7v60.74c0,6.67,2.55,15.52,7.09,19.68,29.64,27.18,143.94,131.8,185.07,166.88,9,7.67,24.12,13.49,39.3,13.69v0h1.6v0c15.18-.2,30.31-6,39.3-13.69,41.13-35.08,155.43-139.7,185.07-166.88,4.54-4.16,7.09-13,7.09-19.68V363.18C688.66,403,572.91,507.9,540.1,535.88Z" transform="translate(-267.7 -233.05)"/><path class="cls-1" d="M540.1,678.64c-9,7.67-24.12,13.49-39.3,13.69v0h-1.6v0c-15.18-.2-30.31-6-39.3-13.69-32.81-28-148.56-132.94-192.16-172.7v60.73c0,6.67,2.55,15.53,7.09,19.69,29.64,27.17,143.94,131.8,185.07,166.87,9,7.67,24.12,13.5,39.3,13.7h1.6c15.18-.2,30.31-6,39.3-13.7,41.13-35.07,155.43-139.7,185.07-166.87,4.54-4.16,7.09-13,7.09-19.69V505.94C688.66,545.7,572.91,650.66,540.1,678.64Z" transform="translate(-267.7 -233.05)"/></svg><strong>VictoriaMetrics</strong></a></div></div> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
func writenavbar ( qq422016 qtio422016 . Writer ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
streamnavbar ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
func navbar ( ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
writenavbar ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:112
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:114
2022-06-06 21:57:05 +00:00
func streamfiltersForm ( qw422016 * qt422016 . Writer , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:114
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="row g-3 align-items-center mb-3"><div class="col-auto"><button id="all-btn" type="button" class="btn ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:117
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:117
2022-06-03 13:38:45 +00:00
if ! filter . showOnlyUnhealthy {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:117
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` btn-secondary ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:117
2022-04-20 08:25:04 +00:00
} else {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:117
2022-04-20 08:25:04 +00:00
qw422016 . N ( ) . S ( ` btn-success ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:117
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:117
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` "onclick="location.href='? ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:118
2022-06-06 21:57:05 +00:00
streamqueryArgs ( qw422016 , filter , map [ string ] string { "show_only_unhealthy" : "false" } )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:118
2022-06-03 13:38:45 +00:00
qw422016 . N ( ) . S ( ` '">All</button></div><div class="col-auto"><button id="unhealthy-btn" type="button" class="btn ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:123
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:123
2022-06-03 13:38:45 +00:00
if filter . showOnlyUnhealthy {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:123
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` btn-secondary ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:123
2022-04-20 08:25:04 +00:00
} else {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:123
2022-04-20 08:25:04 +00:00
qw422016 . N ( ) . S ( ` btn-danger ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:123
2022-04-19 15:26:21 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:123
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` "onclick="location.href='? ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:124
2022-06-06 21:57:05 +00:00
streamqueryArgs ( qw422016 , filter , map [ string ] string { "show_only_unhealthy" : "true" } )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:124
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` '">Unhealthy</button></div><div class="col-auto"><button type="button" class="btn btn-primary" onclick="document.querySelectorAll('.scrape-job').forEach((el) => { el.style.display = 'none'; })">Collapse all</button></div><div class="col-auto"><button type="button" class="btn btn-secondary" onclick="document.querySelectorAll('.scrape-job').forEach((el) => { el.style.display = 'block'; })">Expand all</button></div><div class="col-auto"><button type="button" class="btn btn-success" onclick="document.getElementById('filters').style.display='block'">Filter targets</button></div></div><div id="filters" ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:144
2022-06-03 13:38:45 +00:00
if filter . endpointSearch == "" && filter . labelSearch == "" {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:144
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` style="display:none" ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:144
2022-04-19 15:26:21 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:144
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` ><form class="form-horizontal"><div class="form-group mb-3"><label for="endpoint_search" class="col-sm-10 control-label">Endpoint filter (<a target="_blank" href="https://github.com/google/re2/wiki/Syntax">Regexp</a> is accepted)</label><div class="col-sm-10"><input type="text" id="endpoint_search" name="endpoint_search"placeholder="For example, 127.0.0.1" class="form-control" value=" ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:150
2022-06-03 13:38:45 +00:00
qw422016 . E ( ) . S ( filter . endpointSearch )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:150
2022-06-03 13:38:45 +00:00
qw422016 . N ( ) . S ( ` "/></div></div><div class="form-group mb-3"><label for="label_search" class="col-sm-10 control-label">Labels filter (<a target="_blank" href="https://prometheus.io/docs/prometheus/latest/querying/basics/#time-series-selectors">Arbitrary time series selectors</a> are accepted)</label><div class="col-sm-10"><input type="text" id="label_search" name="label_search"placeholder="For example, { instance=~'.+:9100'}" class="form-control" value=" ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:157
2022-06-03 13:38:45 +00:00
qw422016 . E ( ) . S ( filter . labelSearch )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:157
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` "/></div></div><input type="hidden" name="show_only_unhealthy" value=" ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:160
2022-06-03 13:38:45 +00:00
qw422016 . E ( ) . V ( filter . showOnlyUnhealthy )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:160
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` "/><input type="hidden" name="show_original_labels" value=" ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:161
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . V ( filter . showOriginalLabels )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:161
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` "/><button type="submit" class="btn btn-success mb-3">Submit</button><button type="button" class="btn btn-danger mb-3" onclick="location.href='?'">Clear target filters</button></form></div> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
func writefiltersForm ( qq422016 qtio422016 . Writer , filter * requestFilter ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
streamfiltersForm ( qw422016 , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
func filtersForm ( filter * requestFilter ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
writefiltersForm ( qb422016 , filter )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:166
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:168
2022-06-06 21:57:05 +00:00
func streamtargetsTabs ( qw422016 * qt422016 . Writer , tsr * targetsStatusResult , filter * requestFilter , activeTab string ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:168
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <ul class="nav nav-tabs" id="myTab" role="tablist"><li class="nav-item" role="presentation"><button class="nav-link ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:171
2022-06-06 21:57:05 +00:00
if activeTab == "scrapeTargets" {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:171
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:171
2022-06-03 13:38:45 +00:00
qw422016 . N ( ) . S ( ` active ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:171
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:171
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` " type="button" role="tab"onclick="location.href='targets? ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:172
2022-06-06 21:57:05 +00:00
streamqueryArgs ( qw422016 , filter , nil )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:172
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` '">Active targets</button></li><li class="nav-item" role="presentation"><button class="nav-link ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:177
2022-06-06 21:57:05 +00:00
if activeTab == "discoveredTargets" {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:177
2022-06-03 13:38:45 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:177
2022-06-03 13:38:45 +00:00
qw422016 . N ( ) . S ( ` active ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:177
2022-02-12 16:40:29 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:177
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` " type="button" role="tab"onclick="location.href='service-discovery? ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:178
2022-06-06 21:57:05 +00:00
streamqueryArgs ( qw422016 , filter , nil )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:178
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` '">Discovered targets</button></li></ul><div class="tab-content"><div class="tab-pane active" role="tabpanel"> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:185
2022-06-06 21:57:05 +00:00
switch activeTab {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:186
2022-06-06 21:57:05 +00:00
case "scrapeTargets" :
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:187
2022-06-06 21:57:05 +00:00
streamscrapeTargets ( qw422016 , tsr )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:188
2022-06-06 21:57:05 +00:00
case "discoveredTargets" :
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:189
2022-06-06 21:57:05 +00:00
streamdiscoveredTargets ( qw422016 , tsr )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:190
2022-06-03 13:38:45 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:190
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </div></div> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-04-19 15:26:21 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
func writetargetsTabs ( qq422016 qtio422016 . Writer , tsr * targetsStatusResult , filter * requestFilter , activeTab string ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-04-19 15:26:21 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
streamtargetsTabs ( qw422016 , tsr , filter , activeTab )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-04-19 15:26:21 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
func targetsTabs ( tsr * targetsStatusResult , filter * requestFilter , activeTab string ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-04-19 15:26:21 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
writetargetsTabs ( qb422016 , tsr , filter , activeTab )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:193
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:195
2022-06-06 21:57:05 +00:00
func streamscrapeTargets ( qw422016 * qt422016 . Writer , tsr * targetsStatusResult ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:195
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="row mt-4"><div class="col-12"> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:198
2022-06-06 21:57:05 +00:00
for i , jts := range tsr . jobTargetsStatuses {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:199
2022-06-06 21:57:05 +00:00
streamscrapeJobTargets ( qw422016 , i , jts )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:200
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:201
2022-06-06 21:57:05 +00:00
for i , jobName := range tsr . emptyJobs {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:203
2022-06-06 21:57:05 +00:00
num := i + len ( tsr . jobTargetsStatuses )
jts := & jobTargetsStatuses {
jobName : jobName ,
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:208
2022-06-06 21:57:05 +00:00
streamscrapeJobTargets ( qw422016 , num , jts )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:209
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:209
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </div></div> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
func writescrapeTargets ( qq422016 qtio422016 . Writer , tsr * targetsStatusResult ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
streamscrapeTargets ( qw422016 , tsr )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
func scrapeTargets ( tsr * targetsStatusResult ) string {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
writescrapeTargets ( qb422016 , tsr )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
return qs422016
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:212
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:214
2022-06-06 21:57:05 +00:00
func streamscrapeJobTargets ( qw422016 * qt422016 . Writer , num int , jts * jobTargetsStatuses ) {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:214
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="row mb-4"><div class="col-12"><h4><span class="me-2"> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( jts . jobName )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ( ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( jts . upCount )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` / ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( jts . targetsTotal )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:218
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` up)</span> ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:219
2022-06-06 21:57:05 +00:00
streamshowHideScrapeJobButtons ( qw422016 , num )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:219
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </h4><div id="scrape-job- ` )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:221
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( num )
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:221
2022-12-10 10:09:21 +00:00
qw422016 . N ( ) . S ( ` " class="scrape-job table-responsive"><table class="table table-striped table-hover table-bordered table-sm"><thead><tr><th scope="col">Endpoint</th><th scope="col">State</th><th scope="col" title="target labels">Labels</th><th scope="col" title="debug relabeling">Debug relabeling</th><th scope="col" title="total scrapes">Scrapes</th><th scope="col" title="total scrape errors">Errors</th><th scope="col" title="the time of the last scrape">Last Scrape</th><th scope="col" title="the duration of the last scrape">Duration</th><th scope="col" title="the number of metrics scraped during the last scrape">Samples</th><th scope="col" title="error from the last scrape (if any)">Last error</th></tr></thead><tbody> ` )
//line lib/promscrape/targetstatus.qtpl:238
2022-06-06 21:57:05 +00:00
for _ , ts := range jts . targetsStatus {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:240
2022-06-06 21:57:05 +00:00
endpoint := ts . sw . Config . ScrapeURL
2022-12-10 10:09:21 +00:00
// The target is uniquely identified by a pointer to its original labels.
targetID := getLabelsID ( ts . sw . Config . OriginalLabels )
2022-06-06 21:57:05 +00:00
lastScrapeDuration := ts . getDurationFromLastScrape ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:244
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <tr ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:245
2022-06-06 21:57:05 +00:00
if ! ts . up {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:245
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:245
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` class="alert alert-danger" role="alert" ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:245
2022-06-06 21:57:05 +00:00
}
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:245
2022-12-10 10:09:21 +00:00
qw422016 . N ( ) . S ( ` ><td class="endpoint"><a href=" ` )
//line lib/promscrape/targetstatus.qtpl:247
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( endpoint )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:247
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` " target="_blank"> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:247
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( endpoint )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:247
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </a> (<a href="target_response?id= ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:248
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( targetID )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:248
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` " target="_blank"title="click to fetch target response on behalf of the scraper">response</a>)</td><td> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:253
2022-06-06 21:57:05 +00:00
if ts . up {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:253
2022-12-10 10:09:21 +00:00
qw422016 . N ( ) . S ( ` <span class="badge bg-success">UP</span> ` )
//line lib/promscrape/targetstatus.qtpl:255
2022-06-06 21:57:05 +00:00
} else {
2022-11-30 05:22:12 +00:00
//line lib/promscrape/targetstatus.qtpl:255
2022-12-10 10:09:21 +00:00
qw422016 . N ( ) . S ( ` <span class="badge bg-danger">DOWN</span> ` )
//line lib/promscrape/targetstatus.qtpl:257
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:257
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </td><td class="labels"><div title="click to show original labels"onclick="document.getElementById('original-labels- ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:261
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( targetID )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:261
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ').style.display='block'"> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:262
2022-11-30 05:22:12 +00:00
streamformatLabels ( qw422016 , ts . sw . Config . Labels )
//line lib/promscrape/targetstatus.qtpl:262
2022-12-10 10:09:21 +00:00
qw422016 . N ( ) . S ( ` </div><div style="display:none" id="original-labels- ` )
//line lib/promscrape/targetstatus.qtpl:264
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( targetID )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:264
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` "> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:265
2022-11-30 05:22:12 +00:00
streamformatLabels ( qw422016 , ts . sw . Config . OriginalLabels )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:265
qw422016 . N ( ) . S ( ` </div></td><td><a href="target-relabel-debug?id= ` )
//line lib/promscrape/targetstatus.qtpl:269
qw422016 . E ( ) . S ( targetID )
//line lib/promscrape/targetstatus.qtpl:269
qw422016 . N ( ) . S ( ` " target="_blank">debug</a></td><td> ` )
//line lib/promscrape/targetstatus.qtpl:271
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( ts . scrapesTotal )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:271
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </td><td> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:272
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( ts . scrapesFailed )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:272
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </td><td> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:274
2022-06-06 21:57:05 +00:00
if lastScrapeDuration < 365 * 24 * time . Hour {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:275
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( int ( lastScrapeDuration . Milliseconds ( ) ) )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:275
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ms ago ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:276
2022-06-06 21:57:05 +00:00
} else {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:276
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` none ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:278
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:278
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <td> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:279
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( int ( ts . scrapeDuration ) )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:279
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ms</td><td> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:280
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( ts . samplesScraped )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:280
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </td><td> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:281
2022-06-06 21:57:05 +00:00
if ts . err != nil {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:281
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( ts . err . Error ( ) )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:281
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:281
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </td></tr> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:283
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:283
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </tbody></table></div></div></div> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
func writescrapeJobTargets ( qq422016 qtio422016 . Writer , num int , jts * jobTargetsStatuses ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
streamscrapeJobTargets ( qw422016 , num , jts )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
func scrapeJobTargets ( num int , jts * jobTargetsStatuses ) string {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-06-06 21:57:05 +00:00
writescrapeJobTargets ( qb422016 , num , jts )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-04-19 15:26:21 +00:00
qs422016 := string ( qb422016 . B )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-04-19 15:26:21 +00:00
return qs422016
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:289
2022-04-19 15:26:21 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:291
2022-06-06 21:57:05 +00:00
func streamdiscoveredTargets ( qw422016 * qt422016 . Writer , tsr * targetsStatusResult ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:292
2022-06-06 21:57:05 +00:00
tljs := tsr . getTargetLabelsByJob ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:292
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <div class="row mt-4"><div class="col-12"> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:295
2022-06-06 21:57:05 +00:00
for i , tlj := range tljs {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:296
2022-06-06 21:57:05 +00:00
streamdiscoveredJobTargets ( qw422016 , i , tlj )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:297
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:297
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </div></div> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
func writediscoveredTargets ( qq422016 qtio422016 . Writer , tsr * targetsStatusResult ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
streamdiscoveredTargets ( qw422016 , tsr )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
func discoveredTargets ( tsr * targetsStatusResult ) string {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
writediscoveredTargets ( qb422016 , tsr )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
return qs422016
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:300
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:302
2022-06-06 21:57:05 +00:00
func streamdiscoveredJobTargets ( qw422016 * qt422016 . Writer , num int , tlj * targetLabelsByJob ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:302
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <h4><span class="me-2"> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . E ( ) . S ( tlj . jobName )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ( ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( tlj . activeTargets )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` / ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( tlj . activeTargets + tlj . droppedTargets )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:304
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` active)</span> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:305
2022-06-06 21:57:05 +00:00
streamshowHideScrapeJobButtons ( qw422016 , num )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:305
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </h4><div id="scrape-job- ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:307
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( num )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:307
qw422016 . N ( ) . S ( ` " class="scrape-job table-responsive"><table class="table table-striped table-hover table-bordered table-sm"><thead><tr><th scope="col" style="width: 5%">Status</th><th scope="col" style="width: 60%">Discovered Labels</th><th scope="col" style="width: 30%">Target Labels</th><th scope="col" stile="width: 5%">Debug relabeling</a></tr></thead><tbody> ` )
//line lib/promscrape/targetstatus.qtpl:318
2022-06-06 21:57:05 +00:00
for _ , t := range tlj . targets {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:318
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <tr ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:320
2022-06-06 21:57:05 +00:00
if ! t . up {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:321
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:321
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` role="alert" ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:321
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:322
2022-11-30 05:22:12 +00:00
if t . labels . Len ( ) > 0 {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:322
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` class="alert alert-danger" ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:324
2022-06-06 21:57:05 +00:00
} else {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:324
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` class="alert alert-warning" ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:326
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:327
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:327
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ><td> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:330
2022-06-06 21:57:05 +00:00
if t . up {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:330
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <span class="badge bg-success">UP</span> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:332
2022-11-30 05:22:12 +00:00
} else if t . labels . Len ( ) > 0 {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:332
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <span class="badge bg-danger">DOWN</span> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:334
2022-06-06 21:57:05 +00:00
} else {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:334
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <span class="badge bg-warning">DROPPED</span> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:336
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:336
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </td><td class="labels"> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:339
streamformatLabels ( qw422016 , t . originalLabels )
//line lib/promscrape/targetstatus.qtpl:339
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </td><td class="labels"> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:342
2022-11-30 05:22:12 +00:00
streamformatLabels ( qw422016 , t . labels )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:342
qw422016 . N ( ) . S ( ` </td><td> ` )
//line lib/promscrape/targetstatus.qtpl:345
targetID := getLabelsID ( t . originalLabels )
//line lib/promscrape/targetstatus.qtpl:345
qw422016 . N ( ) . S ( ` <a href="target-relabel-debug?id= ` )
//line lib/promscrape/targetstatus.qtpl:346
qw422016 . E ( ) . S ( targetID )
//line lib/promscrape/targetstatus.qtpl:346
qw422016 . N ( ) . S ( ` " target="_blank">debug</a></td></tr> ` )
//line lib/promscrape/targetstatus.qtpl:349
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:349
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` </tbody></table></div> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
func writediscoveredJobTargets ( qq422016 qtio422016 . Writer , num int , tlj * targetLabelsByJob ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
streamdiscoveredJobTargets ( qw422016 , num , tlj )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
func discoveredJobTargets ( num int , tlj * targetLabelsByJob ) string {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
writediscoveredJobTargets ( qb422016 , num , tlj )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
return qs422016
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:353
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:355
2022-06-06 21:57:05 +00:00
func streamshowHideScrapeJobButtons ( qw422016 * qt422016 . Writer , num int ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:355
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` <button type="button" class="btn btn-primary btn-sm me-1"onclick="document.getElementById('scrape-job- ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:357
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( num )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:357
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ').style.display='none'">collapse</button><button type="button" class="btn btn-secondary btn-sm me-1"onclick="document.getElementById('scrape-job- ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:361
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . D ( num )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:361
2022-06-06 21:57:05 +00:00
qw422016 . N ( ) . S ( ` ').style.display='block'">expand</button> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
func writeshowHideScrapeJobButtons ( qq422016 qtio422016 . Writer , num int ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
streamshowHideScrapeJobButtons ( qw422016 , num )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
func showHideScrapeJobButtons ( num int ) string {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
writeshowHideScrapeJobButtons ( qb422016 , num )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
qs422016 := string ( qb422016 . B )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
return qs422016
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:364
2022-06-06 21:57:05 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:366
2022-06-06 21:57:05 +00:00
func streamqueryArgs ( qw422016 * qt422016 . Writer , filter * requestFilter , override map [ string ] string ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:368
2022-06-06 21:57:05 +00:00
showOnlyUnhealthy := "false"
if filter . showOnlyUnhealthy {
showOnlyUnhealthy = "true"
}
m := map [ string ] string {
"show_only_unhealthy" : showOnlyUnhealthy ,
"endpoint_search" : filter . endpointSearch ,
"label_search" : filter . labelSearch ,
}
for k , v := range override {
m [ k ] = v
}
2022-04-19 15:26:21 +00:00
qa := make ( url . Values , len ( m ) )
for k , v := range m {
qa [ k ] = [ ] string { v }
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:385
2022-04-19 15:26:21 +00:00
qw422016 . E ( ) . S ( qa . Encode ( ) )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-06-06 21:57:05 +00:00
func writequeryArgs ( qq422016 qtio422016 . Writer , filter * requestFilter , override map [ string ] string ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-06-06 21:57:05 +00:00
streamqueryArgs ( qw422016 , filter , override )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-06-06 21:57:05 +00:00
func queryArgs ( filter * requestFilter , override map [ string ] string ) string {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-06-06 21:57:05 +00:00
writequeryArgs ( qb422016 , filter , override )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
qs422016 := string ( qb422016 . B )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
return qs422016
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:386
2022-02-12 16:40:29 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:388
2022-11-30 05:22:12 +00:00
func streamformatLabels ( qw422016 * qt422016 . Writer , labels * promutils . Labels ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:389
2022-11-30 05:22:12 +00:00
labelsList := labels . GetLabels ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:389
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` { ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:391
2022-11-30 05:22:12 +00:00
for i , label := range labelsList {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:392
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( label . Name )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:392
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` = ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:392
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . Q ( label . Value )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:393
2022-11-30 05:22:12 +00:00
if i + 1 < len ( labelsList ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:393
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:393
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:393
2022-02-12 16:40:29 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:394
2022-02-12 16:40:29 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:394
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` } ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-02-12 16:40:29 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-11-30 05:22:12 +00:00
func writeformatLabels ( qq422016 qtio422016 . Writer , labels * promutils . Labels ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-02-12 16:40:29 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-11-30 05:22:12 +00:00
streamformatLabels ( qw422016 , labels )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-02-12 16:40:29 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-11-30 05:22:12 +00:00
func formatLabels ( labels * promutils . Labels ) string {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-02-12 16:40:29 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-11-30 05:22:12 +00:00
writeformatLabels ( qb422016 , labels )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-04-19 15:26:21 +00:00
qs422016 := string ( qb422016 . B )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-04-19 15:26:21 +00:00
return qs422016
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:396
2022-04-19 15:26:21 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:398
2022-04-19 15:26:21 +00:00
func streamerrorNotification ( qw422016 * qt422016 . Writer , err error ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:398
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` <div class="alert alert-danger d-flex align-items-center" role="alert"><svg class="bi flex-shrink-0 me-2" width="24" height="24" role="img" aria-label="Danger:"><use xlink:href="#exclamation-triangle-fill"/></svg><div> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:403
2022-04-19 15:26:21 +00:00
qw422016 . E ( ) . S ( err . Error ( ) )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:403
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` </div></div> ` )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
func writeerrorNotification ( qq422016 qtio422016 . Writer , err error ) {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
streamerrorNotification ( qw422016 , err )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
}
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
func errorNotification ( err error ) string {
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-04-19 15:26:21 +00:00
writeerrorNotification ( qb422016 , err )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-02-12 16:40:29 +00:00
qs422016 := string ( qb422016 . B )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-02-12 16:40:29 +00:00
return qs422016
2022-12-10 10:09:21 +00:00
//line lib/promscrape/targetstatus.qtpl:406
2022-02-12 16:40:29 +00:00
}