Skip to content

Commit

Permalink
(fix) add ListActiveSourcesStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
tphoney committed Nov 29, 2024
1 parent 0899d68 commit a60bcc9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,11 @@ service ManagementService {
rpc DeleteSource(DeleteSourceRequest) returns (DeleteSourceResponse);

// Sources heartbeat and health
// List of all recently active sources and their health, includes managed and local sources
// List of all recently active sources and their health, includes information from srcman
// this will be used on the sources page
rpc ListAllSourcesStatus(ListAllSourcesStatusRequest) returns (ListAllSourcesStatusResponse);
// For the explore page, list active sources and their health, it does not include information from srcman
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 a60bcc9

Please sign in to comment.