Skip to content

Commit

Permalink
PR review
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <[email protected]>
  • Loading branch information
blt committed Jul 18, 2023
1 parent bc971a4 commit 2217b17
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[workspace]
members = [
"./",
"integration/sheepdog",
"integration/ducks",
"lading",
Expand Down
2 changes: 1 addition & 1 deletion lading_capture/proto/capture/v1/capture.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string> global_labels = 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2217b17

Please sign in to comment.