WIP: working on implementation of monitoring alert score for HelmKubePrometheus
Some checks failed
Run Check Script / check (push) Failing after 44s
Run Check Script / check (pull_request) Failing after 43s

This commit is contained in:
2025-06-18 16:12:29 -04:00
parent 527b88ce3b
commit 3ad8cd60f8
2 changed files with 76 additions and 14 deletions

View File

@@ -1,11 +1,11 @@
use harmony::{
inventory::Inventory, maestro::Maestro,
modules::monitoring::alert_score::PrometheusAlertingScore, topology::K8sAnywhereTopology,
modules::monitoring::alert_score::HelmPrometheusAlertingScore, topology::K8sAnywhereTopology,
};
#[tokio::main]
async fn main() {
let alerting_score = PrometheusAlertingScore { receivers: vec![] };
let alerting_score = HelmPrometheusAlertingScore { receivers: vec![] };
let mut maestro = Maestro::<K8sAnywhereTopology>::initialize(
Inventory::autoload(),
K8sAnywhereTopology::from_env(),