aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/proto/history.proto
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 17:54:34 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 17:54:34 +0200
commit6bd2b80be51a8623640fbd77afa1da09289e40cc (patch)
tree8fa76fc78e27a4f3d6f57af07805a83e9877f0ad /crates/daemon/proto/history.proto
parentchore: Commit (diff)
downloadatuin-6bd2b80be51a8623640fbd77afa1da09289e40cc.zip
chore: All compiles
Diffstat (limited to 'crates/daemon/proto/history.proto')
-rw-r--r--crates/daemon/proto/history.proto17
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/daemon/proto/history.proto b/crates/daemon/proto/history.proto
index 46a41a5e..850b16b9 100644
--- a/crates/daemon/proto/history.proto
+++ b/crates/daemon/proto/history.proto
@@ -4,7 +4,11 @@ package history;
service History {
rpc StartHistory(StartHistoryRequest) returns (StartHistoryReply);
rpc EndHistory(EndHistoryRequest) returns (EndHistoryReply);
+
rpc TailHistory(TailHistoryRequest) returns (stream TailHistoryReply);
+
+ // Request history from the daemon
+ rpc History(HistoryRequest) returns (HistoryReply);
}
message StartHistoryRequest {
@@ -59,3 +63,16 @@ message HistoryEntry {
int64 exit = 9;
int64 duration = 10;
}
+
+message Range {
+ uint64 start = 1;
+ uint64 end = 2;
+}
+
+message HistoryRequest {
+ string session = 1;
+ optional Range range = 2;
+}
+message HistoryReply {
+ repeated HistoryEntry entries = 1;
+}