mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 19:51:20 +00:00
72dc43989f
* implement validator logs stream * fix test * tidy * proto regen * add logs stream to the beacon node * beacon logs working * impl * pass test * gaz * rem lock * fix space
23 lines
538 B
Protocol Buffer
23 lines
538 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ethereum.beacon.rpc.v1;
|
|
|
|
import "google/api/annotations.proto";
|
|
import "google/protobuf/empty.proto";
|
|
|
|
// Health service API
|
|
//
|
|
// The health service is able to return important metadata about a beacon node
|
|
// such being able to stream logs via gRPC.
|
|
service Health {
|
|
rpc StreamBeaconLogs(google.protobuf.Empty) returns (stream LogsResponse) {
|
|
option (google.api.http) = {
|
|
get: "/eth/v1alpha1/health/logs/stream"
|
|
};
|
|
}
|
|
}
|
|
|
|
message LogsResponse {
|
|
repeated string logs = 1;
|
|
}
|