From 7525f013ddc1bb096fc80c9165c5a487d8d53d43 Mon Sep 17 00:00:00 2001 From: ElectroNafta Date: Fri, 11 Jul 2025 13:18:30 +0200 Subject: [PATCH] feat(BRIDGE-396): extended observability metric type definition --- observability_types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/observability_types.go b/observability_types.go index fbe0ed0..7f562a4 100644 --- a/observability_types.go +++ b/observability_types.go @@ -9,4 +9,6 @@ type ObservabilityMetric struct { Version int `json:"Version"` Timestamp int64 `json:"Timestamp"` // Unix timestamp Data interface{} `json:"Data"` + + ShouldCache bool `json:"-"` // Internal field, indicating whether we should cache the given observability metric. }