solana_runtime/
transaction_error_metrics.rs

1use solana_sdk::{clock::Slot, saturating_add_assign};
2
3#[derive(Debug, Default)]
4pub struct TransactionErrorMetrics {
5    pub total: usize,
6    pub account_in_use: usize,
7    pub too_many_account_locks: usize,
8    pub account_loaded_twice: usize,
9    pub account_not_found: usize,
10    pub blockhash_not_found: usize,
11    pub blockhash_too_old: usize,
12    pub call_chain_too_deep: usize,
13    pub already_processed: usize,
14    pub instruction_error: usize,
15    pub insufficient_funds: usize,
16    pub invalid_account_for_fee: usize,
17    pub invalid_account_index: usize,
18    pub invalid_program_for_execution: usize,
19    pub not_allowed_during_cluster_maintenance: usize,
20    pub invalid_writable_account: usize,
21    pub invalid_rent_paying_account: usize,
22    pub would_exceed_max_block_cost_limit: usize,
23    pub would_exceed_max_account_cost_limit: usize,
24    pub would_exceed_max_vote_cost_limit: usize,
25    pub would_exceed_account_data_block_limit: usize,
26}
27
28impl TransactionErrorMetrics {
29    pub fn new() -> Self {
30        Self { ..Self::default() }
31    }
32
33    pub fn accumulate(&mut self, other: &TransactionErrorMetrics) {
34        saturating_add_assign!(self.total, other.total);
35        saturating_add_assign!(self.account_in_use, other.account_in_use);
36        saturating_add_assign!(self.too_many_account_locks, other.too_many_account_locks);
37        saturating_add_assign!(self.account_loaded_twice, other.account_loaded_twice);
38        saturating_add_assign!(self.account_not_found, other.account_not_found);
39        saturating_add_assign!(self.blockhash_not_found, other.blockhash_not_found);
40        saturating_add_assign!(self.blockhash_too_old, other.blockhash_too_old);
41        saturating_add_assign!(self.call_chain_too_deep, other.call_chain_too_deep);
42        saturating_add_assign!(self.already_processed, other.already_processed);
43        saturating_add_assign!(self.instruction_error, other.instruction_error);
44        saturating_add_assign!(self.insufficient_funds, other.insufficient_funds);
45        saturating_add_assign!(self.invalid_account_for_fee, other.invalid_account_for_fee);
46        saturating_add_assign!(self.invalid_account_index, other.invalid_account_index);
47        saturating_add_assign!(
48            self.invalid_program_for_execution,
49            other.invalid_program_for_execution
50        );
51        saturating_add_assign!(
52            self.not_allowed_during_cluster_maintenance,
53            other.not_allowed_during_cluster_maintenance
54        );
55        saturating_add_assign!(
56            self.invalid_writable_account,
57            other.invalid_writable_account
58        );
59        saturating_add_assign!(
60            self.invalid_rent_paying_account,
61            other.invalid_rent_paying_account
62        );
63        saturating_add_assign!(
64            self.would_exceed_max_block_cost_limit,
65            other.would_exceed_max_block_cost_limit
66        );
67        saturating_add_assign!(
68            self.would_exceed_max_account_cost_limit,
69            other.would_exceed_max_account_cost_limit
70        );
71        saturating_add_assign!(
72            self.would_exceed_max_vote_cost_limit,
73            other.would_exceed_max_vote_cost_limit
74        );
75        saturating_add_assign!(
76            self.would_exceed_account_data_block_limit,
77            other.would_exceed_account_data_block_limit
78        );
79    }
80
81    pub fn report(&self, id: u32, slot: Slot) {
82        datapoint_info!(
83            "banking_stage-leader_slot_transaction_errors",
84            ("id", id as i64, i64),
85            ("slot", slot as i64, i64),
86            ("total", self.total as i64, i64),
87            ("account_in_use", self.account_in_use as i64, i64),
88            (
89                "too_many_account_locks",
90                self.too_many_account_locks as i64,
91                i64
92            ),
93            (
94                "account_loaded_twice",
95                self.account_loaded_twice as i64,
96                i64
97            ),
98            ("account_not_found", self.account_not_found as i64, i64),
99            ("blockhash_not_found", self.blockhash_not_found as i64, i64),
100            ("blockhash_too_old", self.blockhash_too_old as i64, i64),
101            ("call_chain_too_deep", self.call_chain_too_deep as i64, i64),
102            ("already_processed", self.already_processed as i64, i64),
103            ("instruction_error", self.instruction_error as i64, i64),
104            ("insufficient_funds", self.insufficient_funds as i64, i64),
105            (
106                "invalid_account_for_fee",
107                self.invalid_account_for_fee as i64,
108                i64
109            ),
110            (
111                "invalid_account_index",
112                self.invalid_account_index as i64,
113                i64
114            ),
115            (
116                "invalid_program_for_execution",
117                self.invalid_program_for_execution as i64,
118                i64
119            ),
120            (
121                "not_allowed_during_cluster_maintenance",
122                self.not_allowed_during_cluster_maintenance as i64,
123                i64
124            ),
125            (
126                "invalid_writable_account",
127                self.invalid_writable_account as i64,
128                i64
129            ),
130            (
131                "invalid_rent_paying_account",
132                self.invalid_rent_paying_account as i64,
133                i64
134            ),
135            (
136                "would_exceed_max_block_cost_limit",
137                self.would_exceed_max_block_cost_limit as i64,
138                i64
139            ),
140            (
141                "would_exceed_max_account_cost_limit",
142                self.would_exceed_max_account_cost_limit as i64,
143                i64
144            ),
145            (
146                "would_exceed_max_vote_cost_limit",
147                self.would_exceed_max_vote_cost_limit as i64,
148                i64
149            ),
150            (
151                "would_exceed_account_data_block_limit",
152                self.would_exceed_account_data_block_limit as i64,
153                i64
154            ),
155        );
156    }
157}