global: snapshot

This commit is contained in:
nym21
2026-03-18 13:14:43 +01:00
parent 455dc683eb
commit 24f344c0b1
7 changed files with 94 additions and 81 deletions

View File

@@ -779,27 +779,30 @@ export function createNetworkSection() {
},
{
name: "Activity Rate",
title: "Activity Rate",
bottom: [
dots({
series: transactions.volume.txPerSec,
name: "TX/sec",
color: colors.entity.tx,
unit: Unit.perSec,
}),
dots({
series: transactions.volume.inputsPerSec,
name: "Inputs/sec",
color: colors.entity.input,
unit: Unit.perSec,
}),
dots({
series: transactions.volume.outputsPerSec,
name: "Outputs/sec",
color: colors.entity.output,
unit: Unit.perSec,
}),
],
tree: ROLLING_WINDOWS.map((w) => ({
name: w.name,
title: `Activity Rate (${w.name})`,
bottom: [
line({
series: transactions.volume.txPerSec[w.key],
name: "TX/sec",
color: colors.entity.tx,
unit: Unit.perSec,
}),
line({
series: transactions.volume.inputsPerSec[w.key],
name: "Inputs/sec",
color: colors.entity.input,
unit: Unit.perSec,
}),
line({
series: transactions.volume.outputsPerSec[w.key],
name: "Outputs/sec",
color: colors.entity.output,
unit: Unit.perSec,
}),
],
})),
},
// Addresses