We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Query::nodeStatus and ActiveBakerState::nodeStatus in the Rust GraphQL API and relevant types.
Query::nodeStatus
ActiveBakerState::nodeStatus
This is information is not available on chain, but require polling from the node collector
Note that the frontend only depends on the following data per node:
type NodeStatus { id: ID! nodeId: String! nodeName: String averagePing: Float uptime: UnsignedLong! clientVersion: String! averageBytesPerSecondIn: Float! averageBytesPerSecondOut: Float! packetsSent: UnsignedLong! packetsReceived: UnsignedLong! bakingCommitteeMember: String! bestBlock: String! bestBlockHeight: UnsignedLong! bestArrivedTime: DateTime blockReceivePeriodEma: Float blockReceivePeriodEmsd: Float peersCount: UnsignedLong! peersList: [PeerReference!]! finalizedBlock: String! finalizedBlockHeight: UnsignedLong! finalizedTime: DateTime finalizationPeriodEma: Float finalizationPeriodEmsd: Float consensusBakerId: UnsignedLong blocksReceivedCount: UnsignedLong }
The remaining fields can be omitted.
For reference, the C# GraphQL schema can be found here.
The text was updated successfully, but these errors were encountered:
lassemand
No branches or pull requests
Implement
Query::nodeStatus
andActiveBakerState::nodeStatus
in the Rust GraphQL API and relevant types.This is information is not available on chain, but require polling from the node collector
Note that the frontend only depends on the following data per node:
The remaining fields can be omitted.
For reference, the C# GraphQL schema can be found here.
The text was updated successfully, but these errors were encountered: