blob: 25fcd82c6bb536f4c1ea3616a6f1bdbf310f5a73 [file] [log] [blame]
edition = "2023";
package platforms_syshealth.collection.feed;
import "payload.proto";
message HftPayload {
repeated milotic_hft.Payload payload = 1;
}
message Metadata {
// The hostname that produced the data.
string hostname = 1;
}
// Central payload for collect data types we support.
message FeedPayload {
oneof payload {
HftPayload hft_payload = 2;
}
Metadata metadata = 3;
}