// Copyright IBM Corp. 2016, 2025 // SPDX-License-Identifier: MPL-2.0 package logical import "context" // ObservationRecorder records an observation. type ObservationRecorder interface { RecordObservationFromPlugin(ctx context.Context, observationType string, data map[string]interface{}) error }