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.

14 lines
297 B

use subbeat::datasources::prometheus::Prometheus;
pub struct MetricService {
prom: Prometheus,
}
impl MetricService {
pub fn new(url: &str, query: &str) -> MetricService {
MetricService {
prom: Prometheus::new(&url.to_string(), &query.to_string()),
}
}
}