"go fmt" fixup.

Change-Id: I262bb462281bc2610819c822fc7a0768c6ce3d8d
This commit is contained in:
Julius Volz 2014-02-26 23:46:49 +01:00
parent e8d963d630
commit 817d9b0e97

View file

@ -52,8 +52,8 @@ var (
diskAppendQueueCapacity = flag.Int("storage.queue.diskAppendCapacity", 1000000, "The size of the queue for items that are pending writing to disk.")
memoryAppendQueueCapacity = flag.Int("storage.queue.memoryAppendCapacity", 10000, "The size of the queue for items that are pending writing to memory.")
compactInterval = flag.Duration("compact.interval", 3*time.Hour, "The amount of time between compactions.")
compactGroupSize = flag.Int("compact.groupSize", 500, "The minimum group size for compacted samples.")
compactInterval = flag.Duration("compact.interval", 3*time.Hour, "The amount of time between compactions.")
compactGroupSize = flag.Int("compact.groupSize", 500, "The minimum group size for compacted samples.")
compactAgeInclusiveness = flag.Duration("compact.ageInclusiveness", 5*time.Minute, "The age beyond which samples should be compacted.")
deleteInterval = flag.Duration("delete.interval", 11*time.Hour, "The amount of time between deletion of old values.")
@ -72,7 +72,7 @@ var (
type prometheus struct {
compactionTimer *time.Ticker
deletionTimer *time.Ticker
deletionTimer *time.Ticker
curationSema chan bool
stopBackgroundOperations chan bool