diff --git a/Cargo.toml b/Cargo.toml index 20fd7f70d..c2ab55f9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,5 @@ [workspace] members = [ - "./", "integration/sheepdog", "integration/ducks", "lading", diff --git a/lading_capture/proto/capture/v1/capture.proto b/lading_capture/proto/capture/v1/capture.proto index f5bebc106..df2ffe468 100644 --- a/lading_capture/proto/capture/v1/capture.proto +++ b/lading_capture/proto/capture/v1/capture.proto @@ -29,7 +29,7 @@ message Line { message Payload { // An ID that is unique to a single lading run. string run_id = 1; - // The time in milliseconds that this Payload was collected. + // The time in milliseconds past the epoch that this Payload was collected. uint64 time = 2; // Global labels to be applied to every Line. map global_labels = 3; diff --git a/lading_capture/src/proto/lading_capture.proto.capture.v1.rs b/lading_capture/src/proto/lading_capture.proto.capture.v1.rs index 57cb2b301..669cb9ce7 100644 --- a/lading_capture/src/proto/lading_capture.proto.capture.v1.rs +++ b/lading_capture/src/proto/lading_capture.proto.capture.v1.rs @@ -25,7 +25,7 @@ pub struct Payload { /// An ID that is unique to a single lading run. #[prost(string, tag = "1")] pub run_id: ::prost::alloc::string::String, - /// The time in milliseconds that this Payload was collected. + /// The time in milliseconds past the epoch that this Payload was collected. #[prost(uint64, tag = "2")] pub time: u64, /// Global labels to be applied to every Line.