Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit d6b7c64

Browse files
committed
simpler runOnce logic
1 parent 776fbeb commit d6b7c64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scraper.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ func (s *Scraper) Start(ctx context.Context) error {
130130
}
131131

132132
func (s *Scraper) runOnce() {
133+
result := "fail"
133134
if s.scrape() {
134-
scrapeCounter.WithLabelValues("ok").Inc()
135-
} else {
136-
scrapeCounter.WithLabelValues("fail").Inc()
135+
result = "ok"
137136
}
137+
scrapeCounter.WithLabelValues(result).Inc()
138138
}
139139

140140
func (s *Scraper) scrape() bool {

0 commit comments

Comments
 (0)