Skip to content
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

caches metric can be missalloccated too #54

Merged
merged 5 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions cmd/bucky/inconsistent.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import (

// import "github.com/go-graphite/buckytools/hashing"

var inconsistentFilterCacheMetrics bool
var inconsistentGoCarbonMetricsPrefix string
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe just goCarbonMetricsPrefix ?


func init() {
usage := "[options]"
short := "Find metrics not in correct locations."
Expand All @@ -36,6 +39,8 @@ Use bucky rebalance to correct.`
"Force the remote daemons to rebuild their cache.")
c.Flag.BoolVar(&listRegexMode, "r", false,
"Filter by a regular expression.")
c.Flag.BoolVar(&inconsistentFilterCacheMetrics, "filter-cache-metrics", true, "Filter go-carbon inconsistent metrics.")
c.Flag.StringVar(&inconsistentGoCarbonMetricsPrefix, "go-carbon-prefix", "carbon.agents.", "go-carbon metric prefix")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

c.Flag.StringVar(&goCarbonMetricsPrefix, "go-carbon-prefix", "carbon.agents.", "go-carbon metric prefix")

}

func InconsistentMetrics(hostports []string, regex string) (map[string][]string, error) {
Expand Down Expand Up @@ -63,9 +68,9 @@ func InconsistentMetrics(hostports []string, regex string) (map[string][]string,
}

for _, m := range metrics {
if strings.HasPrefix(m, "carbon.agents.") {
// These metrics are inserted into the stream after hashing
// is done. They will never be consistent and shouldn't be.
if inconsistentFilterCacheMetrics && strings.HasPrefix(m, inconsistentGoCarbonMetricsPrefix) {
// Graphite cache metrics (usually "carbon.agents.*" metrics) can be inserted into the stream
// after hashing has been completed (if written locally). In this case, they will never be consistent and shouldn't be.
continue
}
if Cluster.Hash.GetNode(m).Server != host {
Expand Down
2 changes: 2 additions & 0 deletions cmd/bucky/rebalance.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ Set -offload=true to speed up rebalance.`
c.Flag.BoolVar(&listForce, "f", false, "Force the remote daemons to rebuild their cache.")
c.Flag.StringVar(&rebalanceConfig.allowedDsts, "allowed-dsts", "", "Only copy/rebalance metrics to the allowed destinations (ip1:port,ip2:port). By default (i.e. empty), all dsts are allowed.")
c.Flag.StringVar(&rebalanceConfig.allowedMetricRegex, "r", "", "Only copy/rebalance metrics matching regex. By default (i.e. empty), all metrics are allowed.")
c.Flag.BoolVar(&inconsistentFilterCacheMetrics, "filter-cache-metrics", true, "Filter go-carbon inconsistent metrics.")
c.Flag.StringVar(&inconsistentGoCarbonMetricsPrefix, "go-carbon-prefix", "carbon.agents.", "go-carbon metric prefix")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

c.Flag.StringVar(&goCarbonMetricsPrefix, "go-carbon-prefix", "carbon.agents.", "go-carbon metric prefix")

}

// countMap returns the number of metrics in a server -> metrics mapping
Expand Down