Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FormatUUID ¶
Types ¶
type Adapter ¶
type Adapter interface { // Init should be called before any other methods, and no more than once. Init(*client.Config) error // Prepare must be called no more than once, and must return successfully // before any method other than Init is called. Any returned metrics // will be reported via the active Reporter Prepare(*client.Log) (client.Metrics, error) Run(*client.Command, *client.Log) (*client.CommandResult, error) Shutdown(*client.Log) (client.Metrics, error) CaptureSnapshot(string, *client.Log) error GetRootFs() string CollectArtifacts([]string, *client.Log) ([]string, error) // Get absolute path to directory in which artifacts are searched GetArtifactRoot() string }
Click to show internal directories.
Click to hide internal directories.