Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* **Overall**
* [CHANGE] Use with Kubernetes versions prior to 1.26 produce WARNING message
* [CHANGE] Drop support for OpenShift 4.12; the minimum supported version of OpenShift is now 4.14
* **Tracing**
* [UPGRADE] Upgraded Tempo from 2.7.0 to 2.9.0
* [UPGRADE] Upgraded Tempo Helm chart from 1.18.1 to 1.24.1


## Version 1.2.44 (18NOV2025)
Expand Down
4 changes: 2 additions & 2 deletions component_versions.env
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ PUSHGATEWAY_FULL_IMAGE="quay.io/prometheus/pushgateway:v1.11.1"
#Tempo
TEMPO_CHART_REPO=grafana
TEMPO_CHART_NAME=tempo
TEMPO_CHART_VERSION=1.18.1
TEMPO_FULL_IMAGE="docker.io/grafana/tempo:2.7.0"
TEMPO_CHART_VERSION=1.24.1
TEMPO_FULL_IMAGE="docker.io/grafana/tempo:2.9.0"
42 changes: 22 additions & 20 deletions monitoring/grafana-datasource-tempo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@ grafana:
datasources:
datasources.yaml:
apiVersion: 1
prune: true
deleteDatasources:
- name: Tempo
datasources:
- name: Tempo
type: tempo
url: http://v4m-tempo:3100
isDefault: false
editable: true
jsonData:
tracesToLogsV2:
datasourceUid: 'ViyaLogs'
filterByTraceID: true
# spanStartTimeShift: '1h'
# spanEndTimeShift: '-1h'
# tags: ['job', 'instance', 'pod', 'namespace']
# filterBySpanID: false
# customQuery: true
# query: 'method="${__span.tags.method}"'
serviceMap:
datasourceUid: prometheus
nodeGraph:
enabled: true
apiVersion: 1
- name: Tempo
type: tempo
url: http://v4m-tempo:3200
isDefault: false
editable: true
jsonData:
tracesToLogsV2:
datasourceUid: 'ViyaLogs'
filterByTraceID: true
# spanStartTimeShift: '1h'
# spanEndTimeShift: '-1h'
# tags: ['job', 'instance', 'pod', 'namespace']
# filterBySpanID: false
# customQuery: true
# query: 'method="${__span.tags.method}"'
serviceMap:
datasourceUid: prometheus
nodeGraph:
enabled: true
2 changes: 1 addition & 1 deletion monitoring/openshift/tempo-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tempo:
# Refers to https://grafana.com/docs/tempo/latest/configuration/#server
server:
# -- HTTP server listen port
http_listen_port: 3100
http_listen_port: 3200
storage:
trace:
# tempo storage backend
Expand Down
3 changes: 2 additions & 1 deletion monitoring/tempo_container_image.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
tempo:
repository: __IMAGE_REPO_3LEVEL__
registry: __IMAGE_REGISTRY__
repository: __IMAGE_REPO_2LEVEL__
tag: __IMAGE_TAG__
pullPolicy: __IMAGE_PULL_POLICY__
pullSecrets: __IMAGE_PULL_SECRETS__
Expand Down
2 changes: 1 addition & 1 deletion monitoring/values-tempo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ tempo:
# Refers to https://grafana.com/docs/tempo/latest/configuration/#server
server:
# -- HTTP server listen port
http_listen_port: 3100
http_listen_port: 3200
grpc_server_max_recv_msg_size: 500000000
grpc_server_max_send_msg_size: 500000000

Expand Down