mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-06 22:23:56 -05:00
24 lines
815 B
Go
24 lines
815 B
Go
package blockchain
|
|
|
|
import (
|
|
"github.com/OffchainLabs/prysm/v7/beacon-chain/state"
|
|
"github.com/OffchainLabs/prysm/v7/time"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var stateDefragmentationTime = promauto.NewSummary(prometheus.SummaryOpts{
|
|
Name: "head_state_defragmentation_milliseconds",
|
|
Help: "Milliseconds it takes to defragment the head state",
|
|
})
|
|
|
|
// This method defragments our state, so that any specific fields which have
|
|
// a higher number of fragmented indexes are reallocated to a new separate slice for
|
|
// that field.
|
|
func (s *Service) defragmentState(st state.BeaconState) {
|
|
startTime := time.Now()
|
|
st.Defragment()
|
|
elapsedTime := time.Since(startTime)
|
|
stateDefragmentationTime.Observe(float64(elapsedTime.Milliseconds()))
|
|
}
|