Skip to content
New issue

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

add gas wanted log #261

Open
wants to merge 3 commits into
base: add_logs_metrics_for_block_proposal
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/consensus/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,5 +254,5 @@
}

func (m *Metrics) MarkProposalTxNumber(txs int) {
m.ProposalTxs.With("proposal_tx_number").Add(float64(txs))
m.ProposalTxs.Add(float64(txs))

Check warning on line 257 in internal/consensus/metrics.go

View check run for this annotation

Codecov / codecov/patch

internal/consensus/metrics.go#L257

Added line #L257 was not covered by tests
}
18 changes: 15 additions & 3 deletions internal/consensus/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -1722,21 +1722,33 @@
liveness properties. Please see PrepareProposal-ProcessProposal coherence and determinism
properties in the ABCI++ specification.
*/
isAppValid, err := cs.blockExec.ProcessProposal(ctx, cs.roundState.ProposalBlock(), cs.state)
isAppValid, resp, err := cs.blockExec.ProcessProposal(ctx, cs.roundState.ProposalBlock(), cs.state)
if err != nil {
panic(fmt.Sprintf("ProcessProposal: %v", err))
}

var gasWanted int64
for _, tx := range resp.TxResults {
gasWanted += tx.GasWanted
}

Check warning on line 1733 in internal/consensus/state.go

View check run for this annotation

Codecov / codecov/patch

internal/consensus/state.go#L1732-L1733

Added lines #L1732 - L1733 were not covered by tests

cs.metrics.MarkProposalProcessed(isAppValid)

numberOfTxs := cs.roundState.ProposalBlock().Txs.Len()
cs.metrics.MarkProposalTxNumber(numberOfTxs)
//cs.metrics.MarkProposalTxNumber(numberOfTxs)

logger.Info("proposal info",
"proposerAddress", cs.roundState.ProposalBlock().ProposerAddress,
"numberOfTxs", numberOfTxs,
"gasWanted", gasWanted)

// Vote nil if the Application rejected the block
if !isAppValid {
logger.Error("prevote step: state machine rejected a proposed block; this should not happen:"+
"the proposer may be misbehaving; prevoting nil", "err", err,
"proposerAddress", cs.roundState.ProposalBlock().ProposerAddress,
"numberOfTxs", numberOfTxs)
"numberOfTxs", numberOfTxs,
"gasWanted", gasWanted)

cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{})
return
Expand Down
6 changes: 3 additions & 3 deletions internal/state/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
ctx context.Context,
block *types.Block,
state State,
) (bool, error) {
) (bool, *abci.ResponseProcessProposal, error) {
txs := block.Data.Txs.ToSliceOfBytes()
resp, err := blockExec.appClient.ProcessProposal(ctx, &abci.RequestProcessProposal{
Hash: block.Header.Hash(),
Expand All @@ -184,13 +184,13 @@
LastResultsHash: block.LastResultsHash,
})
if err != nil {
return false, ErrInvalidBlock(err)
return false, resp, ErrInvalidBlock(err)

Check warning on line 187 in internal/state/execution.go

View check run for this annotation

Codecov / codecov/patch

internal/state/execution.go#L187

Added line #L187 was not covered by tests
}
if resp.IsStatusUnknown() {
panic(fmt.Sprintf("ProcessProposal responded with status %s", resp.Status.String()))
}

return resp.IsAccepted(), nil
return resp.IsAccepted(), resp, nil
}

// ValidateBlock validates the given block against the given state.
Expand Down
2 changes: 1 addition & 1 deletion internal/state/execution_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ func TestProcessProposal(t *testing.T) {
}

app.On("ProcessProposal", mock.Anything, mock.Anything).Return(&abci.ResponseProcessProposal{Status: abci.ResponseProcessProposal_ACCEPT}, nil)
acceptBlock, err := blockExec.ProcessProposal(ctx, block1, state)
acceptBlock, _, err := blockExec.ProcessProposal(ctx, block1, state)
require.NoError(t, err)
require.True(t, acceptBlock)
app.AssertExpectations(t)
Expand Down