@@ -54,7 +54,7 @@ impl FarmerMetrics {
54
54
let sub_registry = registry. sub_registry_with_prefix ( "subspace_farmer" ) ;
55
55
56
56
let auditing_time = Family :: < _ , _ > :: new_with_constructor ( || {
57
- Histogram :: new ( exponential_buckets ( 0.0001 , 2.0 , 15 ) )
57
+ Histogram :: new ( exponential_buckets ( 0.0002 , 2.0 , 15 ) )
58
58
} ) ;
59
59
60
60
sub_registry. register_with_unit (
@@ -65,7 +65,7 @@ impl FarmerMetrics {
65
65
) ;
66
66
67
67
let proving_time = Family :: < _ , _ > :: new_with_constructor ( || {
68
- Histogram :: new ( exponential_buckets ( 0.0001 , 2.0 , 15 ) )
68
+ Histogram :: new ( exponential_buckets ( 0.0002 , 2.0 , 15 ) )
69
69
} ) ;
70
70
71
71
sub_registry. register_with_unit (
@@ -84,7 +84,7 @@ impl FarmerMetrics {
84
84
) ;
85
85
86
86
let sector_downloading_time = Family :: < _ , _ > :: new_with_constructor ( || {
87
- Histogram :: new ( exponential_buckets ( 0.0001 , 2.0 , 15 ) )
87
+ Histogram :: new ( exponential_buckets ( 0.1 , 2.0 , 15 ) )
88
88
} ) ;
89
89
90
90
sub_registry. register_with_unit (
@@ -95,7 +95,7 @@ impl FarmerMetrics {
95
95
) ;
96
96
97
97
let sector_encoding_time = Family :: < _ , _ > :: new_with_constructor ( || {
98
- Histogram :: new ( exponential_buckets ( 0.0001 , 2.0 , 15 ) )
98
+ Histogram :: new ( exponential_buckets ( 0.1 , 2.0 , 15 ) )
99
99
} ) ;
100
100
101
101
sub_registry. register_with_unit (
@@ -106,7 +106,7 @@ impl FarmerMetrics {
106
106
) ;
107
107
108
108
let sector_writing_time = Family :: < _ , _ > :: new_with_constructor ( || {
109
- Histogram :: new ( exponential_buckets ( 0.0001 , 2.0 , 15 ) )
109
+ Histogram :: new ( exponential_buckets ( 0.0002 , 2.0 , 15 ) )
110
110
} ) ;
111
111
112
112
sub_registry. register_with_unit (
@@ -117,7 +117,7 @@ impl FarmerMetrics {
117
117
) ;
118
118
119
119
let sector_plotting_time = Family :: < _ , _ > :: new_with_constructor ( || {
120
- Histogram :: new ( exponential_buckets ( 0.0001 , 2.0 , 15 ) )
120
+ Histogram :: new ( exponential_buckets ( 0.1 , 2.0 , 15 ) )
121
121
} ) ;
122
122
123
123
sub_registry. register_with_unit (
@@ -149,7 +149,7 @@ impl FarmerMetrics {
149
149
150
150
sub_registry. register_with_unit (
151
151
"sector_downloaded_counter" ,
152
- "Number of sectors being downloaded" ,
152
+ "Number of downloaded sectors " ,
153
153
Unit :: Other ( "sectors" . to_string ( ) ) ,
154
154
sector_downloaded. clone ( ) ,
155
155
) ;
@@ -158,7 +158,7 @@ impl FarmerMetrics {
158
158
159
159
sub_registry. register_with_unit (
160
160
"sector_encoding_counter" ,
161
- "Number of sectors being downloaded " ,
161
+ "Number of sectors being encoded " ,
162
162
Unit :: Other ( "sectors" . to_string ( ) ) ,
163
163
sector_encoding. clone ( ) ,
164
164
) ;
@@ -167,7 +167,7 @@ impl FarmerMetrics {
167
167
168
168
sub_registry. register_with_unit (
169
169
"sector_encoded_counter" ,
170
- "Number of sectors being downloaded " ,
170
+ "Number of encoded sectors " ,
171
171
Unit :: Other ( "sectors" . to_string ( ) ) ,
172
172
sector_encoded. clone ( ) ,
173
173
) ;
@@ -176,7 +176,7 @@ impl FarmerMetrics {
176
176
177
177
sub_registry. register_with_unit (
178
178
"sector_writing_counter" ,
179
- "Number of sectors being downloaded " ,
179
+ "Number of sectors being written " ,
180
180
Unit :: Other ( "sectors" . to_string ( ) ) ,
181
181
sector_writing. clone ( ) ,
182
182
) ;
@@ -185,7 +185,7 @@ impl FarmerMetrics {
185
185
186
186
sub_registry. register_with_unit (
187
187
"sector_written_counter" ,
188
- "Number of sectors being downloaded " ,
188
+ "Number of written sectors " ,
189
189
Unit :: Other ( "sectors" . to_string ( ) ) ,
190
190
sector_written. clone ( ) ,
191
191
) ;
@@ -194,7 +194,7 @@ impl FarmerMetrics {
194
194
195
195
sub_registry. register_with_unit (
196
196
"sector_plotting_counter" ,
197
- "Number of sectors being downloaded " ,
197
+ "Number of sectors being plotted " ,
198
198
Unit :: Other ( "sectors" . to_string ( ) ) ,
199
199
sector_plotting. clone ( ) ,
200
200
) ;
@@ -203,7 +203,7 @@ impl FarmerMetrics {
203
203
204
204
sub_registry. register_with_unit (
205
205
"sector_plotted_counter" ,
206
- "Number of sectors being downloaded " ,
206
+ "Number of plotted sectors " ,
207
207
Unit :: Other ( "sectors" . to_string ( ) ) ,
208
208
sector_plotted. clone ( ) ,
209
209
) ;
0 commit comments