mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
lib/promscrape: show the total number of scrapes and the total number of scrape errors per target at /targets page
This information may be useful when debugging unreliable scrape targets
This commit is contained in:
parent
678b3e71db
commit
d24e5d9efd
4 changed files with 359 additions and 333 deletions
|
@ -16,7 +16,8 @@ sort: 15
|
||||||
* FEATURE: [vmalert](https://docs.victoriametrics.com/vmalert.html): add ability to configure notifiers (e.g. alertmanager) via a file in the way similar to Prometheus. See [these docs](https://docs.victoriametrics.com/vmalert.html#notifier-configuration-file), [this pull request](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/2127).
|
* FEATURE: [vmalert](https://docs.victoriametrics.com/vmalert.html): add ability to configure notifiers (e.g. alertmanager) via a file in the way similar to Prometheus. See [these docs](https://docs.victoriametrics.com/vmalert.html#notifier-configuration-file), [this pull request](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/2127).
|
||||||
* FEATURE: [vmalert](https://docs.victoriametrics.com/vmalert.html): add support for Consul service discovery for notifiers. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1947).
|
* FEATURE: [vmalert](https://docs.victoriametrics.com/vmalert.html): add support for Consul service discovery for notifiers. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1947).
|
||||||
* FEATURE: [vmalert](https://docs.victoriametrics.com/vmalert.html): add support for specifying Basic Auth password for notifiers via a file. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1567).
|
* FEATURE: [vmalert](https://docs.victoriametrics.com/vmalert.html): add support for specifying Basic Auth password for notifiers via a file. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1567).
|
||||||
* FEATURE: [vmagent](https://docs.victoriametrics.com/vmagent.html): provide the ability to fetch target responses on behalf of `vmagent`. Click `fetch response` link for the needed target at `/targets` page. This feature may be useful for debugging responses from targets located in isolated environments.
|
* FEATURE: [vmagent](https://docs.victoriametrics.com/vmagent.html): provide the ability to fetch target responses on behalf of `vmagent` by clicking the `response` link for the needed target at `/targets` page. This feature may be useful for debugging responses from targets located in isolated environments.
|
||||||
|
* FEATURE: [vmagent](https://docs.victoriametrics.com/vmagent.html): show the total number of scrapes and the total number of scrape errors per target at `/targets` page. This information may be useful when debugging unreliable scrape targets.
|
||||||
|
|
||||||
* BUGFIX: return proper results from `highestMax()` function at [Graphite render API](https://docs.victoriametrics.com/#graphite-render-api-usage). Previously it was incorrectly returning timeseries with min peaks instead of max peaks.
|
* BUGFIX: return proper results from `highestMax()` function at [Graphite render API](https://docs.victoriametrics.com/#graphite-render-api-usage). Previously it was incorrectly returning timeseries with min peaks instead of max peaks.
|
||||||
* BUGFIX: properly limit indexdb cache sizes. Previously they could exceed values set via `-memory.allowedPercent` and/or `-memory.allowedBytes` when `indexdb` contained many data parts. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2007).
|
* BUGFIX: properly limit indexdb cache sizes. Previously they could exceed values set via `-memory.allowedPercent` and/or `-memory.allowedBytes` when `indexdb` contained many data parts. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2007).
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
{% import "github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
{% import (
|
||||||
%}
|
"time"
|
||||||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
||||||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promrelabel"
|
||||||
|
) %}
|
||||||
|
|
||||||
{% stripspace %}
|
{% stripspace %}
|
||||||
|
|
||||||
|
@ -9,18 +12,17 @@
|
||||||
job={%q= js.job %} ({%d js.upCount %}/{%d js.targetsTotal %}{% space %}up)
|
job={%q= js.job %} ({%d js.upCount %}/{%d js.targetsTotal %}{% space %}up)
|
||||||
{% newline %}
|
{% newline %}
|
||||||
{% for _, ts := range js.targetsStatus %}
|
{% for _, ts := range js.targetsStatus %}
|
||||||
{% code
|
{%s= "\t" %}
|
||||||
labels := promLabelsString(ts.labels)
|
state={% if ts.up %}up{% else %}down{% endif %},{% space %}
|
||||||
ol := promLabelsString(ts.originalLabels)
|
endpoint={%s= ts.sw.Config.ScrapeURL %},{% space %}
|
||||||
%}
|
labels={%s= promLabelsString(promrelabel.FinalizeLabels(nil, ts.sw.Config.Labels)) %},{% space %}
|
||||||
{%s= "\t" %}state={% if ts.up %}up{% else %}down{% endif %},{% space %}
|
{% if showOriginLabels %}originalLabels={%s= promLabelsString(ts.sw.Config.OriginalLabels) %},{% space %}{% endif %}
|
||||||
endpoint={%s= ts.endpoint %},{% space %}
|
scrapes_total={%d ts.scrapesTotal %},{% space %}
|
||||||
labels={%s= labels %}
|
scrapes_failed={%d ts.scrapesFailed %},{% space %}
|
||||||
{% if showOriginLabels %}, originalLabels={%s= ol %}{% endif %},{% space %}
|
last_scrape={%f.3 ts.getDurationFromLastScrape().Seconds() %}s ago,{% space %}
|
||||||
last_scrape={%f.3 ts.lastScrapeTime.Seconds() %}s ago,{% space %}
|
scrape_duration={%d int(ts.scrapeDuration) %}ms,{% space %}
|
||||||
scrape_duration={%f.3 ts.scrapeDuration.Seconds() %}s,{% space %}
|
|
||||||
samples_scraped={%d ts.samplesScraped %},{% space %}
|
samples_scraped={%d ts.samplesScraped %},{% space %}
|
||||||
error={%q= ts.errMsg %}
|
error={% if ts.err != nil %}{%s= ts.err.Error() %}{% endif %}
|
||||||
{% newline %}
|
{% newline %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -65,33 +67,47 @@ job={%q= jobName %} (0/0 up)
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">Endpoint</th>
|
<th scope="col">Endpoint</th>
|
||||||
<th scope="col">State</th>
|
<th scope="col">State</th>
|
||||||
<th scope="col">Labels</th>
|
<th scope="col" title="scrape target labels">Labels</th>
|
||||||
<th scope="col">Last Scrape</th>
|
<th scope="col" title="total scrapes">Scrapes</th>
|
||||||
<th scope="col">Scrape Duration</th>
|
<th scope="col" title="total scrape errors">Errors</th>
|
||||||
<th scope="col">Samples Scraped</th>
|
<th scope="col" title="the time of the last scrape">Last Scrape</th>
|
||||||
<th scope="col">Error</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>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for j, ts := range js.targetsStatus %}
|
{% for _, ts := range js.targetsStatus %}
|
||||||
|
{% code
|
||||||
|
endpoint := ts.sw.Config.ScrapeURL
|
||||||
|
targetID := getTargetID(ts.sw)
|
||||||
|
lastScrapeTime := ts.getDurationFromLastScrape()
|
||||||
|
%}
|
||||||
{% if onlyUnhealthy && ts.up %}{% continue %}{% endif %}
|
{% if onlyUnhealthy && ts.up %}{% continue %}{% endif %}
|
||||||
<tr {% if !ts.up %}{%space%}class="alert alert-danger" role="alert"{% endif %}>
|
<tr {% if !ts.up %}{%space%}class="alert alert-danger" role="alert"{% endif %}>
|
||||||
<td><a href="{%s ts.endpoint %}">{%s ts.endpoint %}</a> (
|
<td><a href="{%s endpoint %}" target="_blank">{%s endpoint %}</a> (
|
||||||
<a href="target_response?id={%s ts.targetID %}" target="_blank">fetch response</a>
|
<a href="target_response?id={%s targetID %}" target="_blank" title="click to fetch target response on behalf of the scraper">response</a>
|
||||||
)</td>
|
)</td>
|
||||||
<td>{% if ts.up %}UP{% else %}DOWN{% endif %}</td>
|
<td>{% if ts.up %}UP{% else %}DOWN{% endif %}</td>
|
||||||
<td>
|
<td>
|
||||||
<button type="button" class="btn btn-sm btn-outline-info" onclick="document.getElementById('original_labels_{%d i %}_{%d j %}').style.display='block'">show original labels</button>{% space %}
|
<div title="click to show original labels" onclick="document.getElementById('original_labels_{%s targetID %}').style.display='block'">
|
||||||
{%= formatLabel(ts.labels) %}
|
{%= formatLabel(promrelabel.FinalizeLabels(nil, ts.sw.Config.Labels)) %}
|
||||||
<div style="display:none" id="original_labels_{%d i %}_{%d j %}">
|
</div>
|
||||||
<button type="button" class="btn btn-sm btn-outline-info" onclick="document.getElementById('original_labels_{%d i %}_{%d j %}').style.display='none'">hide original labels</button>{% space %}
|
<div style="display:none" id="original_labels_{%s targetID %}">
|
||||||
{%= formatLabel(ts.originalLabels) %}
|
{%= formatLabel(ts.sw.Config.OriginalLabels) %}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>{%f.3 ts.lastScrapeTime.Seconds() %}s ago</td>
|
<td>{%d ts.scrapesTotal %}</td>
|
||||||
<td>{%f.3 ts.scrapeDuration.Seconds() %}s</td>
|
<td>{%d ts.scrapesFailed %}</td>
|
||||||
|
<td>
|
||||||
|
{% if lastScrapeTime < 365*24*time.Hour %}
|
||||||
|
{%f.3 lastScrapeTime.Seconds() %}s ago
|
||||||
|
{% else %}
|
||||||
|
none
|
||||||
|
{% endif %}
|
||||||
|
<td>{%d int(ts.scrapeDuration) %}ms</td>
|
||||||
<td>{%d ts.samplesScraped %}</td>
|
<td>{%d ts.samplesScraped %}</td>
|
||||||
<td>{%s ts.errMsg %}</td>
|
<td>{% if ts.err != nil %}{%s ts.err.Error() %}{% endif %}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -5,53 +5,53 @@
|
||||||
package promscrape
|
package promscrape
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:1
|
//line lib/promscrape/targets_response.qtpl:1
|
||||||
import "github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
import (
|
||||||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
||||||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promrelabel"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:6
|
//line lib/promscrape/targets_response.qtpl:9
|
||||||
import (
|
import (
|
||||||
qtio422016 "io"
|
qtio422016 "io"
|
||||||
|
|
||||||
qt422016 "github.com/valyala/quicktemplate"
|
qt422016 "github.com/valyala/quicktemplate"
|
||||||
)
|
)
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:6
|
//line lib/promscrape/targets_response.qtpl:9
|
||||||
var (
|
var (
|
||||||
_ = qtio422016.Copy
|
_ = qtio422016.Copy
|
||||||
_ = qt422016.AcquireByteBuffer
|
_ = qt422016.AcquireByteBuffer
|
||||||
)
|
)
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:6
|
//line lib/promscrape/targets_response.qtpl:9
|
||||||
func StreamTargetsResponsePlain(qw422016 *qt422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, showOriginLabels bool) {
|
func StreamTargetsResponsePlain(qw422016 *qt422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, showOriginLabels bool) {
|
||||||
//line lib/promscrape/targets_response.qtpl:8
|
//line lib/promscrape/targets_response.qtpl:11
|
||||||
for _, js := range jts {
|
for _, js := range jts {
|
||||||
//line lib/promscrape/targets_response.qtpl:8
|
//line lib/promscrape/targets_response.qtpl:11
|
||||||
qw422016.N().S(`job=`)
|
qw422016.N().S(`job=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:9
|
//line lib/promscrape/targets_response.qtpl:12
|
||||||
qw422016.N().Q(js.job)
|
qw422016.N().Q(js.job)
|
||||||
//line lib/promscrape/targets_response.qtpl:9
|
//line lib/promscrape/targets_response.qtpl:12
|
||||||
qw422016.N().S(`(`)
|
qw422016.N().S(`(`)
|
||||||
//line lib/promscrape/targets_response.qtpl:9
|
//line lib/promscrape/targets_response.qtpl:12
|
||||||
qw422016.N().D(js.upCount)
|
qw422016.N().D(js.upCount)
|
||||||
//line lib/promscrape/targets_response.qtpl:9
|
//line lib/promscrape/targets_response.qtpl:12
|
||||||
qw422016.N().S(`/`)
|
qw422016.N().S(`/`)
|
||||||
//line lib/promscrape/targets_response.qtpl:9
|
//line lib/promscrape/targets_response.qtpl:12
|
||||||
qw422016.N().D(js.targetsTotal)
|
qw422016.N().D(js.targetsTotal)
|
||||||
//line lib/promscrape/targets_response.qtpl:9
|
//line lib/promscrape/targets_response.qtpl:12
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:9
|
//line lib/promscrape/targets_response.qtpl:12
|
||||||
qw422016.N().S(`up)`)
|
qw422016.N().S(`up)`)
|
||||||
//line lib/promscrape/targets_response.qtpl:10
|
//line lib/promscrape/targets_response.qtpl:13
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line lib/promscrape/targets_response.qtpl:11
|
//line lib/promscrape/targets_response.qtpl:14
|
||||||
for _, ts := range js.targetsStatus {
|
for _, ts := range js.targetsStatus {
|
||||||
//line lib/promscrape/targets_response.qtpl:13
|
//line lib/promscrape/targets_response.qtpl:15
|
||||||
labels := promLabelsString(ts.labels)
|
|
||||||
ol := promLabelsString(ts.originalLabels)
|
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:16
|
|
||||||
qw422016.N().S("\t")
|
qw422016.N().S("\t")
|
||||||
//line lib/promscrape/targets_response.qtpl:16
|
//line lib/promscrape/targets_response.qtpl:15
|
||||||
qw422016.N().S(`state=`)
|
qw422016.N().S(`state=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:16
|
//line lib/promscrape/targets_response.qtpl:16
|
||||||
if ts.up {
|
if ts.up {
|
||||||
|
@ -70,7 +70,7 @@ func StreamTargetsResponsePlain(qw422016 *qt422016.Writer, jts []jobTargetsStatu
|
||||||
//line lib/promscrape/targets_response.qtpl:16
|
//line lib/promscrape/targets_response.qtpl:16
|
||||||
qw422016.N().S(`endpoint=`)
|
qw422016.N().S(`endpoint=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:17
|
//line lib/promscrape/targets_response.qtpl:17
|
||||||
qw422016.N().S(ts.endpoint)
|
qw422016.N().S(ts.sw.Config.ScrapeURL)
|
||||||
//line lib/promscrape/targets_response.qtpl:17
|
//line lib/promscrape/targets_response.qtpl:17
|
||||||
qw422016.N().S(`,`)
|
qw422016.N().S(`,`)
|
||||||
//line lib/promscrape/targets_response.qtpl:17
|
//line lib/promscrape/targets_response.qtpl:17
|
||||||
|
@ -78,358 +78,389 @@ func StreamTargetsResponsePlain(qw422016 *qt422016.Writer, jts []jobTargetsStatu
|
||||||
//line lib/promscrape/targets_response.qtpl:17
|
//line lib/promscrape/targets_response.qtpl:17
|
||||||
qw422016.N().S(`labels=`)
|
qw422016.N().S(`labels=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:18
|
//line lib/promscrape/targets_response.qtpl:18
|
||||||
qw422016.N().S(labels)
|
qw422016.N().S(promLabelsString(promrelabel.FinalizeLabels(nil, ts.sw.Config.Labels)))
|
||||||
|
//line lib/promscrape/targets_response.qtpl:18
|
||||||
|
qw422016.N().S(`,`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:18
|
||||||
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:19
|
//line lib/promscrape/targets_response.qtpl:19
|
||||||
if showOriginLabels {
|
if showOriginLabels {
|
||||||
//line lib/promscrape/targets_response.qtpl:19
|
//line lib/promscrape/targets_response.qtpl:19
|
||||||
qw422016.N().S(`, originalLabels=`)
|
qw422016.N().S(`originalLabels=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:19
|
//line lib/promscrape/targets_response.qtpl:19
|
||||||
qw422016.N().S(ol)
|
qw422016.N().S(promLabelsString(ts.sw.Config.OriginalLabels))
|
||||||
|
//line lib/promscrape/targets_response.qtpl:19
|
||||||
|
qw422016.N().S(`,`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:19
|
||||||
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:19
|
//line lib/promscrape/targets_response.qtpl:19
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:19
|
//line lib/promscrape/targets_response.qtpl:19
|
||||||
|
qw422016.N().S(`scrapes_total=`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:20
|
||||||
|
qw422016.N().D(ts.scrapesTotal)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:20
|
||||||
qw422016.N().S(`,`)
|
qw422016.N().S(`,`)
|
||||||
//line lib/promscrape/targets_response.qtpl:19
|
//line lib/promscrape/targets_response.qtpl:20
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:19
|
//line lib/promscrape/targets_response.qtpl:20
|
||||||
|
qw422016.N().S(`scrapes_failed=`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:21
|
||||||
|
qw422016.N().D(ts.scrapesFailed)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:21
|
||||||
|
qw422016.N().S(`,`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:21
|
||||||
|
qw422016.N().S(` `)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:21
|
||||||
qw422016.N().S(`last_scrape=`)
|
qw422016.N().S(`last_scrape=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:20
|
//line lib/promscrape/targets_response.qtpl:22
|
||||||
qw422016.N().FPrec(ts.lastScrapeTime.Seconds(), 3)
|
qw422016.N().FPrec(ts.getDurationFromLastScrape().Seconds(), 3)
|
||||||
//line lib/promscrape/targets_response.qtpl:20
|
//line lib/promscrape/targets_response.qtpl:22
|
||||||
qw422016.N().S(`s ago,`)
|
qw422016.N().S(`s ago,`)
|
||||||
//line lib/promscrape/targets_response.qtpl:20
|
//line lib/promscrape/targets_response.qtpl:22
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:20
|
//line lib/promscrape/targets_response.qtpl:22
|
||||||
qw422016.N().S(`scrape_duration=`)
|
qw422016.N().S(`scrape_duration=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:21
|
|
||||||
qw422016.N().FPrec(ts.scrapeDuration.Seconds(), 3)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:21
|
|
||||||
qw422016.N().S(`s,`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:21
|
|
||||||
qw422016.N().S(` `)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:21
|
|
||||||
qw422016.N().S(`samples_scraped=`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:22
|
|
||||||
qw422016.N().D(ts.samplesScraped)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:22
|
|
||||||
qw422016.N().S(`,`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:22
|
|
||||||
qw422016.N().S(` `)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:22
|
|
||||||
qw422016.N().S(`error=`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:23
|
//line lib/promscrape/targets_response.qtpl:23
|
||||||
qw422016.N().Q(ts.errMsg)
|
qw422016.N().D(int(ts.scrapeDuration))
|
||||||
|
//line lib/promscrape/targets_response.qtpl:23
|
||||||
|
qw422016.N().S(`ms,`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:23
|
||||||
|
qw422016.N().S(` `)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:23
|
||||||
|
qw422016.N().S(`samples_scraped=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:24
|
//line lib/promscrape/targets_response.qtpl:24
|
||||||
|
qw422016.N().D(ts.samplesScraped)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:24
|
||||||
|
qw422016.N().S(`,`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:24
|
||||||
|
qw422016.N().S(` `)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:24
|
||||||
|
qw422016.N().S(`error=`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:25
|
||||||
|
if ts.err != nil {
|
||||||
|
//line lib/promscrape/targets_response.qtpl:25
|
||||||
|
qw422016.N().S(ts.err.Error())
|
||||||
|
//line lib/promscrape/targets_response.qtpl:25
|
||||||
|
}
|
||||||
|
//line lib/promscrape/targets_response.qtpl:26
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line lib/promscrape/targets_response.qtpl:25
|
//line lib/promscrape/targets_response.qtpl:27
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:26
|
//line lib/promscrape/targets_response.qtpl:28
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:28
|
|
||||||
for _, jobName := range emptyJobs {
|
|
||||||
//line lib/promscrape/targets_response.qtpl:28
|
|
||||||
qw422016.N().S(`job=`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:29
|
|
||||||
qw422016.N().Q(jobName)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:29
|
|
||||||
qw422016.N().S(`(0/0 up)`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:30
|
//line lib/promscrape/targets_response.qtpl:30
|
||||||
|
for _, jobName := range emptyJobs {
|
||||||
|
//line lib/promscrape/targets_response.qtpl:30
|
||||||
|
qw422016.N().S(`job=`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:31
|
||||||
|
qw422016.N().Q(jobName)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:31
|
||||||
|
qw422016.N().S(`(0/0 up)`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:32
|
||||||
qw422016.N().S(`
|
qw422016.N().S(`
|
||||||
`)
|
`)
|
||||||
//line lib/promscrape/targets_response.qtpl:31
|
|
||||||
}
|
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:33
|
||||||
|
}
|
||||||
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
}
|
}
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
func WriteTargetsResponsePlain(qq422016 qtio422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, showOriginLabels bool) {
|
func WriteTargetsResponsePlain(qq422016 qtio422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, showOriginLabels bool) {
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
StreamTargetsResponsePlain(qw422016, jts, emptyJobs, showOriginLabels)
|
StreamTargetsResponsePlain(qw422016, jts, emptyJobs, showOriginLabels)
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
}
|
}
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
func TargetsResponsePlain(jts []jobTargetsStatuses, emptyJobs []string, showOriginLabels bool) string {
|
func TargetsResponsePlain(jts []jobTargetsStatuses, emptyJobs []string, showOriginLabels bool) string {
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
WriteTargetsResponsePlain(qb422016, jts, emptyJobs, showOriginLabels)
|
WriteTargetsResponsePlain(qb422016, jts, emptyJobs, showOriginLabels)
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
return qs422016
|
return qs422016
|
||||||
//line lib/promscrape/targets_response.qtpl:33
|
//line lib/promscrape/targets_response.qtpl:35
|
||||||
}
|
}
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:35
|
//line lib/promscrape/targets_response.qtpl:37
|
||||||
func StreamTargetsResponseHTML(qw422016 *qt422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, onlyUnhealthy bool) {
|
func StreamTargetsResponseHTML(qw422016 *qt422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, onlyUnhealthy bool) {
|
||||||
//line lib/promscrape/targets_response.qtpl:35
|
//line lib/promscrape/targets_response.qtpl:37
|
||||||
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></head><body class="m-3"><h1>Scrape targets</h1><div><button type="button" class="btn`)
|
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></head><body class="m-3"><h1>Scrape targets</h1><div><button type="button" class="btn`)
|
||||||
//line lib/promscrape/targets_response.qtpl:47
|
//line lib/promscrape/targets_response.qtpl:49
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:47
|
//line lib/promscrape/targets_response.qtpl:49
|
||||||
if !onlyUnhealthy {
|
if !onlyUnhealthy {
|
||||||
//line lib/promscrape/targets_response.qtpl:47
|
//line lib/promscrape/targets_response.qtpl:49
|
||||||
qw422016.N().S(`btn-primary`)
|
qw422016.N().S(`btn-primary`)
|
||||||
//line lib/promscrape/targets_response.qtpl:47
|
//line lib/promscrape/targets_response.qtpl:49
|
||||||
} else {
|
} else {
|
||||||
//line lib/promscrape/targets_response.qtpl:47
|
//line lib/promscrape/targets_response.qtpl:49
|
||||||
qw422016.N().S(`btn-secondary`)
|
qw422016.N().S(`btn-secondary`)
|
||||||
//line lib/promscrape/targets_response.qtpl:47
|
//line lib/promscrape/targets_response.qtpl:49
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:47
|
//line lib/promscrape/targets_response.qtpl:49
|
||||||
qw422016.N().S(`" onclick="location.href='targets'">All</button><button type="button" class="btn`)
|
qw422016.N().S(`" onclick="location.href='targets'">All</button><button type="button" class="btn`)
|
||||||
//line lib/promscrape/targets_response.qtpl:50
|
//line lib/promscrape/targets_response.qtpl:52
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:50
|
//line lib/promscrape/targets_response.qtpl:52
|
||||||
if onlyUnhealthy {
|
if onlyUnhealthy {
|
||||||
//line lib/promscrape/targets_response.qtpl:50
|
//line lib/promscrape/targets_response.qtpl:52
|
||||||
qw422016.N().S(`btn-primary`)
|
qw422016.N().S(`btn-primary`)
|
||||||
//line lib/promscrape/targets_response.qtpl:50
|
//line lib/promscrape/targets_response.qtpl:52
|
||||||
} else {
|
} else {
|
||||||
//line lib/promscrape/targets_response.qtpl:50
|
//line lib/promscrape/targets_response.qtpl:52
|
||||||
qw422016.N().S(`btn-secondary`)
|
qw422016.N().S(`btn-secondary`)
|
||||||
//line lib/promscrape/targets_response.qtpl:50
|
//line lib/promscrape/targets_response.qtpl:52
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:50
|
//line lib/promscrape/targets_response.qtpl:52
|
||||||
qw422016.N().S(`" onclick="location.href='targets?show_only_unhealthy=true'">Unhealthy</button></div>`)
|
qw422016.N().S(`" onclick="location.href='targets?show_only_unhealthy=true'">Unhealthy</button></div>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:54
|
//line lib/promscrape/targets_response.qtpl:56
|
||||||
for i, js := range jts {
|
for i, js := range jts {
|
||||||
//line lib/promscrape/targets_response.qtpl:55
|
//line lib/promscrape/targets_response.qtpl:57
|
||||||
if onlyUnhealthy && js.upCount == js.targetsTotal {
|
if onlyUnhealthy && js.upCount == js.targetsTotal {
|
||||||
//line lib/promscrape/targets_response.qtpl:55
|
//line lib/promscrape/targets_response.qtpl:57
|
||||||
continue
|
continue
|
||||||
//line lib/promscrape/targets_response.qtpl:55
|
//line lib/promscrape/targets_response.qtpl:57
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:55
|
//line lib/promscrape/targets_response.qtpl:57
|
||||||
qw422016.N().S(`<div><h4>`)
|
qw422016.N().S(`<div><h4>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.E().S(js.job)
|
qw422016.E().S(js.job)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.N().S(`(`)
|
qw422016.N().S(`(`)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.N().D(js.upCount)
|
qw422016.N().D(js.upCount)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.N().S(`/`)
|
qw422016.N().S(`/`)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.N().D(js.targetsTotal)
|
qw422016.N().D(js.targetsTotal)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:58
|
//line lib/promscrape/targets_response.qtpl:60
|
||||||
qw422016.N().S(`up)<button type="button" class="btn btn-primary" onclick="document.getElementById('table-`)
|
qw422016.N().S(`up)<button type="button" class="btn btn-primary" onclick="document.getElementById('table-`)
|
||||||
//line lib/promscrape/targets_response.qtpl:59
|
//line lib/promscrape/targets_response.qtpl:61
|
||||||
qw422016.N().D(i)
|
qw422016.N().D(i)
|
||||||
//line lib/promscrape/targets_response.qtpl:59
|
//line lib/promscrape/targets_response.qtpl:61
|
||||||
qw422016.N().S(`').style.display='none'">collapse</button><button type="button" class="btn btn-secondary" onclick="document.getElementById('table-`)
|
qw422016.N().S(`').style.display='none'">collapse</button><button type="button" class="btn btn-secondary" onclick="document.getElementById('table-`)
|
||||||
//line lib/promscrape/targets_response.qtpl:60
|
//line lib/promscrape/targets_response.qtpl:62
|
||||||
qw422016.N().D(i)
|
qw422016.N().D(i)
|
||||||
//line lib/promscrape/targets_response.qtpl:60
|
//line lib/promscrape/targets_response.qtpl:62
|
||||||
qw422016.N().S(`').style.display='block'">expand</button></h4><div id="table-`)
|
qw422016.N().S(`').style.display='block'">expand</button></h4><div id="table-`)
|
||||||
//line lib/promscrape/targets_response.qtpl:62
|
//line lib/promscrape/targets_response.qtpl:64
|
||||||
qw422016.N().D(i)
|
qw422016.N().D(i)
|
||||||
//line lib/promscrape/targets_response.qtpl:62
|
//line lib/promscrape/targets_response.qtpl:64
|
||||||
qw422016.N().S(`"><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><tbody>`)
|
qw422016.N().S(`"><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>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:76
|
//line lib/promscrape/targets_response.qtpl:80
|
||||||
for j, ts := range js.targetsStatus {
|
for _, ts := range js.targetsStatus {
|
||||||
//line lib/promscrape/targets_response.qtpl:77
|
//line lib/promscrape/targets_response.qtpl:82
|
||||||
|
endpoint := ts.sw.Config.ScrapeURL
|
||||||
|
targetID := getTargetID(ts.sw)
|
||||||
|
lastScrapeTime := ts.getDurationFromLastScrape()
|
||||||
|
|
||||||
|
//line lib/promscrape/targets_response.qtpl:86
|
||||||
if onlyUnhealthy && ts.up {
|
if onlyUnhealthy && ts.up {
|
||||||
//line lib/promscrape/targets_response.qtpl:77
|
//line lib/promscrape/targets_response.qtpl:86
|
||||||
continue
|
continue
|
||||||
//line lib/promscrape/targets_response.qtpl:77
|
//line lib/promscrape/targets_response.qtpl:86
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:77
|
//line lib/promscrape/targets_response.qtpl:86
|
||||||
qw422016.N().S(`<tr`)
|
qw422016.N().S(`<tr`)
|
||||||
//line lib/promscrape/targets_response.qtpl:78
|
//line lib/promscrape/targets_response.qtpl:87
|
||||||
if !ts.up {
|
if !ts.up {
|
||||||
//line lib/promscrape/targets_response.qtpl:78
|
//line lib/promscrape/targets_response.qtpl:87
|
||||||
qw422016.N().S(` `)
|
qw422016.N().S(` `)
|
||||||
//line lib/promscrape/targets_response.qtpl:78
|
//line lib/promscrape/targets_response.qtpl:87
|
||||||
qw422016.N().S(`class="alert alert-danger" role="alert"`)
|
qw422016.N().S(`class="alert alert-danger" role="alert"`)
|
||||||
//line lib/promscrape/targets_response.qtpl:78
|
//line lib/promscrape/targets_response.qtpl:87
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:78
|
//line lib/promscrape/targets_response.qtpl:87
|
||||||
qw422016.N().S(`><td><a href="`)
|
qw422016.N().S(`><td><a href="`)
|
||||||
//line lib/promscrape/targets_response.qtpl:79
|
//line lib/promscrape/targets_response.qtpl:88
|
||||||
qw422016.E().S(ts.endpoint)
|
qw422016.E().S(endpoint)
|
||||||
//line lib/promscrape/targets_response.qtpl:79
|
//line lib/promscrape/targets_response.qtpl:88
|
||||||
qw422016.N().S(`">`)
|
qw422016.N().S(`" target="_blank">`)
|
||||||
//line lib/promscrape/targets_response.qtpl:79
|
//line lib/promscrape/targets_response.qtpl:88
|
||||||
qw422016.E().S(ts.endpoint)
|
qw422016.E().S(endpoint)
|
||||||
//line lib/promscrape/targets_response.qtpl:79
|
//line lib/promscrape/targets_response.qtpl:88
|
||||||
qw422016.N().S(`</a> (<a href="target_response?id=`)
|
qw422016.N().S(`</a> (<a href="target_response?id=`)
|
||||||
//line lib/promscrape/targets_response.qtpl:80
|
//line lib/promscrape/targets_response.qtpl:89
|
||||||
qw422016.E().S(ts.targetID)
|
qw422016.E().S(targetID)
|
||||||
//line lib/promscrape/targets_response.qtpl:80
|
//line lib/promscrape/targets_response.qtpl:89
|
||||||
qw422016.N().S(`" target="_blank">fetch response</a>)</td><td>`)
|
qw422016.N().S(`" target="_blank" title="click to fetch target response on behalf of the scraper">response</a>)</td><td>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:82
|
//line lib/promscrape/targets_response.qtpl:91
|
||||||
if ts.up {
|
if ts.up {
|
||||||
//line lib/promscrape/targets_response.qtpl:82
|
//line lib/promscrape/targets_response.qtpl:91
|
||||||
qw422016.N().S(`UP`)
|
qw422016.N().S(`UP`)
|
||||||
//line lib/promscrape/targets_response.qtpl:82
|
//line lib/promscrape/targets_response.qtpl:91
|
||||||
} else {
|
} else {
|
||||||
//line lib/promscrape/targets_response.qtpl:82
|
//line lib/promscrape/targets_response.qtpl:91
|
||||||
qw422016.N().S(`DOWN`)
|
qw422016.N().S(`DOWN`)
|
||||||
//line lib/promscrape/targets_response.qtpl:82
|
//line lib/promscrape/targets_response.qtpl:91
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:82
|
//line lib/promscrape/targets_response.qtpl:91
|
||||||
qw422016.N().S(`</td><td><button type="button" class="btn btn-sm btn-outline-info" onclick="document.getElementById('original_labels_`)
|
qw422016.N().S(`</td><td><div title="click to show original labels" onclick="document.getElementById('original_labels_`)
|
||||||
//line lib/promscrape/targets_response.qtpl:84
|
//line lib/promscrape/targets_response.qtpl:93
|
||||||
qw422016.N().D(i)
|
qw422016.E().S(targetID)
|
||||||
//line lib/promscrape/targets_response.qtpl:84
|
//line lib/promscrape/targets_response.qtpl:93
|
||||||
qw422016.N().S(`_`)
|
qw422016.N().S(`').style.display='block'">`)
|
||||||
//line lib/promscrape/targets_response.qtpl:84
|
//line lib/promscrape/targets_response.qtpl:94
|
||||||
qw422016.N().D(j)
|
streamformatLabel(qw422016, promrelabel.FinalizeLabels(nil, ts.sw.Config.Labels))
|
||||||
//line lib/promscrape/targets_response.qtpl:84
|
//line lib/promscrape/targets_response.qtpl:94
|
||||||
qw422016.N().S(`').style.display='block'">show original labels</button>`)
|
qw422016.N().S(`</div><div style="display:none" id="original_labels_`)
|
||||||
//line lib/promscrape/targets_response.qtpl:84
|
//line lib/promscrape/targets_response.qtpl:96
|
||||||
qw422016.N().S(` `)
|
qw422016.E().S(targetID)
|
||||||
//line lib/promscrape/targets_response.qtpl:85
|
//line lib/promscrape/targets_response.qtpl:96
|
||||||
streamformatLabel(qw422016, ts.labels)
|
qw422016.N().S(`">`)
|
||||||
//line lib/promscrape/targets_response.qtpl:85
|
//line lib/promscrape/targets_response.qtpl:97
|
||||||
qw422016.N().S(`<div style="display:none" id="original_labels_`)
|
streamformatLabel(qw422016, ts.sw.Config.OriginalLabels)
|
||||||
//line lib/promscrape/targets_response.qtpl:86
|
//line lib/promscrape/targets_response.qtpl:97
|
||||||
qw422016.N().D(i)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:86
|
|
||||||
qw422016.N().S(`_`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:86
|
|
||||||
qw422016.N().D(j)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:86
|
|
||||||
qw422016.N().S(`"><button type="button" class="btn btn-sm btn-outline-info" onclick="document.getElementById('original_labels_`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:87
|
|
||||||
qw422016.N().D(i)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:87
|
|
||||||
qw422016.N().S(`_`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:87
|
|
||||||
qw422016.N().D(j)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:87
|
|
||||||
qw422016.N().S(`').style.display='none'">hide original labels</button>`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:87
|
|
||||||
qw422016.N().S(` `)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:88
|
|
||||||
streamformatLabel(qw422016, ts.originalLabels)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:88
|
|
||||||
qw422016.N().S(`</div></td><td>`)
|
qw422016.N().S(`</div></td><td>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:91
|
//line lib/promscrape/targets_response.qtpl:100
|
||||||
qw422016.N().FPrec(ts.lastScrapeTime.Seconds(), 3)
|
qw422016.N().D(ts.scrapesTotal)
|
||||||
//line lib/promscrape/targets_response.qtpl:91
|
//line lib/promscrape/targets_response.qtpl:100
|
||||||
qw422016.N().S(`s ago</td><td>`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:92
|
|
||||||
qw422016.N().FPrec(ts.scrapeDuration.Seconds(), 3)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:92
|
|
||||||
qw422016.N().S(`s</td><td>`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:93
|
|
||||||
qw422016.N().D(ts.samplesScraped)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:93
|
|
||||||
qw422016.N().S(`</td><td>`)
|
qw422016.N().S(`</td><td>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:94
|
|
||||||
qw422016.E().S(ts.errMsg)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:94
|
|
||||||
qw422016.N().S(`</td></tr>`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:96
|
|
||||||
}
|
|
||||||
//line lib/promscrape/targets_response.qtpl:96
|
|
||||||
qw422016.N().S(`</tbody></table></div></div>`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:101
|
//line lib/promscrape/targets_response.qtpl:101
|
||||||
}
|
qw422016.N().D(ts.scrapesFailed)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:101
|
||||||
|
qw422016.N().S(`</td><td>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:103
|
//line lib/promscrape/targets_response.qtpl:103
|
||||||
for _, jobName := range emptyJobs {
|
if lastScrapeTime < 365*24*time.Hour {
|
||||||
//line lib/promscrape/targets_response.qtpl:103
|
//line lib/promscrape/targets_response.qtpl:104
|
||||||
qw422016.N().S(`<div><h4><a>`)
|
qw422016.N().FPrec(lastScrapeTime.Seconds(), 3)
|
||||||
//line lib/promscrape/targets_response.qtpl:106
|
//line lib/promscrape/targets_response.qtpl:104
|
||||||
qw422016.E().S(jobName)
|
qw422016.N().S(`s ago`)
|
||||||
//line lib/promscrape/targets_response.qtpl:106
|
//line lib/promscrape/targets_response.qtpl:105
|
||||||
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>`)
|
} else {
|
||||||
//line lib/promscrape/targets_response.qtpl:122
|
//line lib/promscrape/targets_response.qtpl:105
|
||||||
}
|
qw422016.N().S(`none`)
|
||||||
//line lib/promscrape/targets_response.qtpl:122
|
//line lib/promscrape/targets_response.qtpl:107
|
||||||
qw422016.N().S(`</body></html>`)
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
//line lib/promscrape/targets_response.qtpl:107
|
||||||
}
|
qw422016.N().S(`<td>`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:108
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
qw422016.N().D(int(ts.scrapeDuration))
|
||||||
func WriteTargetsResponseHTML(qq422016 qtio422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, onlyUnhealthy bool) {
|
//line lib/promscrape/targets_response.qtpl:108
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
qw422016.N().S(`ms</td><td>`)
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
//line lib/promscrape/targets_response.qtpl:109
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
qw422016.N().D(ts.samplesScraped)
|
||||||
StreamTargetsResponseHTML(qw422016, jts, emptyJobs, onlyUnhealthy)
|
//line lib/promscrape/targets_response.qtpl:109
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
qw422016.N().S(`</td><td>`)
|
||||||
qt422016.ReleaseWriter(qw422016)
|
//line lib/promscrape/targets_response.qtpl:110
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
if ts.err != nil {
|
||||||
}
|
//line lib/promscrape/targets_response.qtpl:110
|
||||||
|
qw422016.E().S(ts.err.Error())
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
//line lib/promscrape/targets_response.qtpl:110
|
||||||
func TargetsResponseHTML(jts []jobTargetsStatuses, emptyJobs []string, onlyUnhealthy bool) string {
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
//line lib/promscrape/targets_response.qtpl:110
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qw422016.N().S(`</td></tr>`)
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
//line lib/promscrape/targets_response.qtpl:112
|
||||||
WriteTargetsResponseHTML(qb422016, jts, emptyJobs, onlyUnhealthy)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
|
||||||
qs422016 := string(qb422016.B)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
|
||||||
return qs422016
|
|
||||||
//line lib/promscrape/targets_response.qtpl:125
|
|
||||||
}
|
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:127
|
|
||||||
func streamformatLabel(qw422016 *qt422016.Writer, labels []prompbmarshal.Label) {
|
|
||||||
//line lib/promscrape/targets_response.qtpl:127
|
|
||||||
qw422016.N().S(`{`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:129
|
|
||||||
for i, label := range labels {
|
|
||||||
//line lib/promscrape/targets_response.qtpl:130
|
|
||||||
qw422016.E().S(label.Name)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:130
|
|
||||||
qw422016.N().S(`=`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:130
|
|
||||||
qw422016.E().Q(label.Value)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:131
|
|
||||||
if i+1 < len(labels) {
|
|
||||||
//line lib/promscrape/targets_response.qtpl:131
|
|
||||||
qw422016.N().S(`,`)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:131
|
|
||||||
qw422016.N().S(` `)
|
|
||||||
//line lib/promscrape/targets_response.qtpl:131
|
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:132
|
//line lib/promscrape/targets_response.qtpl:112
|
||||||
|
qw422016.N().S(`</tbody></table></div></div>`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:117
|
||||||
}
|
}
|
||||||
//line lib/promscrape/targets_response.qtpl:132
|
//line lib/promscrape/targets_response.qtpl:119
|
||||||
qw422016.N().S(`}`)
|
for _, jobName := range emptyJobs {
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:119
|
||||||
|
qw422016.N().S(`<div><h4><a>`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:122
|
||||||
|
qw422016.E().S(jobName)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:122
|
||||||
|
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>`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:138
|
||||||
|
}
|
||||||
|
//line lib/promscrape/targets_response.qtpl:138
|
||||||
|
qw422016.N().S(`</body></html>`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
}
|
}
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
func writeformatLabel(qq422016 qtio422016.Writer, labels []prompbmarshal.Label) {
|
func WriteTargetsResponseHTML(qq422016 qtio422016.Writer, jts []jobTargetsStatuses, emptyJobs []string, onlyUnhealthy bool) {
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
qw422016 := qt422016.AcquireWriter(qq422016)
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
streamformatLabel(qw422016, labels)
|
StreamTargetsResponseHTML(qw422016, jts, emptyJobs, onlyUnhealthy)
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
qt422016.ReleaseWriter(qw422016)
|
qt422016.ReleaseWriter(qw422016)
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
}
|
}
|
||||||
|
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
func formatLabel(labels []prompbmarshal.Label) string {
|
func TargetsResponseHTML(jts []jobTargetsStatuses, emptyJobs []string, onlyUnhealthy bool) string {
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
qb422016 := qt422016.AcquireByteBuffer()
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
writeformatLabel(qb422016, labels)
|
WriteTargetsResponseHTML(qb422016, jts, emptyJobs, onlyUnhealthy)
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
qs422016 := string(qb422016.B)
|
qs422016 := string(qb422016.B)
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
qt422016.ReleaseByteBuffer(qb422016)
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
return qs422016
|
return qs422016
|
||||||
//line lib/promscrape/targets_response.qtpl:134
|
//line lib/promscrape/targets_response.qtpl:141
|
||||||
|
}
|
||||||
|
|
||||||
|
//line lib/promscrape/targets_response.qtpl:143
|
||||||
|
func streamformatLabel(qw422016 *qt422016.Writer, labels []prompbmarshal.Label) {
|
||||||
|
//line lib/promscrape/targets_response.qtpl:143
|
||||||
|
qw422016.N().S(`{`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:145
|
||||||
|
for i, label := range labels {
|
||||||
|
//line lib/promscrape/targets_response.qtpl:146
|
||||||
|
qw422016.E().S(label.Name)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:146
|
||||||
|
qw422016.N().S(`=`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:146
|
||||||
|
qw422016.E().Q(label.Value)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:147
|
||||||
|
if i+1 < len(labels) {
|
||||||
|
//line lib/promscrape/targets_response.qtpl:147
|
||||||
|
qw422016.N().S(`,`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:147
|
||||||
|
qw422016.N().S(` `)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:147
|
||||||
|
}
|
||||||
|
//line lib/promscrape/targets_response.qtpl:148
|
||||||
|
}
|
||||||
|
//line lib/promscrape/targets_response.qtpl:148
|
||||||
|
qw422016.N().S(`}`)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
}
|
||||||
|
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
func writeformatLabel(qq422016 qtio422016.Writer, labels []prompbmarshal.Label) {
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
streamformatLabel(qw422016, labels)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
qt422016.ReleaseWriter(qw422016)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
}
|
||||||
|
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
func formatLabel(labels []prompbmarshal.Label) string {
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
qb422016 := qt422016.AcquireByteBuffer()
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
writeformatLabel(qb422016, labels)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
qs422016 := string(qb422016.B)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
qt422016.ReleaseByteBuffer(qb422016)
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
|
return qs422016
|
||||||
|
//line lib/promscrape/targets_response.qtpl:150
|
||||||
}
|
}
|
||||||
|
|
|
@ -126,6 +126,10 @@ func (tsm *targetStatusMap) Update(sw *scrapeWork, group string, up bool, scrape
|
||||||
ts.scrapeTime = scrapeTime
|
ts.scrapeTime = scrapeTime
|
||||||
ts.scrapeDuration = scrapeDuration
|
ts.scrapeDuration = scrapeDuration
|
||||||
ts.samplesScraped = samplesScraped
|
ts.samplesScraped = samplesScraped
|
||||||
|
ts.scrapesTotal++
|
||||||
|
if !up {
|
||||||
|
ts.scrapesFailed++
|
||||||
|
}
|
||||||
ts.err = err
|
ts.err = err
|
||||||
tsm.mu.Unlock()
|
tsm.mu.Unlock()
|
||||||
}
|
}
|
||||||
|
@ -227,6 +231,8 @@ type targetStatus struct {
|
||||||
scrapeTime int64
|
scrapeTime int64
|
||||||
scrapeDuration int64
|
scrapeDuration int64
|
||||||
samplesScraped int
|
samplesScraped int
|
||||||
|
scrapesTotal int
|
||||||
|
scrapesFailed int
|
||||||
err error
|
err error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -305,23 +311,11 @@ var droppedTargetsMap = &droppedTargets{
|
||||||
m: make(map[string]droppedTarget),
|
m: make(map[string]droppedTarget),
|
||||||
}
|
}
|
||||||
|
|
||||||
type jobTargetStatus struct {
|
|
||||||
up bool
|
|
||||||
endpoint string
|
|
||||||
targetID string
|
|
||||||
labels []prompbmarshal.Label
|
|
||||||
originalLabels []prompbmarshal.Label
|
|
||||||
lastScrapeTime time.Duration
|
|
||||||
scrapeDuration time.Duration
|
|
||||||
samplesScraped int
|
|
||||||
errMsg string
|
|
||||||
}
|
|
||||||
|
|
||||||
type jobTargetsStatuses struct {
|
type jobTargetsStatuses struct {
|
||||||
job string
|
job string
|
||||||
upCount int
|
upCount int
|
||||||
targetsTotal int
|
targetsTotal int
|
||||||
targetsStatus []jobTargetStatus
|
targetsStatus []targetStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tsm *targetStatusMap) getTargetsStatusByJob() ([]jobTargetsStatuses, []string) {
|
func (tsm *targetStatusMap) getTargetsStatusByJob() ([]jobTargetsStatuses, []string) {
|
||||||
|
@ -340,28 +334,12 @@ func (tsm *targetStatusMap) getTargetsStatusByJob() ([]jobTargetsStatuses, []str
|
||||||
return statuses[i].sw.Config.ScrapeURL < statuses[j].sw.Config.ScrapeURL
|
return statuses[i].sw.Config.ScrapeURL < statuses[j].sw.Config.ScrapeURL
|
||||||
})
|
})
|
||||||
ups := 0
|
ups := 0
|
||||||
var targetsStatuses []jobTargetStatus
|
var targetsStatuses []targetStatus
|
||||||
for _, ts := range statuses {
|
for _, ts := range statuses {
|
||||||
if ts.up {
|
if ts.up {
|
||||||
ups++
|
ups++
|
||||||
}
|
}
|
||||||
}
|
targetsStatuses = append(targetsStatuses, ts)
|
||||||
for _, st := range statuses {
|
|
||||||
errMsg := ""
|
|
||||||
if st.err != nil {
|
|
||||||
errMsg = st.err.Error()
|
|
||||||
}
|
|
||||||
targetsStatuses = append(targetsStatuses, jobTargetStatus{
|
|
||||||
up: st.up,
|
|
||||||
endpoint: st.sw.Config.ScrapeURL,
|
|
||||||
targetID: getTargetID(st.sw),
|
|
||||||
labels: promrelabel.FinalizeLabels(nil, st.sw.Config.Labels),
|
|
||||||
originalLabels: st.sw.Config.OriginalLabels,
|
|
||||||
lastScrapeTime: st.getDurationFromLastScrape(),
|
|
||||||
scrapeDuration: time.Duration(st.scrapeDuration) * time.Millisecond,
|
|
||||||
samplesScraped: st.samplesScraped,
|
|
||||||
errMsg: errMsg,
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
jts = append(jts, jobTargetsStatuses{
|
jts = append(jts, jobTargetsStatuses{
|
||||||
job: job,
|
job: job,
|
||||||
|
|
Loading…
Reference in a new issue