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-20 08:25:04 +00:00
//line targetstatus.qtpl:1
2022-02-12 16:40:29 +00:00
package promscrape
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:1
2022-02-12 16:40:29 +00:00
import (
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promrelabel"
2022-04-19 15:26:21 +00:00
"net/url"
2022-02-12 16:40:29 +00:00
"time"
)
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:10
2022-02-12 16:40:29 +00:00
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:10
2022-02-12 16:40:29 +00:00
var (
_ = qtio422016 . Copy
_ = qt422016 . AcquireByteBuffer
)
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:10
2022-04-19 15:26:21 +00:00
func StreamTargetsResponsePlain ( qw422016 * qt422016 . Writer , jts [ ] jobTargetsStatuses , emptyJobs [ ] string , showOriginLabels , showOnlyUnhealthy bool , err error ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:12
2022-04-19 15:26:21 +00:00
if err != nil {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:13
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( err . Error ( ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:14
2022-04-19 15:26:21 +00:00
return
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:15
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:17
2022-02-12 16:40:29 +00:00
for _ , js := range jts {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:18
2022-04-19 15:26:21 +00:00
if showOnlyUnhealthy && js . upCount == js . targetsTotal {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:18
2022-04-19 15:26:21 +00:00
continue
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:18
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:18
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` job= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . Q ( js . job )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ( ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( js . upCount )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` / ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( js . targetsTotal )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:19
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` up) ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:20
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( `
` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:21
2022-02-12 16:40:29 +00:00
for _ , ts := range js . targetsStatus {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:22
2022-04-19 15:26:21 +00:00
if showOnlyUnhealthy && ts . up {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:22
2022-04-19 15:26:21 +00:00
continue
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:22
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:23
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( "\t" )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:23
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` state= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
if ts . up {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` up ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
} else {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` down ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:24
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` endpoint= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ts . sw . Config . ScrapeURL )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:25
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` labels= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:26
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( promLabelsString ( promrelabel . FinalizeLabels ( nil , ts . sw . Config . Labels ) ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:26
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:26
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:27
2022-02-12 16:40:29 +00:00
if showOriginLabels {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:27
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` originalLabels= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:27
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( promLabelsString ( ts . sw . Config . OriginalLabels ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:27
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:27
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:27
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:27
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` scrapes_total= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:28
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( ts . scrapesTotal )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:28
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:28
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:28
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` scrapes_failed= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:29
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( ts . scrapesFailed )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:29
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:29
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:29
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` last_scrape= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:30
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . FPrec ( ts . getDurationFromLastScrape ( ) . Seconds ( ) , 3 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:30
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` s ago, ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:30
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:30
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` scrape_duration= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:31
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( int ( ts . scrapeDuration ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:31
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ms, ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:31
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:31
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` samples_scraped= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:32
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( ts . samplesScraped )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:32
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:32
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:32
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` error= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:33
2022-02-12 16:40:29 +00:00
if ts . err != nil {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:33
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ts . err . Error ( ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:33
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:34
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( `
` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:35
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:36
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:38
2022-02-12 16:40:29 +00:00
for _ , jobName := range emptyJobs {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:38
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` job= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:39
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . Q ( jobName )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:39
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` (0/0 up) ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:40
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( `
` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:41
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-04-19 15:26:21 +00:00
func WriteTargetsResponsePlain ( qq422016 qtio422016 . Writer , jts [ ] jobTargetsStatuses , emptyJobs [ ] string , showOriginLabels , showOnlyUnhealthy bool , err error ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-04-19 15:26:21 +00:00
StreamTargetsResponsePlain ( qw422016 , jts , emptyJobs , showOriginLabels , showOnlyUnhealthy , err )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-04-19 15:26:21 +00:00
func TargetsResponsePlain ( jts [ ] jobTargetsStatuses , emptyJobs [ ] string , showOriginLabels , showOnlyUnhealthy bool , err error ) string {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-04-19 15:26:21 +00:00
WriteTargetsResponsePlain ( qb422016 , jts , emptyJobs , showOriginLabels , showOnlyUnhealthy , err )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
qs422016 := string ( qb422016 . B )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
return qs422016
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:43
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:45
2022-04-19 15:26:21 +00:00
func StreamTargetsResponseHTML ( qw422016 * qt422016 . Writer , jts [ ] jobTargetsStatuses , emptyJobs [ ] string , showOnlyUnhealthy bool , endpointSearch , labelSearch string , err error ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:45
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` <!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"><title>Scrape targets</title><script>function collapse_all() { for (var i = 0; i < ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:55
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( len ( jts ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:55
2022-02-15 10:52:48 +00:00
qw422016 . N ( ) . S ( ` ; i++) { let el = document.getElementById("table-" + i);if (!el) { continue;}el.style.display = 'none';}}function expand_all() { for (var i = 0; i < ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:64
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( len ( jts ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:64
qw422016 . N ( ) . S ( ` ; i++) { let el = document.getElementById("table-" + i);if (!el) { continue;}el.style.display = 'block';}}</script></head><body><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><div class="container-fluid"> ` )
//line targetstatus.qtpl:84
2022-04-19 15:26:21 +00:00
if err != nil {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:85
2022-04-19 15:26:21 +00:00
streamerrorNotification ( qw422016 , err )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:86
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:86
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` <div class="row"><main class="col-12"><h1>Scrape targets</h1><hr /><div class="row g-3 align-items-center mb-3"><div class="col-auto"><button type="button" class="btn ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:93
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:93
2022-04-19 15:26:21 +00:00
if ! showOnlyUnhealthy {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:93
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` btn-secondary ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:93
} else {
//line targetstatus.qtpl:93
qw422016 . N ( ) . S ( ` btn-success ` )
//line targetstatus.qtpl:93
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:93
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` " onclick="location.href='? ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:93
2022-04-19 15:26:21 +00:00
streamqueryArgs ( qw422016 , map [ string ] string {
"show_only_unhealthy" : "false" ,
"endpoint_search" : endpointSearch ,
"label_search" : labelSearch ,
} )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:97
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` '">All</button></div><div class="col-auto"><button type="button" class="btn ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:102
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:102
2022-04-19 15:26:21 +00:00
if showOnlyUnhealthy {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:102
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` btn-secondary ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:102
} else {
//line targetstatus.qtpl:102
qw422016 . N ( ) . S ( ` btn-danger ` )
//line targetstatus.qtpl:102
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:102
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` " onclick="location.href='? ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:102
2022-04-19 15:26:21 +00:00
streamqueryArgs ( qw422016 , map [ string ] string {
"show_only_unhealthy" : "true" ,
"endpoint_search" : endpointSearch ,
"label_search" : labelSearch ,
} )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:106
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` '">Unhealthy</button></div><div class="col-auto"><button type="button" class="btn btn-primary" onclick="collapse_all()">Collapse all</button></div><div class="col-auto"><button type="button" class="btn btn-secondary" onclick="expand_all()">Expand all</button></div><div class="col-auto"> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:121
2022-04-19 15:26:21 +00:00
if endpointSearch == "" && labelSearch == "" {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:121
qw422016 . N ( ) . S ( ` <button type="button" class="btn btn-success" onclick="document.getElementById('filters').style.display='block'">Filter targets</button> ` )
//line targetstatus.qtpl:125
2022-04-19 15:26:21 +00:00
} else {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:125
qw422016 . N ( ) . S ( ` <button type="button" class="btn btn-danger" onclick="location.href='?'">Clear target filters</button> ` )
//line targetstatus.qtpl:129
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:129
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` </div></div><div id="filters" ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:132
2022-04-19 15:26:21 +00:00
if endpointSearch == "" && labelSearch == "" {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:132
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` style="display:none" ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:132
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:132
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-04-20 08:25:04 +00:00
//line targetstatus.qtpl:138
2022-04-19 15:26:21 +00:00
qw422016 . E ( ) . S ( endpointSearch )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:138
2022-04-19 15:26:21 +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-04-20 08:25:04 +00:00
//line targetstatus.qtpl:145
2022-04-19 15:26:21 +00:00
qw422016 . E ( ) . S ( labelSearch )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:145
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` "/></div></div><input type="hidden" name="show_only_unhealthy" value=" ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:148
2022-04-19 15:26:21 +00:00
qw422016 . E ( ) . V ( showOnlyUnhealthy )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:148
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` "/><button type="submit" class="btn btn-success mb-3">Submit</button></form></div><hr /><div class="row"><div class="col-12"> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:155
2022-02-12 16:40:29 +00:00
for i , js := range jts {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:156
2022-04-19 15:26:21 +00:00
if showOnlyUnhealthy && js . upCount == js . targetsTotal {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:156
2022-02-12 16:40:29 +00:00
continue
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:156
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:156
qw422016 . N ( ) . S ( ` <div class="row mb-4"><div class="col-12"><h4><span class="me-2"> ` )
//line targetstatus.qtpl:160
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( js . job )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:160
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:160
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ( ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:160
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( js . upCount )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:160
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` / ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:160
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( js . targetsTotal )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:160
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:160
qw422016 . N ( ) . S ( ` up)</span><button type="button" class="btn btn-primary btn-sm me-1"onclick="document.getElementById('table- ` )
//line targetstatus.qtpl:162
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( i )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:162
qw422016 . N ( ) . S ( ` ').style.display='none'">collapse</button><button type="button" class="btn btn-secondary btn-sm me-1"onclick="document.getElementById('table- ` )
//line targetstatus.qtpl:165
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( i )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:165
qw422016 . N ( ) . S ( ` ').style.display='block'">expand</button></h4><div id="table- ` )
//line targetstatus.qtpl:168
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . D ( i )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:168
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` " class="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="scrape target labels">Labels</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 class="list- ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:183
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( i )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:183
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` "> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:184
2022-02-12 16:40:29 +00:00
for _ , ts := range js . targetsStatus {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:186
2022-02-12 16:40:29 +00:00
endpoint := ts . sw . Config . ScrapeURL
targetID := getTargetID ( ts . sw )
lastScrapeTime := ts . getDurationFromLastScrape ( )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:190
2022-04-19 15:26:21 +00:00
if showOnlyUnhealthy && ts . up {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:190
2022-02-12 16:40:29 +00:00
continue
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:190
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:190
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` <tr ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:191
2022-02-12 16:40:29 +00:00
if ! ts . up {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:191
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:191
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` class="alert alert-danger" role="alert" ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:191
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:191
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` ><td class="endpoint"><a href=" ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:192
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( endpoint )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:192
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` " target="_blank"> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:192
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( endpoint )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:192
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` </a> (<a href="target_response?id= ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:193
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( targetID )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:193
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` " target="_blank"title="click to fetch target response on behalf of the scraper">response</a>)</td><td> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:197
2022-02-12 16:40:29 +00:00
if ts . up {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:197
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` UP ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:197
2022-02-12 16:40:29 +00:00
} else {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:197
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` DOWN ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:197
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:197
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` </td><td class="labels"><div title="click to show original labels"onclick="document.getElementById('original_labels_ ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:200
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( targetID )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:200
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ').style.display='block'"> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:201
2022-02-12 16:40:29 +00:00
streamformatLabel ( qw422016 , promrelabel . FinalizeLabels ( nil , ts . sw . Config . Labels ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:201
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` </div><div style="display:none" id="original_labels_ ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:203
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( targetID )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:203
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` "> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:204
2022-02-12 16:40:29 +00:00
streamformatLabel ( qw422016 , ts . sw . Config . OriginalLabels )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:204
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` </div></td><td> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:207
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( ts . scrapesTotal )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:207
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` </td><td> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:208
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( ts . scrapesFailed )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:208
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` </td><td> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:210
2022-02-12 16:40:29 +00:00
if lastScrapeTime < 365 * 24 * time . Hour {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:211
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . FPrec ( lastScrapeTime . Seconds ( ) , 3 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:211
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` s ago ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:212
2022-02-12 16:40:29 +00:00
} else {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:212
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` none ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:214
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:214
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` <td> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:215
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( int ( ts . scrapeDuration ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:215
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ms</td><td> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:216
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . D ( ts . samplesScraped )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:216
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` </td><td> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:217
2022-02-12 16:40:29 +00:00
if ts . err != nil {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:217
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( ts . err . Error ( ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:217
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:217
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` </td></tr> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:219
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:219
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` </tbody></table></div></div></div> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:225
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:225
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` </div></div> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:229
2022-02-12 16:40:29 +00:00
for _ , jobName := range emptyJobs {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:229
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` <div><h4><a> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:232
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( jobName )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:232
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` (0/0 up)</a></h4><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">Labels</th><th scope="col">Last Scrape</th><th scope="col">Scrape Duration</th><th scope="col">Samples Scraped</th><th scope="col">Error</th></tr></thead></table></div> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:248
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:248
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` </main></div></div></body></html> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
func WriteTargetsResponseHTML ( qq422016 qtio422016 . Writer , jts [ ] jobTargetsStatuses , emptyJobs [ ] string , showOnlyUnhealthy bool , endpointSearch , labelSearch string , err error ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
StreamTargetsResponseHTML ( qw422016 , jts , emptyJobs , showOnlyUnhealthy , endpointSearch , labelSearch , err )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
func TargetsResponseHTML ( jts [ ] jobTargetsStatuses , emptyJobs [ ] string , showOnlyUnhealthy bool , endpointSearch , labelSearch string , err error ) string {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
WriteTargetsResponseHTML ( qb422016 , jts , emptyJobs , showOnlyUnhealthy , endpointSearch , labelSearch , err )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
qs422016 := string ( qb422016 . B )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
return qs422016
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:254
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:256
2022-04-19 15:26:21 +00:00
func streamqueryArgs ( qw422016 * qt422016 . Writer , m map [ string ] string ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:258
2022-04-19 15:26:21 +00:00
qa := make ( url . Values , len ( m ) )
for k , v := range m {
qa [ k ] = [ ] string { v }
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:263
2022-04-19 15:26:21 +00:00
qw422016 . E ( ) . S ( qa . Encode ( ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-04-19 15:26:21 +00:00
func writequeryArgs ( qq422016 qtio422016 . Writer , m map [ string ] string ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-04-19 15:26:21 +00:00
streamqueryArgs ( qw422016 , m )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-04-19 15:26:21 +00:00
func queryArgs ( m map [ string ] string ) string {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-04-19 15:26:21 +00:00
writequeryArgs ( qb422016 , m )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
qs422016 := string ( qb422016 . B )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
return qs422016
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:264
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:266
2022-02-12 16:40:29 +00:00
func streamformatLabel ( qw422016 * qt422016 . Writer , labels [ ] prompbmarshal . Label ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:266
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` { ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:268
2022-02-12 16:40:29 +00:00
for i , label := range labels {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:269
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . S ( label . Name )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:269
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` = ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:269
2022-02-12 16:40:29 +00:00
qw422016 . E ( ) . Q ( label . Value )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:270
2022-02-12 16:40:29 +00:00
if i + 1 < len ( labels ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:270
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` , ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:270
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:270
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:271
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:271
2022-02-12 16:40:29 +00:00
qw422016 . N ( ) . S ( ` } ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
func writeformatLabel ( qq422016 qtio422016 . Writer , labels [ ] prompbmarshal . Label ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
streamformatLabel ( qw422016 , labels )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
func formatLabel ( labels [ ] prompbmarshal . Label ) string {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-02-12 16:40:29 +00:00
writeformatLabel ( qb422016 , labels )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-04-19 15:26:21 +00:00
qs422016 := string ( qb422016 . B )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-04-19 15:26:21 +00:00
return qs422016
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:273
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:275
2022-04-19 15:26:21 +00:00
func streamerrorNotification ( qw422016 * qt422016 . Writer , err error ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:275
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-04-20 08:25:04 +00:00
//line targetstatus.qtpl:280
2022-04-19 15:26:21 +00:00
qw422016 . E ( ) . S ( err . Error ( ) )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:280
2022-04-19 15:26:21 +00:00
qw422016 . N ( ) . S ( ` </div></div> ` )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
func writeerrorNotification ( qq422016 qtio422016 . Writer , err error ) {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
qw422016 := qt422016 . AcquireWriter ( qq422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
streamerrorNotification ( qw422016 , err )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
qt422016 . ReleaseWriter ( qw422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
}
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
func errorNotification ( err error ) string {
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
qb422016 := qt422016 . AcquireByteBuffer ( )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-04-19 15:26:21 +00:00
writeerrorNotification ( qb422016 , err )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-02-12 16:40:29 +00:00
qs422016 := string ( qb422016 . B )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-02-12 16:40:29 +00:00
qt422016 . ReleaseByteBuffer ( qb422016 )
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-02-12 16:40:29 +00:00
return qs422016
2022-04-20 08:25:04 +00:00
//line targetstatus.qtpl:283
2022-02-12 16:40:29 +00:00
}