* Rename fudge_duplicate_timestamp to be increment_duplicate_timestamp
* run `gofmt -d -w pkg/validation/limits.go`
Co-authored-by: Christian Simon <simon@swine.de>
f.IntVar(&l.MaxLabelValueLength,"validation.max-length-label-value",2048,"Maximum length accepted for label value. This setting also applies to the metric name")
f.IntVar(&l.MaxLabelNamesPerSeries,"validation.max-label-names-per-series",30,"Maximum number of label names per series.")
f.BoolVar(&l.RejectOldSamples,"validation.reject-old-samples",true,"Reject old samples.")
f.BoolVar(&l.FudgeDuplicateTimestamp,"validation.fudge-duplicate-timestamps",false,"Fudge the timestamp of a log line by one nanosecond in the future from a previous entry for the same stream with the same timestamp, guarantees sort order at query time.")
f.BoolVar(&l.IncrementDuplicateTimestamp,"validation.increment-duplicate-timestamps",false,"Increment the timestamp of a log line by one nanosecond in the future from a previous entry for the same stream with the same timestamp; guarantees sort order at query time.")
_=l.RejectOldSamplesMaxAge.Set("7d")
f.Var(&l.RejectOldSamplesMaxAge,"validation.reject-old-samples.max-age","Maximum accepted sample age before rejecting.")