Skip to content

Latest commit

 

History

History
106 lines (82 loc) · 5.65 KB

CHANGELOG.md

File metadata and controls

106 lines (82 loc) · 5.65 KB

v3.0.0

Key Changes

The new solana-exporter (renamed from solana_exporter) contains many new metrics, standardised naming conventions and more configurability.

What's Changed

Metric Updates

New Metrics

Below is a list of newly added metrics (see the README for metric descriptions):

Renamed Metrics

The table below contains all metrics renamed in v3.0.0 (@johnstonematt):

Old Name New Name
solana_validator_activated_stake solana_validator_active_stake
solana_confirmed_transactions_total solana_node_transactions_total
solana_confirmed_slot_height solana_node_slot_height
solana_confirmed_epoch_number solana_node_epoch_number
solana_confirmed_epoch_first_slot solana_node_epoch_first_slot
solana_confirmed_epoch_last_slot solana_node_epoch_last_slot
solana_leader_slots_total solana_validator_leader_slots_total
solana_leader_slots_by_epoch solana_validator_leader_slots_by_epoch_total
solana_active_validators solana_cluster_validator_count

Metrics were renamed to:

  • Remove commitment levels from metric names.
  • Standardise naming conventions:
    • solana_validator_*: Validator-specific metrics which are trackable from any RPC node (i.e., active stake).
    • solana_node_*: Node-specific metrics which are not trackable from other nodes (i.e., node health).

Label Updates

The following labels were renamed (@johnstonematt):

  • pubkey was renamed to votekey, to clearly identity that it refers to the address of a validators vote account.

Config Updates

New Config Parameters

Below is a list of newly added config parameters (see the README for parameter descriptions) (@johnstonematt):

  • -balance-address
  • -nodekey
  • -comprehensive-slot-tracking
  • -monitor-block-sizes
  • -slot-pace
  • -light-mode
  • -http-timeout
  • -comprehensive-vote-account-tracking
  • -active-identity
  • epoch-cleanup-time

Renamed Config Parameters

The table below contains all config parameters renamed in v3.0.0 (@johnstonematt):

Old Name New Name
-rpcURI -rpc-url
addr -listen-address

Removed Config Parameters

The following metrics were removed (@johnstonematt):

  • votepubkey. Configure validator tracking using the -nodekey parameter.

General Updates

New Contributors