-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix issue 57 - errors on VCL reload because of duplicated counters #70
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -15,6 +15,11 @@ import ( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/prometheus/client_golang/prometheus" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vbeReload = "VBE.reload_" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vbeReloadLength = len(vbeReload) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DescCache = &descCache{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
descs: make(map[string]*prometheus.Desc), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -88,7 +93,13 @@ func ScrapeVarnishFrom(buf []byte, ch chan<- prometheus.Metric) ([]byte, error) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
countersJSON = metricsJSON | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mostRecentVbeReloadPrefix := findMostRecentVbeReloadPrefix(countersJSON) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for vName, raw := range countersJSON { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if isOutdatedVbe(vName, mostRecentVbeReloadPrefix) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if vName == "timestamp" { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
continue | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -212,6 +223,31 @@ func executeVarnishstat(varnishstatExe string, params ...string) (*bytes.Buffer, | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return buf, cmd.Run() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Returns the most recent prefix for 'VBE.reload_' stats. Empty until first reload. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// 'VBE.reload_2019-08-29T100458' as by varnish_reload_vcl in 4.1+ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// 'VBE.reload_20191014_091124_78599' as by varnishreload in 6+ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func findMostRecentVbeReloadPrefix(countersJSON map[string]interface{}) string { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var mostRecentVbeReloadPrefix string | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for vName, _ := range countersJSON { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Checking only the required ".happy" stat | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if strings.HasPrefix(vName, vbeReload) && strings.HasSuffix(vName, ".happy") { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dotAfterPrefixIndex := vbeReloadLength + strings.Index(vName[vbeReloadLength:], ".") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vbeReloadPrefix := vName[:dotAfterPrefixIndex] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if strings.Compare(vbeReloadPrefix, mostRecentVbeReloadPrefix) > 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mostRecentVbeReloadPrefix = vbeReloadPrefix | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return mostRecentVbeReloadPrefix | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If there is only one set on
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Correct
I don't think this is true. Let me know if I missed something! |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Returns true if the given 'VBE.' statistic refers to an outdated VCL version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func isOutdatedVbe(vName string, mostRecentVbeReloadPrefix string) bool { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return len(mostRecentVbeReloadPrefix) > 0 && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
strings.HasPrefix(vName, "VBE.") && | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
!strings.HasPrefix(vName, mostRecentVbeReloadPrefix) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// varnishVersion | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type varnishVersion struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can do this inline in
findMostRecentVbeReloadPrefix
, no need to make this globals constant.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, it was maybe and excessive attempt of optimization on my side. :D
Done: feb6172