Skip to content

Commit 01d3b61

Browse files
Merge branch 'main' into main
2 parents 40921a7 + 135ac99 commit 01d3b61

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

charts/tempo-distributed/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: tempo-distributed
33
description: Grafana Tempo in MicroService mode
44
type: application
5-
version: 1.51.1
5+
version: 1.51.2
66
appVersion: 2.9.0
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tempo-distributed
22

3-
![Version: 1.51.1](https://img.shields.io/badge/Version-1.51.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.0](https://img.shields.io/badge/AppVersion-2.9.0-informational?style=flat-square)
3+
![Version: 1.51.2](https://img.shields.io/badge/Version-1.51.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.0](https://img.shields.io/badge/AppVersion-2.9.0-informational?style=flat-square)
44

55
Grafana Tempo in MicroService mode
66

@@ -965,6 +965,8 @@ The memcached default args are removed and should be provided manually. The sett
965965
| storage.trace.blocklist_poll_fallback | string | `nil` | fallback to scanning the entire bucket. Set to false to disable this behavior. |
966966
| storage.trace.blocklist_poll_stale_tenant_index | string | `nil` | The oldest allowable tenant index. |
967967
| storage.trace.blocklist_poll_tenant_index_builders | string | `nil` | Maximum number of compactors that should build the tenant index. All other components will download the index. |
968+
| storage.trace.empty_tenant_deletion_age | string | `nil` | How fast the poller will delete a tenant if it is empty. Will need to be enabled in 'empty_tenant_deletion_enabled'. |
969+
| storage.trace.empty_tenant_deletion_enabled | string | `nil` | Delete empty tenants. |
968970
| storage.trace.pool.max_workers | int | `400` | Total number of workers pulling jobs from the queue |
969971
| storage.trace.pool.queue_depth | int | `20000` | Length of job queue. imporatant for querier as it queues a job for every block it has to search |
970972
| storage.trace.search.prefetch_trace_count | int | `1000` | Number of traces to prefetch while scanning blocks. Increasing this value can improve trace search performance at the cost of memory. |

charts/tempo-distributed/values.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1606,6 +1606,12 @@ config: |
16061606
{{- if .Values.storage.trace.blocklist_poll_stale_tenant_index }}
16071607
blocklist_poll_stale_tenant_index: {{ .Values.storage.trace.blocklist_poll_stale_tenant_index }}
16081608
{{- end }}
1609+
{{- if .Values.storage.trace.empty_tenant_deletion_age }}
1610+
empty_tenant_deletion_age: {{ .Values.storage.trace.empty_tenant_deletion_age }}
1611+
{{- end }}
1612+
{{- if .Values.storage.trace.empty_tenant_deletion_enabled }}
1613+
empty_tenant_deletion_enabled: {{ .Values.storage.trace.empty_tenant_deletion_enabled }}
1614+
{{- end }}
16091615
16101616
# Set Tempo server configuration
16111617
# Refers to https://grafana.com/docs/tempo/latest/configuration/#server
@@ -1679,7 +1685,12 @@ storage:
16791685
blocklist_poll_tenant_index_builders: null
16801686
# -- The oldest allowable tenant index.
16811687
blocklist_poll_stale_tenant_index: null
1682-
# Settings for the Admin client storage backend and buckets. Only valid is enterprise.enabled is true.
1688+
# -- How fast the poller will delete a tenant if it is empty. Will need to be enabled in 'empty_tenant_deletion_enabled'.
1689+
empty_tenant_deletion_age: null
1690+
# -- Delete empty tenants.
1691+
empty_tenant_deletion_enabled: null
1692+
1693+
# Settings for the Admin client storage backend and buckets. Only valid is enterprise.enabled is true
16831694
admin:
16841695
# -- The supported storage backends are gcs, s3 and azure, as specified in https://grafana.com/docs/enterprise-traces/latest/configure/reference/#admin_client_config
16851696
backend: filesystem

0 commit comments

Comments
 (0)