|
|
@ -1,8 +1,8 @@ |
|
|
|
use async_trait::async_trait; |
|
|
|
use async_trait::async_trait; |
|
|
|
use hyper::StatusCode; |
|
|
|
use hyper::StatusCode; |
|
|
|
use serde_json::Value; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use crate::{ |
|
|
|
use crate::{ |
|
|
|
|
|
|
|
datasources::prometheus, |
|
|
|
metric::{Metric, MetricResult}, |
|
|
|
metric::{Metric, MetricResult}, |
|
|
|
types, |
|
|
|
types, |
|
|
|
}; |
|
|
|
}; |
|
|
@ -37,39 +37,6 @@ impl<'a> Prometheus<'a> { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
fn parse_result(value: Value) -> types::Result<MetricResult> { |
|
|
|
|
|
|
|
let metric = &value["data"]["result"][0]["metric"]; |
|
|
|
|
|
|
|
let metric_name = metric |
|
|
|
|
|
|
|
.as_object() |
|
|
|
|
|
|
|
.unwrap() |
|
|
|
|
|
|
|
.iter() |
|
|
|
|
|
|
|
.map(|(k, v)| format!("{}=\"{}\"", k, v.as_str().unwrap())) |
|
|
|
|
|
|
|
.collect::<Vec<String>>() |
|
|
|
|
|
|
|
.join(","); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let metric_name = format!("{{{}}}", metric_name); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let values = &value["data"]["result"][0]["values"] |
|
|
|
|
|
|
|
.as_array() |
|
|
|
|
|
|
|
.unwrap() |
|
|
|
|
|
|
|
.iter() |
|
|
|
|
|
|
|
.map(|e| { |
|
|
|
|
|
|
|
let r = e.as_array().unwrap(); |
|
|
|
|
|
|
|
return ( |
|
|
|
|
|
|
|
r[0].as_u64().unwrap(), |
|
|
|
|
|
|
|
r[1].as_str().unwrap().to_string().parse::<f64>().unwrap(), |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.collect::<Vec<(u64, f64)>>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let mut result: MetricResult = Default::default(); |
|
|
|
|
|
|
|
result.data.insert(metric_name, values.to_owned()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// println!("{:?}", result);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Ok(result); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[async_trait] |
|
|
|
#[async_trait] |
|
|
|
impl Metric for Prometheus<'_> { |
|
|
|
impl Metric for Prometheus<'_> { |
|
|
|
async fn query_chunk(&self, from: u64, to: u64, step: u64) -> types::Result<MetricResult> { |
|
|
|
async fn query_chunk(&self, from: u64, to: u64, step: u64) -> types::Result<MetricResult> { |
|
|
@ -88,18 +55,10 @@ impl Metric for Prometheus<'_> { |
|
|
|
let (status_code, value) = self.grafana_service.post_form(&self.url, &rq).await?; |
|
|
|
let (status_code, value) = self.grafana_service.post_form(&self.url, &rq).await?; |
|
|
|
|
|
|
|
|
|
|
|
if status_code != StatusCode::OK { |
|
|
|
if status_code != StatusCode::OK { |
|
|
|
// println!("Error: status code {:?}", status_code);
|
|
|
|
|
|
|
|
let error = &value["error"].as_str().unwrap(); |
|
|
|
let error = &value["error"].as_str().unwrap(); |
|
|
|
|
|
|
|
|
|
|
|
return Err(anyhow::anyhow!("Can`t query: {}", error)); |
|
|
|
return Err(anyhow::anyhow!("Can`t query: {}", error)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// println!("{:?}", value);
|
|
|
|
return prometheus::parse_result(value); |
|
|
|
|
|
|
|
|
|
|
|
// return Ok(Default::default());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// println!("{:?}", value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return parse_result(value); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|