diff --git a/charts/databend-meta/Chart.yaml b/charts/databend-meta/Chart.yaml index 922293c..1d58b46 100644 --- a/charts/databend-meta/Chart.yaml +++ b/charts/databend-meta/Chart.yaml @@ -26,7 +26,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.8.0 +version: 0.8.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/databend-meta/templates/_config.tpl b/charts/databend-meta/templates/_config.tpl index 1eae0e1..dad6ed8 100644 --- a/charts/databend-meta/templates/_config.tpl +++ b/charts/databend-meta/templates/_config.tpl @@ -6,10 +6,12 @@ grpc_api_address = "0.0.0.0:{{ .Values.service.ports.grpc }}" [log.stderr] on = true level = {{ .Values.config.stdLogLevel | quote }} + prefix_filter = {{ .Values.config.logPrefixFilter | quote }} [log.file] level = {{ .Values.config.logLevel | quote }} format = "json" dir = {{ .Values.config.logDir | quote }} + prefix_filter = {{ .Values.config.logPrefixFilter | quote }} [raft_config] cluster_name = {{ .Values.config.clusterName | quote }} diff --git a/charts/databend-meta/values.yaml b/charts/databend-meta/values.yaml index 3cd01e4..7945fa3 100644 --- a/charts/databend-meta/values.yaml +++ b/charts/databend-meta/values.yaml @@ -41,6 +41,7 @@ config: clusterName: databend logDir: /data/databend-meta/log logLevel: INFO + logPrefixFilter: "" stdLogLevel: WARN raft: dir: /data/databend-meta/raft