Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanratcliffe authored Dec 2, 2024
1 parent 19a8080 commit 92f6e14
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,12 @@ service ManagementService {

// Sources heartbeat and health
// List of all recently active sources and their health, includes information from srcman
// this will be used on the sources page
// meaning that it can show the status of managed sources that have not started and
// connected yet
rpc ListAllSourcesStatus(ListAllSourcesStatusRequest) returns (ListAllSourcesStatusResponse);
// For the explore page, list active sources and their health, it does not include information from srcman
// Lists all active sources and their health. This should be used to determine
// what types, scopes etc are available rather than `ListAllSourcesStatus` since
// this endpoint only include running, available sources
rpc ListActiveSourcesStatus(ListAllSourcesStatusRequest) returns (ListAllSourcesStatusResponse);
// Heartbeat from a source to keep it registered and healthy
rpc SubmitSourceHeartbeat(SubmitSourceHeartbeatRequest) returns (SubmitSourceHeartbeatResponse);
Expand Down

0 comments on commit 92f6e14

Please sign in to comment.