checkpointInterval=flag.Duration("storage.local.checkpoint-interval",5*time.Minute,"The period at which the in-memory metrics and the chunks not yet persisted to series files are checkpointed.")
checkpointDirtySeriesLimit=flag.Int("storage.local.checkpoint-dirty-series-limit",5000,"If approx. that many time series are in a state that would require a recovery operation after a crash, a checkpoint is triggered, even if the checkpoint interval hasn't passed yet. A recovery operation requires a disk seek. The default limit intends to keep the recovery time below 1min even on spinning disks. With SSD, recovery is much faster, so you might want to increase this value in that case to avoid overly frequent checkpoints.")
storageDirty=flag.Bool("storage.local.dirty",false,"If set, the local storage layer will perform crash recovery even if the last shutdown appears to be clean.")
storageDirty=flag.Bool("storage.local.dirty",false,"If set, the local storage layer will perform crash recovery even if the last shutdown appears to be clean.")
storagePedanticChecks=flag.Bool("storage.local.pedantic-checks",false,"If set, a crash recovery will perform checks on each series file. This might take a very long time.")
printVersion=flag.Bool("version",false,"Print version information.")