refactor: merge checks into monitors (/monitors/:id/history), ingest moves to /internal/ingest

This commit is contained in:
M1
2026-03-16 13:43:55 +04:00
parent a22112dc77
commit b4f95fa375
5 changed files with 30 additions and 33 deletions
+1 -1
View File
@@ -168,7 +168,7 @@ async fn post_result(
result: CheckResult,
) -> Result<()> {
client
.post(format!("{coordinator_url}/checks/ingest"))
.post(format!("{coordinator_url}/internal/ingest"))
.header("x-monitor-token", token)
.json(&result)
.send()