File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ export interface Statistics {
44 totalTasks : number ;
55 totalDeployed : number ;
66}
7+ export interface TimingStatistics {
8+ latest_time_taken_secs : number ;
9+ latest_timestamp : string ;
10+ }
711export interface NodeStatistics {
812 address : string ;
913 statistics : {
@@ -12,8 +16,8 @@ export interface NodeStatistics {
1216 total_tasks : number ;
1317 timed_out_count : number ;
1418 last_timed_out : string ;
15- last_successful_proof_task_time : string ;
16- last_successful_proof_processing_time : number ;
19+ setup_timing_stats ?: TimingStatistics ;
20+ proof_timing_stats ?: TimingStatistics ;
1721 } ;
1822}
1923export interface NodeStatisticsQueryParams {
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ export interface Statistics {
44 totalTasks : number ;
55 totalDeployed : number ;
66}
7+ export interface TimingStatistics {
8+ latest_time_taken_secs : number ;
9+ latest_timestamp : string ;
10+ }
711export interface NodeStatistics {
812 address : string ;
913 statistics : {
@@ -12,8 +16,8 @@ export interface NodeStatistics {
1216 total_tasks : number ;
1317 timed_out_count : number ;
1418 last_timed_out : string ;
15- last_successful_proof_task_time : string ;
16- last_successful_proof_processing_time : number ;
19+ setup_timing_stats ?: TimingStatistics ;
20+ proof_timing_stats ?: TimingStatistics ;
1721 } ;
1822}
1923export interface NodeStatisticsQueryParams {
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ export interface Statistics {
55 totalDeployed : number ;
66}
77
8+ export interface TimingStatistics {
9+ latest_time_taken_secs : number ;
10+ latest_timestamp : string ;
11+ }
12+
813export interface NodeStatistics {
914 address : string ;
1015 statistics : {
@@ -13,8 +18,8 @@ export interface NodeStatistics {
1318 total_tasks : number ;
1419 timed_out_count : number ;
1520 last_timed_out : string ;
16- last_successful_proof_task_time : string ;
17- last_successful_proof_processing_time : number ;
21+ setup_timing_stats ?: TimingStatistics ;
22+ proof_timing_stats ?: TimingStatistics ;
1823 } ;
1924}
2025
You can’t perform that action at this time.
0 commit comments