github.com/mier85/go-sensor@v1.30.1-0.20220920111756-9bf41b3bc7e0/acceptor/plugins.go (about) 1 // (c) Copyright IBM Corp. 2021 2 // (c) Copyright Instana Inc. 2020 3 4 // Package acceptor provides marshaling structs for Instana serverless acceptor API 5 package acceptor 6 7 // PluginPayload represents the Instana acceptor message envelope containing plugin 8 // name and entity ID 9 type PluginPayload struct { 10 Name string `json:"name"` 11 EntityID string `json:"entityId"` 12 Data interface{} `json:"data"` 13 }