From b72198c80a2d406f928acc2a11ad4d9a0cd8c520 Mon Sep 17 00:00:00 2001 From: Owen Diehl Date: Fri, 8 Jan 2021 04:29:25 -0500 Subject: [PATCH] better boltdb errmsg (#3139) --- production/ksonnet/loki/boltdb_shipper.libsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production/ksonnet/loki/boltdb_shipper.libsonnet b/production/ksonnet/loki/boltdb_shipper.libsonnet index bfa3e496eee3..6ba06004a82b 100644 --- a/production/ksonnet/loki/boltdb_shipper.libsonnet +++ b/production/ksonnet/loki/boltdb_shipper.libsonnet @@ -11,7 +11,7 @@ stateful_ingesters: if self.using_boltdb_shipper then true else super.stateful_ingesters, stateful_queriers: if self.using_boltdb_shipper then true else super.stateful_queriers, - boltdb_shipper_shared_store: error 'must define boltdb_shipper_shared_store', + boltdb_shipper_shared_store: error 'must define boltdb_shipper_shared_store when using_boltdb_shipper=true. If this is not intentional, consider disabling it. boltdb_shipper_shared_store is a backend key from the storage_config, such as (gcs) or (s3)', compactor_pvc_size: '10Gi', compactor_pvc_class: 'fast', index_period_hours: if self.using_boltdb_shipper then 24 else super.index_period_hours,