Skip to content

Commit

Permalink
feat: store generated changeset into ingestion log
Browse files Browse the repository at this point in the history
  • Loading branch information
leoparente committed Sep 19, 2024
1 parent 9983fcf commit cbf1a92
Show file tree
Hide file tree
Showing 4 changed files with 382 additions and 132 deletions.
7 changes: 7 additions & 0 deletions diode-proto/diode/v1/reconciler.proto
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ message IngestionMetrics {
int32 no_changes = 5;
}

// A change set
message ChangeSet {
string id = 1; // A change set ID
string data = 2; // An arbitrary JSON object representing the change set
}

// An ingestion log
message IngestionLog {
string id = 1;
Expand All @@ -83,6 +89,7 @@ message IngestionLog {
string sdk_version = 9;
diode.v1.Entity entity = 10;
IngestionError error = 11;
ChangeSet change_set = 12;
}

// The request to retrieve ingestion logs
Expand Down
Loading

0 comments on commit cbf1a92

Please sign in to comment.