Hastic standalone https://hastic.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
1.4 KiB

use anyhow;
use hastic::services::metric_service::MetricService;
use hastic::services::segments_service::Segment;
use hastic::{config::Config, services::segments_service::SegmentType};
use subbeat::metric::{Metric, MetricResult};
struct AnalyticUnit {
metric_service: MetricService,
}
impl AnalyticUnit {
fn new(config: &Config) -> AnalyticUnit {
AnalyticUnit {
metric_service: MetricService::new(&config.prom_url, &config.query),
}
}
pub async fn get_detections(&self, from: u64, to: u64) -> anyhow::Result<Vec<Segment>> {
let prom = self.metric_service.get_prom();
let mr = prom.query(from, to, 10).await?;
let key = mr.data.keys().nth(0).unwrap();
let ts = &mr.data[key];
let mut result = Vec::<Segment>::new();
let mut from: Option<u64> = None;
for (t, v) in ts {
if *v > 100.0 {
if from.is_some() {
continue;
} else {
from = Some(*t);
}
} else {
if from.is_some() {
result.push(Segment {
id: None,
from: from.unwrap(),
to: *t,
segment_type: SegmentType::Detection,
});
from = None;
}
}
}
Ok(result)
}
}