Add subcription feature

This commit is contained in:
Urtzi Alfaro
2026-01-13 22:22:38 +01:00
parent b931a5c45e
commit 6ddf608d37
61 changed files with 7915 additions and 1238 deletions

View File

@@ -65,7 +65,7 @@ class AlertProcessorClient(BaseServiceClient):
result = await self.post(
f"tenants/{tenant_id}/alerts/acknowledge-by-metadata",
tenant_id=str(tenant_id),
json=payload
data=payload
)
if result and result.get("success"):
@@ -127,7 +127,7 @@ class AlertProcessorClient(BaseServiceClient):
result = await self.post(
f"tenants/{tenant_id}/alerts/resolve-by-metadata",
tenant_id=str(tenant_id),
json=payload
data=payload
)
if result and result.get("success"):