1
- use crate :: db:: Database ;
1
+ use crate :: db:: { Database , QueryUtils } ;
2
2
use crate :: experiments:: { Assignee , Experiment } ;
3
3
use crate :: prelude:: * ;
4
4
use crate :: server:: agents:: Agent ;
5
+ use chrono:: { DateTime , Utc } ;
5
6
use prometheus:: proto:: { Metric , MetricFamily } ;
6
- use prometheus:: { IntCounterVec , IntGaugeVec , __register_counter_vec, __register_gauge_vec} ;
7
+ use prometheus:: {
8
+ IntCounterVec , IntGauge , IntGaugeVec , __register_counter_vec, __register_gauge,
9
+ __register_gauge_vec,
10
+ } ;
11
+
7
12
const JOBS_METRIC : & str = "crater_completed_jobs_total" ;
8
13
const AGENT_WORK_METRIC : & str = "crater_agent_supposed_to_work" ;
14
+ const LAST_CRATES_UPDATE_METRIC : & str = "crater_last_crates_update" ;
9
15
10
16
#[ derive( Clone ) ]
11
17
pub struct Metrics {
12
18
crater_completed_jobs_total : IntCounterVec ,
13
19
crater_work_status : IntGaugeVec ,
20
+ crater_last_crates_update : IntGauge ,
14
21
}
15
22
16
23
impl Metrics {
@@ -20,10 +27,14 @@ impl Metrics {
20
27
prometheus:: register_int_counter_vec!( jobs_opts, & [ "agent" , "experiment" ] ) ?;
21
28
let agent_opts = prometheus:: opts!( AGENT_WORK_METRIC , "is agent supposed to work" ) ;
22
29
let crater_work_status = prometheus:: register_int_gauge_vec!( agent_opts, & [ "agent" ] ) ?;
30
+ let crates_update_opts =
31
+ prometheus:: opts!( LAST_CRATES_UPDATE_METRIC , "last update of crates lists" ) ;
32
+ let crater_last_crates_update = prometheus:: register_int_gauge!( crates_update_opts) ?;
23
33
24
34
Ok ( Metrics {
25
35
crater_completed_jobs_total,
26
36
crater_work_status,
37
+ crater_last_crates_update,
27
38
} )
28
39
}
29
40
@@ -79,20 +90,36 @@ impl Metrics {
79
90
Ok ( ( ) )
80
91
}
81
92
93
+ pub fn update_crates_lists ( & self , db : & Database ) -> Fallible < ( ) > {
94
+ //&[] as &[u32] is just a hint to make the compiler happy
95
+ let datetime: Option < DateTime < Utc > > =
96
+ db. get_row ( "SELECT MAX(loaded_at) FROM crates;" , & [ ] as & [ u32 ] , |r| {
97
+ r. get ( 0 )
98
+ } ) ?;
99
+
100
+ if let Some ( datetime) = datetime {
101
+ self . crater_last_crates_update . set ( datetime. timestamp ( ) ) ;
102
+ Ok ( ( ) )
103
+ } else {
104
+ bail ! ( "no crates loaded" ) ;
105
+ }
106
+ }
107
+
82
108
pub fn on_complete_experiment ( & self , experiment : & str ) -> Fallible < ( ) > {
83
109
self . remove_experiment_jobs ( experiment)
84
110
}
85
111
}
86
112
87
113
#[ cfg( test) ]
88
114
mod tests {
89
- use super :: { Metrics , AGENT_WORK_METRIC , JOBS_METRIC } ;
115
+ use super :: { Metrics , AGENT_WORK_METRIC , JOBS_METRIC , LAST_CRATES_UPDATE_METRIC } ;
90
116
use crate :: actions:: { Action , ActionsCtx , CreateExperiment , EditExperiment } ;
91
117
use crate :: config:: Config ;
92
118
use crate :: db:: Database ;
93
119
use crate :: experiments:: { Assignee , Experiment } ;
94
120
use crate :: server:: agents:: { Agent , Agents } ;
95
121
use crate :: server:: tokens:: Tokens ;
122
+ use chrono:: Utc ;
96
123
use lazy_static:: lazy_static;
97
124
use prometheus:: proto:: MetricFamily ;
98
125
@@ -202,4 +229,20 @@ mod tests {
202
229
assert ! ( supposed_to_work( & status, Some ( agent1) ) ) ;
203
230
assert ! ( !supposed_to_work( & status, Some ( agent2) ) ) ;
204
231
}
232
+
233
+ #[ test]
234
+ fn test_crates_list_update ( ) {
235
+ let db = Database :: temp ( ) . unwrap ( ) ;
236
+ let config = Config :: default ( ) ;
237
+
238
+ let now = Utc :: now ( ) ;
239
+ crate :: crates:: lists:: setup_test_lists ( & db, & config) . unwrap ( ) ;
240
+ METRICS . update_crates_lists ( & db) . unwrap ( ) ;
241
+ let last_update = Metrics :: get_metric_by_name ( LAST_CRATES_UPDATE_METRIC )
242
+ . unwrap ( )
243
+ . get_metric ( ) [ 0 ]
244
+ . get_gauge ( )
245
+ . get_value ( ) as i64 ;
246
+ assert ! ( last_update >= now. timestamp( ) ) ;
247
+ }
205
248
}
0 commit comments