Skip to content

Commit

Permalink
add tx-pool metrics data
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyukang committed Oct 7, 2023
1 parent bb4c5be commit 010e2f3
Show file tree
Hide file tree
Showing 12 changed files with 81 additions and 12 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,13 @@ clippy: setup-ckb-test ## Run linter to examine Rust source codes.
cargo clippy ${VERBOSE} --all --all-targets --features ${ALL_FEATURES} -- ${CLIPPY_OPTS} -D missing_docs
cd test && cargo clippy ${VERBOSE} --all --all-targets --all-features -- ${CLIPPY_OPTS}

.PHONY: bless
bless: setup-ckb-test
cargo clippy --fix --allow-dirty ${VERBOSE} --all --all-targets --features ${ALL_FEATURES} -- ${CLIPPY_OPTS} -D missing_docs
cd test && cargo clippy --fix --allow-dirty ${VERBOSE} --all --all-targets --all-features -- ${CLIPPY_OPTS}
cargo fmt ${VERBOSE} --all
cd test && cargo fmt ${VERBOSE} --all

.PHONY: security-audit
security-audit: ## Use cargo-deny to audit Cargo.lock for crates with security vulnerabilities.
cargo deny check --hide-inclusion-graph --show-stats advisories sources
Expand Down
6 changes: 3 additions & 3 deletions rpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4704,7 +4704,7 @@ Response
"pending_count": "0x1",
"proposed_count": "0x0",
"rank_in_pending": "0x1",
"score_sortkey": "AncestorsScoreSortKey { fee: Capacity(96942915023), weight: 274, ancestors_fee: Capacity(96942915023), ancestors_weight: 274 }",
"score_sortkey": "fee: 0x3894F68766, ancestors_fee: 0x3894F68766, weight: 0xF2, ancestors_weight: 0xF2",
"timestamp": "0x18aa1baa54c"
},
"id": 42
Expand Down Expand Up @@ -6561,11 +6561,11 @@ A Tx details info in tx-pool.

* `timestamp`: [`Uint64`](#type-uint64) - The time added into tx-pool

* `entry_status`: `string` - The detailed status in tx-pool, `Pending`, `Gap`, `Proposed`
* `entry_status`: `string` - The detailed status in tx-pool, `pending`, `gap`, `proposed`

* `rank_in_pending`: [`Uint64`](#type-uint64) - The rank in pending, starting from 0

* `pending_count`: [`Uint64`](#type-uint64) - The pending(`Pending` and `Gap`) count
* `pending_count`: [`Uint64`](#type-uint64) - The pending(`pending` and `gap`) count

* `proposed_count`: [`Uint64`](#type-uint64) - The proposed count

Expand Down
2 changes: 1 addition & 1 deletion rpc/src/module/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ pub trait PoolRpc {
/// "pending_count": "0x1",
/// "proposed_count": "0x0",
/// "rank_in_pending": "0x1",
/// "score_sortkey": "AncestorsScoreSortKey { fee: Capacity(96942915023), weight: 274, ancestors_fee: Capacity(96942915023), ancestors_weight: 274 }",
/// "score_sortkey": "fee: 0x3894F68766, ancestors_fee: 0x3894F68766, weight: 0xF2, ancestors_weight: 0xF2",
/// "timestamp": "0x18aa1baa54c"
/// },
/// "id": 42
Expand Down
2 changes: 1 addition & 1 deletion rpc/src/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct RpcTestSuite {

impl RpcTestSuite {
fn rpc(&self, request: &RpcTestRequest) -> RpcTestResponse {
self.rpc_client
self.rpc_client
.post(&self.rpc_uri)
.json(&request)
.send()
Expand Down
6 changes: 3 additions & 3 deletions test/src/specs/rpc/get_pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ impl Spec for TxPoolEntryStatus {
let tx_hash_0 = node0.generate_transaction();
let tx = node0.new_transaction(tx_hash_0.clone());
node0.rpc_client().send_transaction(tx.data().into());
node0.assert_pool_entry_status(tx_hash_0.clone(), "Pending");
node0.assert_pool_entry_status(tx_hash_0.clone(), "pending");
node0.mine(1);
node0.assert_pool_entry_status(tx_hash_0.clone(), "Gap");
node0.assert_pool_entry_status(tx_hash_0.clone(), "gap");
node0.mine(1);
node0.assert_pool_entry_status(tx_hash_0, "Proposed");
node0.assert_pool_entry_status(tx_hash_0, "proposed");
}
}
1 change: 1 addition & 0 deletions tx-pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ ckb-util = { path = "../util", version = "= 0.112.0-pre" }
ckb-jsonrpc-types = { path = "../util/jsonrpc-types", version = "= 0.112.0-pre" }
ckb-chain-spec = { path = "../spec", version = "= 0.112.0-pre" }
ckb-snapshot = { path = "../util/snapshot", version = "= 0.112.0-pre" }
ckb-metrics = {path = "../util/metrics", version = "= 0.112.0-pre"}
ckb-error = { path = "../error", version = "= 0.112.0-pre" }
tokio = { version = "1", features = ["sync", "process"] }
ckb-async-runtime = { path = "../util/runtime", version = "= 0.112.0-pre" }
Expand Down
29 changes: 29 additions & 0 deletions tx-pool/src/component/pool_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ pub enum Status {
Proposed,
}

impl ToString for Status {
fn to_string(&self) -> String {
match self {
Status::Pending => "pending".to_string(),
Status::Gap => "gap".to_string(),
Status::Proposed => "proposed".to_string(),
}
}
}

#[derive(Copy, Clone)]
enum EntryOp {
Add,
Expand Down Expand Up @@ -183,6 +193,7 @@ impl PoolMap {
self.insert_entry(&entry, status);
self.record_entry_edges(&entry);
self.record_entry_descendants(&entry);
self.track_entry_statics();
Ok(true)
}

Expand All @@ -193,6 +204,7 @@ impl PoolMap {
e.status = status;
})
.expect("unconsistent pool");
self.track_entry_statics();
}

pub(crate) fn remove_entry(&mut self, id: &ProposalShortId) -> Option<TxEntry> {
Expand Down Expand Up @@ -504,4 +516,21 @@ impl PoolMap {
evict_key,
});
}

fn track_entry_statics(&self) {
if let Some(metrics) = ckb_metrics::handle() {
metrics
.ckb_tx_pool_entry
.pending
.set(self.entries.get_by_status(&Status::Pending).len() as i64);
metrics
.ckb_tx_pool_entry
.gap
.set(self.entries.get_by_status(&Status::Gap).len() as i64);
metrics
.ckb_tx_pool_entry
.proposed
.set(self.proposed_size() as i64);
}
}
}
12 changes: 12 additions & 0 deletions tx-pool/src/component/sort_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ impl Ord for AncestorsScoreSortKey {
}
}

impl ToString for AncestorsScoreSortKey {
fn to_string(&self) -> String {
format!(
"fee: {:#02X}, ancestors_fee: {:#02X}, weight: {:#02X}, ancestors_weight: {:#02X}",
self.fee.as_u64(),
self.ancestors_fee.as_u64(),
self.weight,
self.ancestors_weight
)
}
}

/// First compare fee_rate, select the smallest fee_rate,
/// and then select the latest timestamp, for eviction,
/// the latest timestamp which also means that the fewer descendants may exist.
Expand Down
4 changes: 2 additions & 2 deletions tx-pool/src/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -636,13 +636,13 @@ impl TxPool {
};
let res = PoolTxDetailInfo {
timestamp: entry.inner.timestamp,
entry_status: format!("{:?}", entry.status),
entry_status: entry.status.to_string(),
pending_count: self.pool_map.pending_size(),
rank_in_pending,
proposed_count: ids.proposed.len(),
descendants_count: self.pool_map.calc_descendants(id).len(),
ancestors_count: self.pool_map.calc_ancestors(id).len(),
score_sortkey: format!("{:?}", entry.inner.as_score_key()),
score_sortkey: entry.inner.as_score_key().to_string(),
};
Some(res)
} else {
Expand Down
4 changes: 2 additions & 2 deletions util/jsonrpc-types/src/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ pub enum RawTxPool {
pub struct PoolTxDetailInfo {
/// The time added into tx-pool
pub timestamp: Uint64,
/// The detailed status in tx-pool, `Pending`, `Gap`, `Proposed`
/// The detailed status in tx-pool, `pending`, `gap`, `proposed`
pub entry_status: String,
/// The rank in pending, starting from 0
pub rank_in_pending: Uint64,
/// The pending(`Pending` and `Gap`) count
/// The pending(`pending` and `gap`) count
pub pending_count: Uint64,
/// The proposed count
pub proposed_count: Uint64,
Expand Down
19 changes: 19 additions & 0 deletions util/metrics/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ make_static_metric! {
metadata,
},
}

// Struct for CKB tx-pool entry status statistics type label
struct CkbTxPoolEntryStatistics: IntGauge{
"type" => {
pending,
gap,
proposed,
},
}
}

pub struct Metrics {
Expand Down Expand Up @@ -64,6 +73,8 @@ pub struct Metrics {
pub ckb_sys_mem_process: CkbSysMemProcessStatistics,
// GaugeVec for CKB system memory jemalloc statistics
pub ckb_sys_mem_jemalloc: CkbSysMemJemallocStatistics,
// GaugeVec for CKB tx-pool tx entry status statistics
pub ckb_tx_pool_entry: CkbTxPoolEntryStatistics,
/// Histogram for CKB network connections
pub ckb_message_bytes: HistogramVec,
/// Gauge for CKB rocksdb statistics
Expand Down Expand Up @@ -127,6 +138,14 @@ static METRICS: once_cell::sync::Lazy<Metrics> = once_cell::sync::Lazy::new(|| M
)
.unwrap(),
),
ckb_tx_pool_entry: CkbTxPoolEntryStatistics::from(
&register_int_gauge_vec!(
"ckb_tx_pool_entry",
"CKB tx-pool entry status statistics",
&["type"]
)
.unwrap(),
),
ckb_message_bytes: register_histogram_vec!(
"ckb_message_bytes",
"The CKB message bytes",
Expand Down

0 comments on commit 010e2f3

Please sign in to comment.