diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go index ff78702b7..bb592e207 100644 --- a/cmd/prometheus/main.go +++ b/cmd/prometheus/main.go @@ -208,6 +208,12 @@ func (c *flagConfig) setFeatureListOptions(logger log.Logger) error { } } } + + if c.tsdb.EnableNativeHistograms && c.tsdb.EnableMemorySnapshotOnShutdown { + c.tsdb.EnableMemorySnapshotOnShutdown = false + level.Warn(logger).Log("msg", "memory-snapshot-on-shutdown has been disabled automatically because memory-snapshot-on-shutdown and native-histograms cannot be enabled at the same time.") + } + return nil }