|
|
|
@ -24,7 +24,21 @@ impl GrafanaService {
|
|
|
|
|
let client = Client::new(); |
|
|
|
|
let resp = client.request(req).await?; |
|
|
|
|
println!("Response: {}", resp.status()); |
|
|
|
|
Ok(()) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
pub async fn extract_metrics(&self) -> types::Result<()> { |
|
|
|
|
let req = Request::builder() |
|
|
|
|
.method(Method::POST) |
|
|
|
|
.uri(self.url.clone() + "/api/datasources/proxy/1/api/v1/query_range") |
|
|
|
|
.header("content-type", "application/json") |
|
|
|
|
.header("Authorization", format!("Bearer {}", self.api_key)) |
|
|
|
|
.body(Body::from(r#"{"query":"go_memstats_alloc_bytes_total", "start": "1634163645", "end": "1634163945", "step": "15"}"#)) |
|
|
|
|
.unwrap(); |
|
|
|
|
|
|
|
|
|
let client = Client::new(); |
|
|
|
|
let resp = client.request(req).await?; |
|
|
|
|
println!("Response: {}", resp.status()); |
|
|
|
|
Ok(()) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|