Merge pull request #856 from yeya24/targets-field

Add missing fields to targets API
This commit is contained in:
Björn Rabenstein 2021-04-12 22:30:20 +02:00 committed by GitHub
commit 4a22844c5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 14 deletions

View File

@ -387,9 +387,12 @@ type TargetsResult struct {
type ActiveTarget struct { type ActiveTarget struct {
DiscoveredLabels map[string]string `json:"discoveredLabels"` DiscoveredLabels map[string]string `json:"discoveredLabels"`
Labels model.LabelSet `json:"labels"` Labels model.LabelSet `json:"labels"`
ScrapePool string `json:"scrapePool"`
ScrapeURL string `json:"scrapeUrl"` ScrapeURL string `json:"scrapeUrl"`
GlobalURL string `json:"globalUrl"`
LastError string `json:"lastError"` LastError string `json:"lastError"`
LastScrape time.Time `json:"lastScrape"` LastScrape time.Time `json:"lastScrape"`
LastScrapeDuration float64 `json:"lastScrapeDuration"`
Health HealthStatus `json:"health"` Health HealthStatus `json:"health"`
} }

View File

@ -976,9 +976,12 @@ func TestAPIs(t *testing.T) {
"instance": "127.0.0.1:9090", "instance": "127.0.0.1:9090",
"job": "prometheus", "job": "prometheus",
}, },
"scrapePool": "prometheus",
"scrapeUrl": "http://127.0.0.1:9090", "scrapeUrl": "http://127.0.0.1:9090",
"globalUrl": "http://127.0.0.1:9090",
"lastError": "error while scraping target", "lastError": "error while scraping target",
"lastScrape": testTime.UTC().Format(time.RFC3339Nano), "lastScrape": testTime.UTC().Format(time.RFC3339Nano),
"lastScrapeDuration": 0.001146115,
"health": "up", "health": "up",
}, },
}, },
@ -1006,9 +1009,12 @@ func TestAPIs(t *testing.T) {
"instance": "127.0.0.1:9090", "instance": "127.0.0.1:9090",
"job": "prometheus", "job": "prometheus",
}, },
ScrapePool: "prometheus",
ScrapeURL: "http://127.0.0.1:9090", ScrapeURL: "http://127.0.0.1:9090",
GlobalURL: "http://127.0.0.1:9090",
LastError: "error while scraping target", LastError: "error while scraping target",
LastScrape: testTime.UTC(), LastScrape: testTime.UTC(),
LastScrapeDuration: 0.001146115,
Health: HealthGood, Health: HealthGood,
}, },
}, },