mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
Merge pull request #314 from Bplotka/overlap-log-improvement
db: Made overlap String() prettier and more readable.
This commit is contained in:
commit
bd832fc827
12
db.go
12
db.go
|
@ -590,16 +590,22 @@ func (o Overlaps) String() string {
|
|||
var groups []string
|
||||
for _, m := range overlaps {
|
||||
groups = append(groups, fmt.Sprintf(
|
||||
"[id: %s mint: %d maxt: %d range: %s]",
|
||||
"<ulid: %s, mint: %d, maxt: %d, range: %s>",
|
||||
m.ULID.String(),
|
||||
m.MinTime,
|
||||
m.MaxTime,
|
||||
(time.Duration((m.MaxTime-m.MinTime)/1000)*time.Second).String(),
|
||||
))
|
||||
}
|
||||
res = append(res, fmt.Sprintf("[%d %d]: <%s> ", r.Min, r.Max, strings.Join(groups, "")))
|
||||
res = append(res, fmt.Sprintf(
|
||||
"[mint: %d, maxt: %d, range: %s, blocks: %d]: %s",
|
||||
r.Min, r.Max,
|
||||
(time.Duration((r.Max-r.Min)/1000)*time.Second).String(),
|
||||
len(overlaps),
|
||||
strings.Join(groups, ", ")),
|
||||
)
|
||||
}
|
||||
return strings.Join(res, "")
|
||||
return strings.Join(res, "\n")
|
||||
}
|
||||
|
||||
// OverlappingBlocks returns all overlapping blocks from given meta files.
|
||||
|
|
Loading…
Reference in a new issue