vault/sdk/logical/observations.go
Violet Hynes 26c337e9ee
VAULT-35396 CE changes for SDK observation update (#30626)
* VAULT-35396 CE changes for SDK observation update

* Make proto
2025-05-15 09:46:03 -04:00

12 lines
300 B
Go

// Copyright (c) HashiCorp, Inc.
// 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
}