mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
12 lines
300 B
Go
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
|
|
}
|