File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,10 @@ build_metrics_service!(
66
66
"mithril_aggregator_artifact_cardano_transaction_total_produced_since_startup" ,
67
67
"Number of Cardano transaction artifacts produced since startup on a Mithril aggregator node"
68
68
) ,
69
+ artifact_cardano_database_total_produced_since_startup: MetricCounter (
70
+ "mithril_aggregator_artifact_cardano_database_total_produced_since_startup" ,
71
+ "Number of Cardano database artifacts produced since startup on a Mithril aggregator node"
72
+ ) ,
69
73
runtime_cycle_success_since_startup: MetricCounter (
70
74
"mithril_aggregator_runtime_cycle_success_since_startup" ,
71
75
"Number of successful runtime cycles since startup on a Mithril aggregator"
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ impl AggregatorRunner {
192
192
metrics. get_artifact_cardano_transaction_total_produced_since_startup ( )
193
193
}
194
194
SignedEntityType :: CardanoDatabase ( _) => {
195
- todo ! ( "To be implemented after the artifact builder is available" )
195
+ metrics . get_artifact_cardano_database_total_produced_since_startup ( )
196
196
}
197
197
} ;
198
198
You can’t perform that action at this time.
0 commit comments