Documentation ¶
Index ¶
Constants ¶
const ( ClientName = "prysm" BeaconNodeProcessName = "beaconnode" ValidatorProcessName = "validator" APIVersion = 1 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APIMessage ¶
type APIMessage struct { APIVersion int `json:"version"` Timestamp int64 `json:"timestamp"` // unix timestamp in milliseconds ProcessName string `json:"process"` // validator, beaconnode, system }
APIMessage are common to all requests to the client-stats API Note that there is a "system" type that we do not currently support -- if we did APIMessage would be present on the system messages as well as validator and beaconnode, whereas CommonStats would only be part of beaconnode and validator.
type BeaconNodeStats ¶
type BeaconNodeStats struct { // TODO(#8850): add support for this after slasher refactor is merged SlasherActive bool `json:"slasher_active"` SyncEth1Connected bool `json:"sync_eth1_connected"` SyncEth2Synced bool `json:"sync_eth2_synced"` DiskBeaconchainBytesTotal int64 `json:"disk_beaconchain_bytes_total"` // N/A -- would require significant network code changes at this time NetworkLibp2pBytesTotalReceive int64 `json:"network_libp2p_bytes_total_receive"` // N/A -- would require significant network code changes at this time NetworkLibp2pBytesTotalTransmit int64 `json:"network_libp2p_bytes_total_transmit"` // p2p_peer_count where label "state" == "Connected" NetworkPeersConnected int64 `json:"network_peers_connected"` // beacon_head_slot SyncBeaconHeadSlot int64 `json:"sync_beacon_head_slot"` CommonStats `json:",inline"` }
BeaconNodeStats embeds CommonStats and represents metrics specific to the beacon-node process. This type is used to marshal metrics data to the POST body sent to the metrics collector. To make the connection to client-stats clear, BeaconNodeStats is also used by prometheus collection code introduced to support client-stats. Note that some metrics are labeled NA because they are expected to be present with their zero-value when not supported by a client.
type CommonStats ¶
type CommonStats struct { CPUProcessSecondsTotal int64 `json:"cpu_process_seconds_total"` MemoryProcessBytes int64 `json:"memory_process_bytes"` ClientName string `json:"client_name"` ClientVersion string `json:"client_version"` ClientBuild int64 `json:"client_build"` // TODO(#8849): parse the grpc connection string to determine // if multiple addresses are present SyncEth2FallbackConfigured bool `json:"sync_eth2_fallback_configured"` // N/A -- when multiple addresses are provided to grpc, requests are // load-balanced between the provided endpoints. // This is different from a "fallback" configuration where // the second address is treated as a failover. SyncEth2FallbackConnected bool `json:"sync_eth2_fallback_connected"` APIMessage `json:",inline"` }
CommonStats represent generic metrics that are expected on both beaconnode and validator metric types. This type is used for marshaling metrics to the POST body sent to the metrics collector. Note that some metrics are labeled NA because they are expected to be present with their zero-value when not supported by a client.
type Scraper ¶
A Scraper polls the data source it has been configured with and interprets the content to produce a client-stats process metric. Scrapers currently exist to produce 'validator' and 'beaconnode' metric types.
func NewBeaconNodeScraper ¶
NewBeaconNodeScraper constructs a Scaper capable of scraping the prometheus endpoint of a beacon-node process and producing the json body for the beaconnode client-stats process type.
func NewValidatorScraper ¶
NewValidatorScraper constructs a Scaper capable of scraping the prometheus endpoint of a validator process and producing the json body for the validator client-stats process type.
type Updater ¶
An Updater can take the io.Reader created by Scraper and send it to a data sink for consumption. An Updater is used for instance to send the scraped data for a beacon-node to a remote client-stats endpoint.
func NewClientStatsHTTPPostUpdater ¶
NewClientStatsHTTPPostUpdater is used when the update endpoint is reachable via an HTTP POST request.
func NewGenericClientStatsUpdater ¶
NewGenericClientStatsUpdater can Update any io.Writer. It is used by the cli to write to stdout when an http endpoint is not provided. The output could be piped into another program or used for debugging.
type ValidatorStats ¶
type ValidatorStats struct { // N/A -- TODO(#8848): verify whether we can obtain this metric from the validator process ValidatorTotal int64 `json:"validator_total"` // N/A -- TODO(#8848): verify whether we can obtain this metric from the validator process ValidatorActive int64 `json:"validator_active"` CommonStats `json:",inline"` }
ValidatorStats embeds CommonStats and represents metrics specific to the validator process. This type is used to marshal metrics data to the POST body sent to the metrics collector. Note that some metrics are labeled NA because they are expected to be present with their zero-value when not supported by a client.