From 8ea39715c2c983aeb4af2e25d235eeb0a8a92827 Mon Sep 17 00:00:00 2001 From: "Eric J. Smith" Date: Sat, 15 Aug 2026 16:19:25 -0500 Subject: [PATCH 1/2] Fix SigNoz cache span filtering --- k8s/signoz.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/signoz.yaml b/k8s/signoz.yaml index cec353729c..a27829aaee 100644 --- a/k8s/signoz.yaml +++ b/k8s/signoz.yaml @@ -97,7 +97,7 @@ otelAgent: error_mode: ignore traces: span: - - 'attributes["db.system"] == "redis" and status.code != STATUS_CODE_ERROR and (resource.attributes["service.name"] == "exceptionless-web" or resource.attributes["service.name"] == "job-event-posts")' + - '(attributes["db.system"] == "redis" or attributes["db.system.name"] == "redis") and status.code != STATUS_CODE_ERROR' - 'name == "Message: EntityChanged"' service: pipelines: From 28a2bc879bfaa7f3d643f4dba2ab83b1a7ef06e9 Mon Sep 17 00:00:00 2001 From: "Eric J. Smith" Date: Mon, 17 Aug 2026 10:41:25 -0500 Subject: [PATCH 2/2] Split SigNoz Redis span conditions --- k8s/signoz.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/k8s/signoz.yaml b/k8s/signoz.yaml index a27829aaee..11ee6adc8c 100644 --- a/k8s/signoz.yaml +++ b/k8s/signoz.yaml @@ -97,7 +97,8 @@ otelAgent: error_mode: ignore traces: span: - - '(attributes["db.system"] == "redis" or attributes["db.system.name"] == "redis") and status.code != STATUS_CODE_ERROR' + - 'attributes["db.system"] == "redis" and status.code != STATUS_CODE_ERROR' + - 'attributes["db.system.name"] == "redis" and status.code != STATUS_CODE_ERROR' - 'name == "Message: EntityChanged"' service: pipelines: