syntax = "proto3"; package common; option go_package = "github.com/talos-systems/talos/api/common"; // Common metadata message nested in all reply message types message NodeMetadata { string hostname = 1; } // The response message containing the requested logs. message Data { bytes bytes = 1; } message DataResponse { NodeMetadata metadata = 1; Data bytes = 2; } message DataReply { repeated DataResponse response = 1; } enum ContainerDriver { CONTAINERD = 0; CRI = 1; }